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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7332efd1fc6ad3b5e8a6df7b997f45dadbbaa00f | 2,765,959,005,329 | 8f805d9ac6829c1948b10a2b07174522aadd95b0 | /Implementation/src/groove/grammar/host/DefaultHostEdge.java | 6ec070242501db1141bc94fae40f9ffa38680f8c | [] | no_license | utwente-fmt/GROOVE-Unfolding | https://github.com/utwente-fmt/GROOVE-Unfolding | 13576adea4aea6e2929931badfcb1a147164e361 | ed67a3d0804e72dc7e99e14919cd3c7ee3652dbf | refs/heads/master | 2021-01-10T02:04:14.059000 | 2016-03-23T09:16:07 | 2016-03-23T09:16:07 | 54,131,212 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* GROOVE: GRaphs for Object Oriented VErification
* Copyright 2003--2007 University of Twente
*
* 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... | UTF-8 | Java | 3,890 | java | DefaultHostEdge.java | Java | [
{
"context": "t implements the edges of a host graph.\n * @author Arend Rensink\n */\npublic class DefaultHostEdge extends AEdge<Ho",
"end": 1142,
"score": 0.9998367428779602,
"start": 1129,
"tag": "NAME",
"value": "Arend Rensink"
}
] | null | [] | /* GROOVE: GRaphs for Object Oriented VErification
* Copyright 2003--2007 University of Twente
*
* 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... | 3,883 | 0.629306 | 0.621594 | 135 | 27.814816 | 24.514603 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.488889 | false | false | 0 |
b4505d50f69c7ef0b7c72d5562ac46d2dc885239 | 515,396,100,377 | b9ecfcf637258148ade5c3edad5cccf2c88b658c | /InsertionSort.java | ac42b658d08b91ebbb3c2ca2e76a3b626a2cdb06 | [] | no_license | USF-CS245-09-2018/practice-assignment-04-tjwong | https://github.com/USF-CS245-09-2018/practice-assignment-04-tjwong | d47c1a4d93cb20c025f239217a13dd4957671019 | 0969a8a62d9f1c42734e4274a7c7c8858494f108 | refs/heads/master | 2020-03-29T11:13:41.134000 | 2018-09-22T06:47:08 | 2018-09-22T06:47:08 | 149,842,293 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class InsertionSort implements SortingAlgorithm{
private double[] arr = new double[];
void insertionSort(double[] arr){
for(int i = 1; i < arr.length - 1; i++){
double temp = arr[i];
int k = i - 1;
while( k > 0 && arr[k] > temp){
arr[k+1] = ar... | UTF-8 | Java | 463 | java | InsertionSort.java | Java | [] | null | [] | public class InsertionSort implements SortingAlgorithm{
private double[] arr = new double[];
void insertionSort(double[] arr){
for(int i = 1; i < arr.length - 1; i++){
double temp = arr[i];
int k = i - 1;
while( k > 0 && arr[k] > temp){
arr[k+1] = ar... | 463 | 0.434125 | 0.421166 | 22 | 20.045454 | 17.636423 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 0 |
a43d0a76a3b4b448ef51d89d35cd7fdd02c2558d | 2,585,570,324,315 | 6937ac27acf499be90a70a84fb20d3948ea2265d | /src/main/java/net/citrite/pip/sfdc/Request.java | 01273f560489026f30a5f70ea947fb75f7124589 | [] | no_license | mauriziocarioli/Policy-POC | https://github.com/mauriziocarioli/Policy-POC | bb010b966a3f4a7bf3d7fa735d3181b4ff99b8a2 | a708e560ffb4df8a99b022c21df30db010ca26bf | refs/heads/master | 2020-05-09T10:20:22.930000 | 2019-04-14T00:35:51 | 2019-04-14T00:35:51 | 181,037,909 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.citrite.pip.sfdc;
import java.io.Serializable;
import java.util.List;
import net.citrite.pip.salesforce.Specialization;
import net.citrite.pip.salesforce.AuthorizationItem;
public class Request implements Serializable {
private static final long serialVersionUID = -1524280697031891812L;
@org.kie.api.... | UTF-8 | Java | 3,604 | java | Request.java | Java | [] | null | [] | package net.citrite.pip.sfdc;
import java.io.Serializable;
import java.util.List;
import net.citrite.pip.salesforce.Specialization;
import net.citrite.pip.salesforce.AuthorizationItem;
public class Request implements Serializable {
private static final long serialVersionUID = -1524280697031891812L;
@org.kie.api.... | 3,604 | 0.795228 | 0.789956 | 118 | 29.542374 | 34.616703 | 298 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.38983 | false | false | 0 |
2e4674c399b9b4db7dcf27fd7debbdb602d3a8b1 | 2,585,570,322,117 | 6775678d017086bb5a5b23108e645264e743f8a5 | /src/main/java/com/linux/oauth2/configuration/RestTemplateConfig.java | d6c889cb05fecc2b7f7d7c9b6bbeec9f1eea8a3e | [] | no_license | huhx/oauth2-in-action | https://github.com/huhx/oauth2-in-action | 3f6084abf2876510368a7ae8d23825a23fb87bff | a23957e409ab1ea2859629de0564a0848c964377 | refs/heads/master | 2021-04-07T18:42:17.264000 | 2020-03-20T07:54:24 | 2020-03-20T07:54:24 | 248,698,204 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.linux.oauth2.configuration;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework... | UTF-8 | Java | 1,125 | java | RestTemplateConfig.java | Java | [] | null | [] | package com.linux.oauth2.configuration;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework... | 1,125 | 0.84 | 0.832 | 29 | 37.793102 | 33.634319 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.37931 | false | false | 0 |
02800b9e00fc1a4f5dcd9502607ef9934b8cc4ed | 14,516,989,505,218 | c4f4d65cc67124486aa479d39088768ea7267c46 | /src/it/coduric/dama/campo/Casella.java | 25e835a8cb49fe1b352cc1cd786995fef954cb16 | [] | no_license | coduri/JDama | https://github.com/coduri/JDama | 8020fc301ffd870d39ad5b8cd930048e19ca9282 | 9723d08a4b99ca94b2113ca7f5b2caac3e28fb6e | refs/heads/main | 2023-02-25T13:42:59.048000 | 2021-02-04T17:14:53 | 2021-02-04T17:14:53 | 335,787,436 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package it.coduric.dama.campo;
import it.coduric.dama.model.pezzi.Pezzo;
/**
* Questa classe rappresenta una casella del campo di gioco, la casella è all'interno di una matrice e ha una sua
* riga e colonna di appartenenza e può contenere o non contenere un pezzo. (Se non lo contiene p = null)
*/
public class Case... | UTF-8 | Java | 1,013 | java | Casella.java | Java | [] | null | [] | package it.coduric.dama.campo;
import it.coduric.dama.model.pezzi.Pezzo;
/**
* Questa classe rappresenta una casella del campo di gioco, la casella è all'interno di una matrice e ha una sua
* riga e colonna di appartenenza e può contenere o non contenere un pezzo. (Se non lo contiene p = null)
*/
public class Case... | 1,013 | 0.630327 | 0.630327 | 43 | 22.465117 | 27.266428 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.348837 | false | false | 0 |
364880f61537d04f974d63adcd18631691b3cfa5 | 15,290,083,615,097 | cb484fd3f9767ff48af849cc8fa1511e787fe16c | /src/main/java/com/ternnetwork/baseframework/dao/impl/security/RescRoleDaoImpl.java | d2c38144b11cfd004608240cd5baf10fc7065215 | [] | no_license | cnywb/ocms | https://github.com/cnywb/ocms | ee84439390d7f5c2d6d83e09fc81ab6d48e0ca6a | 31f65b0b1b14f2b709007705313cec259bf6b823 | refs/heads/master | 2020-04-08T02:26:24.952000 | 2018-11-24T13:20:48 | 2018-11-24T13:20:48 | 158,935,851 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ternnetwork.baseframework.dao.impl.security;
import org.springframework.stereotype.Repository;
import com.ternnetwork.baseframework.dao.impl.base.IBaseDaoImpl;
import com.ternnetwork.baseframework.dao.security.RescRoleDao;
import com.ternnetwork.baseframework.model.security.RescRole;
@Reposit... | UTF-8 | Java | 434 | java | RescRoleDaoImpl.java | Java | [] | null | [] | package com.ternnetwork.baseframework.dao.impl.security;
import org.springframework.stereotype.Repository;
import com.ternnetwork.baseframework.dao.impl.base.IBaseDaoImpl;
import com.ternnetwork.baseframework.dao.security.RescRoleDao;
import com.ternnetwork.baseframework.model.security.RescRole;
@Reposit... | 434 | 0.813364 | 0.813364 | 15 | 26.933332 | 28.424089 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.466667 | false | false | 0 |
af1ee8a8fc9a0f5b5ecf56cbfe41a1f9ae7b0ef0 | 9,345,848,872,434 | d3a4fe06f36fd0cab86560b025a1b48f1fe71e80 | /src/iddfs/Node.java | 8c6b32df6b58d65cb6285a0d72a1ec7b042c3e0b | [] | no_license | jhonieldor/graph_algorithms | https://github.com/jhonieldor/graph_algorithms | 6832a8eedf39914f5f66d93b90bdc0d33572f7aa | 44d223dccae8b02a9d79fa42b5b8493d1061539f | refs/heads/master | 2020-12-31T00:02:20.804000 | 2017-02-01T02:12:02 | 2017-02-01T02:12:02 | 80,570,307 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package iddfs;
import java.util.ArrayList;
import java.util.List;
/**
* Created by jhoni on 31/01/2017.
*/
public class Node {
private String name;
private Integer depthLevel = 0;
private List<Node> adjanciesList;
public Node(String name) {
this.name = name;
this.adjanciesList = ne... | UTF-8 | Java | 1,060 | java | Node.java | Java | [
{
"context": "rayList;\nimport java.util.List;\n\n/**\n * Created by jhoni on 31/01/2017.\n */\npublic class Node {\n\n priva",
"end": 91,
"score": 0.99930739402771,
"start": 86,
"tag": "USERNAME",
"value": "jhoni"
}
] | null | [] | package iddfs;
import java.util.ArrayList;
import java.util.List;
/**
* Created by jhoni on 31/01/2017.
*/
public class Node {
private String name;
private Integer depthLevel = 0;
private List<Node> adjanciesList;
public Node(String name) {
this.name = name;
this.adjanciesList = ne... | 1,060 | 0.587736 | 0.579245 | 54 | 18.629629 | 16.80641 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.296296 | false | false | 0 |
8b35f290f3dc1de83c995d5b03ecefb8b5d8111a | 18,451,179,514,521 | 1c476d7316441ac7287f783f52450d211aa61d48 | /src/intro_to_file_io/Question4.java | 751db3bd4aebf138e7ef6f233c6c1e5c7e018ca8 | [] | no_license | NY-Giants/L3_Module_2 | https://github.com/NY-Giants/L3_Module_2 | 0cba7e8bd7fee8c362d1ad46c60e9e26a7ea05ab | 0219c29a9f26ce4a053b82fba8f3299fdf1d051f | refs/heads/master | 2021-05-06T19:25:57.807000 | 2018-01-04T03:42:26 | 2018-01-04T03:42:26 | 112,129,510 | 0 | 0 | null | true | 2017-11-27T00:50:41 | 2017-11-27T00:50:40 | 2017-08-28T17:42:12 | 2017-08-30T19:28:47 | 5 | 0 | 0 | 0 | null | false | null | package intro_to_file_io;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import javax.swing.JButton;
import javax... | UTF-8 | Java | 2,338 | java | Question4.java | Java | [] | null | [] | package intro_to_file_io;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import javax.swing.JButton;
import javax... | 2,338 | 0.676647 | 0.659966 | 96 | 23.354166 | 18.743876 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.239583 | false | false | 0 |
ffe07e2aedc3ca22157e592c44fd05f54a31a37a | 5,755,256,183,225 | 19eb5d33055be826c0a493f0a3e513927a272b31 | /phone-order/src/main/java/es/masmovil/phoneorder/repository/OrderRepository.java | 7f25819138577f7c92b8486ffafc55df68eb94d5 | [] | no_license | InCornito/phone-app | https://github.com/InCornito/phone-app | dbbc13686fb261b4ee9523cb986754c1c5f9ce0f | 88dd54b3340c87fc009a0e53053b37391c95a4ef | refs/heads/master | 2020-04-01T18:29:06.093000 | 2018-10-17T18:44:19 | 2018-10-17T18:44:19 | 153,495,242 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package es.masmovil.phoneorder.repository;
import es.masmovil.phoneorder.entity.Order;
import org.springframework.data.mongodb.repository.ReactiveMongoRepository;
public interface OrderRepository extends ReactiveMongoRepository<Order, String> {
}
| UTF-8 | Java | 251 | java | OrderRepository.java | Java | [] | null | [] | package es.masmovil.phoneorder.repository;
import es.masmovil.phoneorder.entity.Order;
import org.springframework.data.mongodb.repository.ReactiveMongoRepository;
public interface OrderRepository extends ReactiveMongoRepository<Order, String> {
}
| 251 | 0.848606 | 0.848606 | 9 | 26.888889 | 32.133209 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 0 |
d7a308149712a31e4f4bdc096a92f7144dbbd3ee | 17,033,840,338,976 | e19588bde506681ce5b33d452a1fb4a50a418838 | /eshop/src/main/java/online/shixun/demo/eshop/dto/EshopUserCriteria.java | 69b3078765bb80b643c2336a3a444d856579710d | [] | no_license | yuanyixiong/SpringBoot | https://github.com/yuanyixiong/SpringBoot | 6b3cfc133804dc7e825a70e4bc66d6fc8e622881 | aebedba43bde57d6f4d34e53e845f849f1aeee0c | refs/heads/master | 2020-03-21T04:51:38.419000 | 2018-06-21T06:50:39 | 2018-06-21T06:50:59 | 138,130,982 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package online.shixun.demo.eshop.dto;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
public class EshopUserCriteria {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table eshop_user
*
* @mbg.ge... | UTF-8 | Java | 38,436 | java | EshopUserCriteria.java | Java | [] | null | [] | package online.shixun.demo.eshop.dto;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
public class EshopUserCriteria {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table eshop_user
*
* @mbg.ge... | 38,436 | 0.595666 | 0.58747 | 1,130 | 33.015045 | 27.586946 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.675221 | false | false | 0 |
622f3d68e05e5d13778a533fc23c0a445746253e | 8,641,474,211,735 | dfe6063c215cccac964653601bd02a7dfdca2820 | /src/main/java/com/costan/webshop/business/domain/model/ShoppingCart.java | 8e42b230fdbe8fa465044401dd9ac09cdde61708 | [] | no_license | srcostan/webshop | https://github.com/srcostan/webshop | 17413bf7728ab4cfed386acbea1125b74597340b | f05223cfd5ea95d0d6d60730b072d4854db9f9e3 | refs/heads/master | 2022-11-30T05:31:49.857000 | 2020-08-17T23:25:15 | 2020-08-17T23:25:15 | 280,845,996 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.costan.webshop.business.domain.model;
import java.util.List;
public class ShoppingCart {
private List<Product> products;
public ShoppingCart(List<Product> products) {
this.products = products;
}
public Double getTotalPrice() {
return products.stream().mapToDouble(p -> p.... | UTF-8 | Java | 420 | java | ShoppingCart.java | Java | [] | null | [] | package com.costan.webshop.business.domain.model;
import java.util.List;
public class ShoppingCart {
private List<Product> products;
public ShoppingCart(List<Product> products) {
this.products = products;
}
public Double getTotalPrice() {
return products.stream().mapToDouble(p -> p.... | 420 | 0.659524 | 0.659524 | 20 | 20 | 20.863844 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 0 |
89d4187158e29889055d91c37932bef05a65f56a | 7,258,494,778,005 | 2bab4bb4f5007ddfb9d669eba8010af603f0db05 | /martin.bach.zapproject/src/battle/ai/AdvancedSingleProtocol.java | 46b5f9886efff444d50632ed3508baed8bc7c90e | [] | no_license | DeltaTecs/Zapper | https://github.com/DeltaTecs/Zapper | 41dd977a496762e4b79b92a59723674b9028397f | 11ed3858cf69b3121e3bbd8f4453b6c03f1fb7f6 | refs/heads/master | 2021-01-19T20:12:27.071000 | 2018-07-09T15:01:52 | 2018-07-09T15:01:52 | 88,423,413 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package battle.ai;
import java.awt.Point;
import java.awt.Rectangle;
import java.util.ArrayList;
import battle.CombatObject;
import battle.enemy.Enemy;
import battle.looting.Storage;
import battle.projectile.Projectile;
import collision.Collideable;
import collision.Grid;
import corecase.MainZap;
import ... | ISO-8859-1 | Java | 17,489 | java | AdvancedSingleProtocol.java | Java | [
{
"context": "(e);\r\n\t\t}\r\n\r\n\t\tif (!getHost().isFriend()) // Falls Gengner, Spieler auch lockbar\r\n\t\t\tpossibleLocks.add(Ma",
"end": 10208,
"score": 0.7808140516281128,
"start": 10204,
"tag": "NAME",
"value": "Geng"
}
] | null | [] | package battle.ai;
import java.awt.Point;
import java.awt.Rectangle;
import java.util.ArrayList;
import battle.CombatObject;
import battle.enemy.Enemy;
import battle.looting.Storage;
import battle.projectile.Projectile;
import collision.Collideable;
import collision.Grid;
import corecase.MainZap;
import ... | 17,489 | 0.672523 | 0.667086 | 606 | 26.833334 | 25.915773 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.308581 | false | false | 0 |
211184f902c1bbce8b6d75e2721d27da282df94b | 15,195,594,304,444 | 5e3235edf3de262f4d10b9e9e1fcc3bd13d6b8b1 | /Code Snippet Repository/Spring/Spring3140.java | 1f7960a4dd6e73e13e627ed348aa614f1eeebb18 | [] | no_license | saber13812002/DeepCRM | https://github.com/saber13812002/DeepCRM | 3336a244d4852a364800af3181e03e868cf6f9f5 | be3e5e50e34a042d5ba7259ff5ff75c08ab32bb9 | refs/heads/master | 2023-03-16T00:08:06.473000 | 2018-04-18T05:29:50 | 2018-04-18T05:29:50 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | @Test
public void getBeanByTypeAmbiguityRaisesException() {
ApplicationContext context = new AnnotationConfigApplicationContext(TwoTestBeanConfig.class);
try {
context.getBean(TestBean.class);
}
catch (NoSuchBeanDefinitionException ex) {
assertThat(ex.getMessage(),
allOf(
containsString("No ... | UTF-8 | Java | 460 | java | Spring3140.java | Java | [] | null | [] | @Test
public void getBeanByTypeAmbiguityRaisesException() {
ApplicationContext context = new AnnotationConfigApplicationContext(TwoTestBeanConfig.class);
try {
context.getBean(TestBean.class);
}
catch (NoSuchBeanDefinitionException ex) {
assertThat(ex.getMessage(),
allOf(
containsString("No ... | 460 | 0.691304 | 0.686957 | 17 | 26 | 28.396355 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.294118 | false | false | 0 |
17e3bf5b7bb20000d610e9a26c96b064cf0469ed | 1,537,598,327,668 | abb25245e3d743a28c2e7221cbe5ce2a68150123 | /ecommerce-sdk/src/main/java/com/ecommerce/sdk/request/RegisterBuyerRequestDTO.java | 1af971a4b2446853638ba6dea64f67ae7446edb6 | [
"Apache-2.0"
] | permissive | atiountchik/ecommerce-microservices | https://github.com/atiountchik/ecommerce-microservices | 9e072231ca27bae494a8cc4ff6e6b83934b7fae1 | 4397e2f889a3d810ddd77f10e6140c924f37c048 | refs/heads/main | 2023-08-30T21:32:18.915000 | 2021-10-19T14:21:54 | 2021-10-19T14:21:54 | 415,716,697 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ecommerce.sdk.request;
import com.ecommerce.sdk.enums.CountryEnum;
import javax.validation.constraints.*;
import java.util.Objects;
public class RegisterBuyerRequestDTO {
@Email
private String email;
@NotBlank
private String password;
private CountryEnum country;
@NotBlank
@S... | UTF-8 | Java | 2,425 | java | RegisterBuyerRequestDTO.java | Java | [
{
"context": " this.email = email;\n this.password = password;\n this.country = country;\n this.nam",
"end": 745,
"score": 0.9978368282318115,
"start": 737,
"tag": "PASSWORD",
"value": "password"
},
{
"context": "assword(String password) {\n this.pas... | null | [] | package com.ecommerce.sdk.request;
import com.ecommerce.sdk.enums.CountryEnum;
import javax.validation.constraints.*;
import java.util.Objects;
public class RegisterBuyerRequestDTO {
@Email
private String email;
@NotBlank
private String password;
private CountryEnum country;
@NotBlank
@S... | 2,431 | 0.634639 | 0.627629 | 101 | 23.009901 | 30.195566 | 242 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.49505 | false | false | 0 |
c4ae7f9549f0a307bf7871fa1aaffcab1b042448 | 17,506,286,714,080 | 3977f587bd268f2fb898b444b72d105cede44bcc | /java/updateStudentPassword.java | 99ca40ec358ddf73182480994c69beb76abc3cc3 | [] | no_license | grpranto/Aider---Web-Application | https://github.com/grpranto/Aider---Web-Application | c3fe6b7232ee3ce726d7a4a039e6cec57f79dce9 | ad287b8ba0f5b878d3cf5aafc075485a7c339cf5 | refs/heads/master | 2020-05-17T16:42:50.107000 | 2019-04-27T22:47:16 | 2019-04-27T22:47:16 | 183,828,127 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import javax.servlet.ServletException;
import javax.servlet.annotation.MultipartConfig;
import javax.servl... | UTF-8 | Java | 2,567 | java | updateStudentPassword.java | Java | [] | null | [] | import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import javax.servlet.ServletException;
import javax.servlet.annotation.MultipartConfig;
import javax.servl... | 2,567 | 0.562914 | 0.559408 | 82 | 29.304878 | 24.766071 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.707317 | false | false | 0 |
354166ad7bc779b0e30371b608f7cd0eaf41db83 | 24,988,119,745,515 | ea4771fcc198a5c003ca69833f6c63563716b033 | /src/main/java/org/dimitrovchi/maptest/stat/StatObject.java | 9ff7cfbb347a39b7679a557a7540a9b81157d9d4 | [] | no_license | dimitrovchi/maptest | https://github.com/dimitrovchi/maptest | 067e3e99d0a14d5e71a4b4c7b97d28788ae64482 | d32986c056f5f760ef95ac41513568df60de320e | refs/heads/master | 2021-05-16T02:08:30.238000 | 2017-06-30T06:53:13 | 2017-06-30T06:53:13 | 7,974,890 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.dimitrovchi.maptest.stat;
/**
* @author Dmitry Ovchinnikov
*/
public class StatObject {
private final int id;
public StatObject(int id) {
this.id = id;
}
@Override
public int hashCode() {
return id;
}
@Override
public boolean equals(Object obj) {
... | UTF-8 | Java | 428 | java | StatObject.java | Java | [
{
"context": "kage org.dimitrovchi.maptest.stat;\n\n/**\n * @author Dmitry Ovchinnikov\n */\npublic class StatObject {\n\n private final ",
"end": 72,
"score": 0.9995465874671936,
"start": 54,
"tag": "NAME",
"value": "Dmitry Ovchinnikov"
}
] | null | [] | package org.dimitrovchi.maptest.stat;
/**
* @author <NAME>
*/
public class StatObject {
private final int id;
public StatObject(int id) {
this.id = id;
}
@Override
public int hashCode() {
return id;
}
@Override
public boolean equals(Object obj) {
return obj... | 416 | 0.577103 | 0.577103 | 23 | 17.608696 | 22.613461 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.304348 | false | false | 0 |
1ad85626809db3dfcbc0a24b1fefe49948812b54 | 33,921,651,708,208 | 012dbc987629ca4a378d4526b792aa2d79168120 | /src/main/java/com/invigorate/pages/AddNewPayer.java | 63cbf5715e7910cb8c8bb95b4ba87f2e9b38a03c | [] | no_license | piyoosha02/Alveo-Automation | https://github.com/piyoosha02/Alveo-Automation | 2e6fceea43c20a205637b57dcce9eb1656a75c5e | 94b2dc900adeb3571771fdaf83c9fab73ae04502 | refs/heads/master | 2020-03-09T16:11:54.369000 | 2018-04-10T06:10:27 | 2018-04-10T06:10:27 | 128,878,398 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.invigorate.pages;
public class AddNewPayer {
}
| UTF-8 | Java | 61 | java | AddNewPayer.java | Java | [] | null | [] | package com.invigorate.pages;
public class AddNewPayer {
}
| 61 | 0.770492 | 0.770492 | 5 | 11.2 | 13.347659 | 29 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 0 |
6363a96acc9decf7d019869a37d115856a4c8dcf | 31,619,549,253,873 | 1ecc142ffa2342404efe85a8e6df48d22bc87151 | /src/main/java/com/egen/orderservice/dto/OrderRequest.java | 1f689ff324a6e5d84850738f7371d591f80a3503 | [] | no_license | darshanvyadav/orderservice | https://github.com/darshanvyadav/orderservice | 71ac0e9a40143cadf0e540340826f689f399c8c4 | 3736300c5fa6a57f97ae93abae55852b7eef9dfb | refs/heads/main | 2023-01-10T13:09:54.556000 | 2020-11-10T19:16:21 | 2020-11-10T19:16:21 | 309,792,280 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.egen.orderservice.dto;
import java.io.Serializable;
import java.util.List;
import java.util.Set;
import java.util.UUID;
import javax.validation.constraints.NotNull;
import com.egen.orderservice.model.OrderBillingAddress;
import com.egen.orderservice.model.OrderItemDetails;
import com.egen.orderservice.mo... | UTF-8 | Java | 1,789 | java | OrderRequest.java | Java | [] | null | [] | package com.egen.orderservice.dto;
import java.io.Serializable;
import java.util.List;
import java.util.Set;
import java.util.UUID;
import javax.validation.constraints.NotNull;
import com.egen.orderservice.model.OrderBillingAddress;
import com.egen.orderservice.model.OrderItemDetails;
import com.egen.orderservice.mo... | 1,789 | 0.806037 | 0.805478 | 65 | 26.538462 | 21.332588 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.984615 | false | false | 0 |
3525ff8a9633cc913aedab72cb1820a797fa6775 | 34,668,976,014,960 | b85b65df086ed15889e769ea39517857fd92258a | /yhb-dao/src/main/java/com/lrcf/yhb/dao/mapper/ExperienceSendDao.java | cceef9b480cc851ee4b74fd4de6633208d118dfa | [] | no_license | moutainhigh/lrcf | https://github.com/moutainhigh/lrcf | 4100e1e823ccd8faa2726725fca7fac4d88fd4ec | 4c5cde3d4c2b02afb6bfb00cab5078533e54089b | refs/heads/master | 2021-01-02T03:05:39.153000 | 2017-09-14T08:38:14 | 2017-09-14T08:38:14 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lrcf.yhb.dao.mapper;
import com.lrcf.yhb.pojo.ExperienceSend;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
public interface ExperienceSendDao {
int deleteByPrimaryKey(Integer experiencesendid);
int insert(ExperienceSend record);
int insertSelectiv... | UTF-8 | Java | 743 | java | ExperienceSendDao.java | Java | [] | null | [] | package com.lrcf.yhb.dao.mapper;
import com.lrcf.yhb.pojo.ExperienceSend;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
public interface ExperienceSendDao {
int deleteByPrimaryKey(Integer experiencesendid);
int insert(ExperienceSend record);
int insertSelectiv... | 743 | 0.794078 | 0.794078 | 29 | 24.655172 | 24.08931 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.517241 | false | false | 0 |
ad99267d6a3d4a6cce56eef6cb4ffdfffefa8858 | 34,668,976,017,287 | d39817a17e6b62a67ba46cd3d6e27f27d402be9a | /BookManager/src/main/java/Dao/ValueObject/Book.java | cf6e385559bedcc166ae84cab5a108050d011e39 | [] | no_license | zhuyidi/book_manager | https://github.com/zhuyidi/book_manager | 563dac320e55fcc39191d246b45caf572310ab93 | 72541ea06ab7ed3438eda067cadbeec2ba2f44e4 | refs/heads/master | 2021-01-02T08:15:28.501000 | 2017-08-03T07:31:05 | 2017-08-03T07:31:05 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Dao.ValueObject;
/**
* Created by dela on 7/20/17.
*/
public class Book {
private int id;
private String name;
private String author;
private String owner;
private int amount;
private String upload_date;
private String describe;
private int borrow_num;
public int getId()... | UTF-8 | Java | 1,442 | java | Book.java | Java | [
{
"context": "package Dao.ValueObject;\n\n\n/**\n * Created by dela on 7/20/17.\n */\npublic class Book {\n private i",
"end": 49,
"score": 0.9520190358161926,
"start": 45,
"tag": "USERNAME",
"value": "dela"
}
] | null | [] | package Dao.ValueObject;
/**
* Created by dela on 7/20/17.
*/
public class Book {
private int id;
private String name;
private String author;
private String owner;
private int amount;
private String upload_date;
private String describe;
private int borrow_num;
public int getId()... | 1,442 | 0.579057 | 0.575589 | 81 | 16.802469 | 14.902497 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.308642 | false | false | 0 |
d1445cc89165c873bc8fbc204f7dd3805c4494ae | 34,634,616,277,775 | f76f1f306c7f68c34e8edc0225a1d404a0aa3897 | /app/src/main/java/com/flurry/org/codehaus/jackson/map/JsonDeserializer.java | f555d3ccc94acef227b48e1a6d797d9e9532b8d4 | [] | no_license | Bingle-labake/Vine15 | https://github.com/Bingle-labake/Vine15 | b8a2852bf43e295a63c976d2fa263b301036807d | b75665ff848df0d526ec0f26d64516629c150b33 | refs/heads/master | 2016-09-01T05:59:05.804000 | 2015-10-31T07:40:04 | 2015-10-31T07:40:04 | 45,291,739 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.flurry.org.codehaus.jackson.map;
import com.flurry.org.codehaus.jackson.JsonParser;
import com.flurry.org.codehaus.jackson.JsonProcessingException;
import java.io.IOException;
public abstract class JsonDeserializer<T>
{
public abstract T deserialize(JsonParser paramJsonParser, DeserializationContext par... | UTF-8 | Java | 1,420 | java | JsonDeserializer.java | Java | [] | null | [] | package com.flurry.org.codehaus.jackson.map;
import com.flurry.org.codehaus.jackson.JsonParser;
import com.flurry.org.codehaus.jackson.JsonProcessingException;
import java.io.IOException;
public abstract class JsonDeserializer<T>
{
public abstract T deserialize(JsonParser paramJsonParser, DeserializationContext par... | 1,420 | 0.788732 | 0.785211 | 47 | 29.234043 | 37.663242 | 155 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.404255 | false | false | 0 |
5f987d81c998c1793be0fdc5186fc5f5d67aee1b | 34,634,616,275,705 | fe08cf9d0c20181250f1d4ca3910c9c3ead4c585 | /module/core/src/main/java/zut/cs/core/service/impl/ComponentManagerImpl.java | 25f76452fb8e94a4b11046cde92bda94df415140 | [] | no_license | zut-huangtang/zutnp_paltform | https://github.com/zut-huangtang/zutnp_paltform | 7d1c97bd889192ed2048baf4613702e6f5d8e7b9 | 47277aa20a0aaaaa2d5fe33c4841a0efc721d7fc | refs/heads/master | 2020-08-10T20:55:36.237000 | 2019-10-11T08:12:48 | 2019-10-11T08:12:48 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package zut.cs.core.service.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import zut.cs.core.base.service.impl.GenericManagerImpl;
import zut.cs.core.dao.ComponentDao;
import zut.cs.core.domain.Component;
import zut.cs.core.domain.User;
import zut.c... | UTF-8 | Java | 830 | java | ComponentManagerImpl.java | Java | [] | null | [] | package zut.cs.core.service.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import zut.cs.core.base.service.impl.GenericManagerImpl;
import zut.cs.core.dao.ComponentDao;
import zut.cs.core.domain.Component;
import zut.cs.core.domain.User;
import zut.c... | 830 | 0.771084 | 0.771084 | 28 | 28.642857 | 25.023153 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.535714 | false | false | 0 |
77a1b7c06d68bcfd887556b6507f6ae7c20e173a | 11,785,390,314,652 | aa02b1656b8340379658415e86f642c30a011565 | /cbrmb_demo_new/src/main/java/com/gopay/cbrmb/modules/demo/dto/PayResDTO.java | 87559e5ff426b594df5847ee2ffed3f0dc317863 | [] | no_license | cuigudong/clxy | https://github.com/cuigudong/clxy | 27bf9835ebba113160ca8846ab561ff906a91045 | 64ccf50893581cb537aa8db7f7aa8bae9a58e8e8 | refs/heads/master | 2018-01-08T21:31:27.053000 | 2016-12-21T06:30:51 | 2016-12-21T06:30:51 | 44,092,040 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package com.gopay.cbrmb.modules.demo.dto;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
/**
* @author junjie.ge
*
*/
public class PayResDTO implements Serializable {
private static final long serialVersionUID = -5502891171783045401L;
private Boolean i... | UTF-8 | Java | 2,214 | java | PayResDTO.java | Java | [
{
"context": "ecimal;\r\nimport java.util.List;\r\n\r\n/**\r\n * @author junjie.ge\r\n *\r\n */\r\npublic class PayResDTO implements Seria",
"end": 171,
"score": 0.996499240398407,
"start": 162,
"tag": "USERNAME",
"value": "junjie.ge"
}
] | null | [] | /**
*
*/
package com.gopay.cbrmb.modules.demo.dto;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
/**
* @author junjie.ge
*
*/
public class PayResDTO implements Serializable {
private static final long serialVersionUID = -5502891171783045401L;
private Boolean i... | 2,214 | 0.65944 | 0.650858 | 109 | 18.311926 | 17.179941 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.229358 | false | false | 0 |
d5e89fdb953efdb1685e51517108f1523062e27e | 7,584,912,269,259 | aa3d39b93f0327d6fa4e00ebbde0f923ef1271f2 | /src/main/java/com/web/store/service/impl/ProductServiecImpl.java | 9138dcb3c0c8999f39e7a4136f2a3f286dee8a64 | [] | no_license | vincent0702/imovie | https://github.com/vincent0702/imovie | eb433ab566e87eac918f1cddc637041fecdecf2f | dd9a65007cefa84e1772f67eec5d842eda2512d9 | refs/heads/master | 2022-12-02T05:12:24.309000 | 2020-08-11T05:31:23 | 2020-08-11T05:31:23 | 286,655,021 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.web.store.service.impl;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
... | UTF-8 | Java | 7,341 | java | ProductServiecImpl.java | Java | [] | null | [] | package com.web.store.service.impl;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
... | 7,341 | 0.777293 | 0.775112 | 327 | 21.437309 | 20.046312 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.327217 | false | false | 0 |
ec35870bd0c7905a87f13c78ebcfe399479dffff | 31,791,347,982,915 | bd8d60f226bca2f0ab53ae45ebfca6bd921ccbe6 | /src/main/java/com/stackroute/samplepassengerrealtion/dao/PassengerImpl.java | 3d1a795db96c326b99569223714f414d1228f230 | [] | no_license | itsthakuramit/hibernate-associations-demo | https://github.com/itsthakuramit/hibernate-associations-demo | 96b1cf3b7a1f9e12f601896f2d1f4e1267f56695 | 17701535d2792236e9b072fcb4bf7d4546f6080a | refs/heads/master | 2023-05-28T16:40:34.362000 | 2021-05-13T09:09:12 | 2021-05-13T09:09:12 | 377,590,775 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.stackroute.samplepassengerrealtion.dao;
import java.util.List;
import javax.transaction.Transactional;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import com.stackroute.samplepassengerrealtion.model... | UTF-8 | Java | 699 | java | PassengerImpl.java | Java | [] | null | [] | package com.stackroute.samplepassengerrealtion.dao;
import java.util.List;
import javax.transaction.Transactional;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import com.stackroute.samplepassengerrealtion.model... | 699 | 0.798283 | 0.798283 | 35 | 18.971428 | 22.958952 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.857143 | false | false | 0 |
7f0d93d089670f0e8a21185e6b8580d0163ed1a0 | 14,267,881,416,469 | 0c66826a48c962b6bf91f3480ddb9bc229c166b1 | /app/src/main/java/com/doschool/hs/act/event/RelationListUpdateEvent.java | cfb4de056d27d7cbf106aafd7733971de4470531 | [] | no_license | githubyxl/hs2018 | https://github.com/githubyxl/hs2018 | b9e0264c6002719997f2b8034110afa8d935f6a2 | fa75b448befbdc01d91066fe4611e30af8d05e80 | refs/heads/master | 2018-10-14T22:12:47.462000 | 2018-08-01T08:41:19 | 2018-08-01T08:41:19 | 138,141,673 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.doschool.hs.act.event;
public class RelationListUpdateEvent {
}
| UTF-8 | Java | 80 | java | RelationListUpdateEvent.java | Java | [] | null | [] | package com.doschool.hs.act.event;
public class RelationListUpdateEvent {
}
| 80 | 0.775 | 0.775 | 7 | 10.428572 | 16.211611 | 38 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.142857 | false | false | 0 |
fe9a4ab2421f5df5b6193750cdab0a4b5f9aebb7 | 22,497,038,728,021 | ac40d06433e8c4852f02d828cb8fe54e5c9b405b | /KarafCommands/src/main/java/org/singam/karaf/bundle/dependency/installer/GetBlueprintComponents.java | 2a7b3a0bdde47a27e826692868fd86a7dd8cfbf6 | [] | no_license | arunsrajan/KarafServer | https://github.com/arunsrajan/KarafServer | fac2531dce7fadc3a19138924946a2d1321a1414 | cfa71df4cbfa62e7609b12c903e9233d83d5c07c | refs/heads/master | 2022-05-23T05:56:45.004000 | 2018-10-08T00:53:53 | 2018-10-08T00:53:53 | 151,997,770 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.singam.karaf.bundle.dependency.installer;
import org.apache.karaf.shell.commands.Command;
import org.apache.karaf.shell.console.OsgiCommandSupport;
import org.apache.karaf.system.SystemService;
import org.osgi.framework.ServiceReference;
import org.osgi.service.blueprint.container.BlueprintContainer;... | UTF-8 | Java | 977 | java | GetBlueprintComponents.java | Java | [] | null | [] | package org.singam.karaf.bundle.dependency.installer;
import org.apache.karaf.shell.commands.Command;
import org.apache.karaf.shell.console.OsgiCommandSupport;
import org.apache.karaf.system.SystemService;
import org.osgi.framework.ServiceReference;
import org.osgi.service.blueprint.container.BlueprintContainer;... | 977 | 0.801433 | 0.801433 | 24 | 38.708332 | 34.423199 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.5 | false | false | 0 |
8550b824f42db3080f1817595c7569cba0cc21e2 | 23,184,233,499,898 | d15140eb873281594e1ec23ab2c01d6d697d75d3 | /week_SP_5_JavaExcelTable/src/Controller.java | d2e9f56a9f6886227e9ad75730d003f07ad41401 | [
"MIT"
] | permissive | drozdms/BSU_Java_Projects | https://github.com/drozdms/BSU_Java_Projects | ad744c06b424a86fd6ce15ab7b43a2b0cdf49411 | ac5ae0cab45dc34f568bd240c80c8bb666440243 | refs/heads/master | 2023-04-04T08:18:38.142000 | 2021-04-11T12:14:38 | 2021-04-11T12:14:38 | 356,856,808 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import javax.swing.event.TableModelEvent;
import javax.swing.event.TableModelListener;
/**
*
* @author Mark Drozd
*/
public class Controller implements TableModelListener
{
private Model model;
private View view;
public Controller(Model model, View view)
{
this.model=model;
... | UTF-8 | Java | 428 | java | Controller.java | Java | [
{
"context": "swing.event.TableModelListener;\n\n/**\n *\n * @author Mark Drozd\n */\npublic class Controller implements TableModel",
"end": 117,
"score": 0.9998173713684082,
"start": 107,
"tag": "NAME",
"value": "Mark Drozd"
}
] | null | [] |
import javax.swing.event.TableModelEvent;
import javax.swing.event.TableModelListener;
/**
*
* @author <NAME>
*/
public class Controller implements TableModelListener
{
private Model model;
private View view;
public Controller(Model model, View view)
{
this.model=model;
th... | 424 | 0.647196 | 0.647196 | 24 | 16.791666 | 17.248138 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.291667 | false | false | 0 |
55dadfd3170ac2f75c1a6ca46f1b94a66767a632 | 11,656,541,247,170 | bb2543ea500877c8b459f9e1bbc9238bea6aa631 | /src/main/java/com/peploleum/insight/yummy/dto/source/elasticearch/EsQuery.java | 3ba895a1c3c0fff6d9fda1ff1f8f5eab8a99f20d | [] | no_license | peploleum/yummy | https://github.com/peploleum/yummy | fa49fce68cadbfb648aa81312014153124a06996 | 2d0ffe853da5592c1af4712cb34800c329100eae | refs/heads/master | 2022-09-04T12:43:14.539000 | 2019-05-28T16:10:04 | 2019-05-28T16:10:04 | 161,391,875 | 3 | 0 | null | false | 2022-08-06T05:22:43 | 2018-12-11T20:48:11 | 2019-05-28T16:10:20 | 2022-08-06T05:22:40 | 1,025 | 2 | 0 | 3 | Java | false | false | package com.peploleum.insight.yummy.dto.source.elasticearch;
/**
* Created by cpoullot on 18/01/2019.
* contenu (Body) Json de la requete a envoyer a elasticearch
*/
public class EsQuery {
private String content;
public EsQuery() {
}
public String getContent() {
return content;
}
... | UTF-8 | Java | 403 | java | EsQuery.java | Java | [
{
"context": ".yummy.dto.source.elasticearch;\n\n/**\n * Created by cpoullot on 18/01/2019.\n * contenu (Body) Json de la reque",
"end": 88,
"score": 0.999600887298584,
"start": 80,
"tag": "USERNAME",
"value": "cpoullot"
}
] | null | [] | package com.peploleum.insight.yummy.dto.source.elasticearch;
/**
* Created by cpoullot on 18/01/2019.
* contenu (Body) Json de la requete a envoyer a elasticearch
*/
public class EsQuery {
private String content;
public EsQuery() {
}
public String getContent() {
return content;
}
... | 403 | 0.652605 | 0.632754 | 22 | 17.318182 | 19.461819 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.181818 | false | false | 0 |
19b889bbc19c13b9f6ff46be7472cd134b31b19e | 26,645,977,144,526 | 7ed670dc0f02ceb3dd9c23c24e1d3aafce38882a | /src/main/java/com/sensor/db/bean/FunnelBean.java | b457ad1e9f943639ec9ba172cca0d86945f29404 | [] | no_license | unasm/javaCheck | https://github.com/unasm/javaCheck | f2c716733d854e5c950300f2127332c4f01d2779 | 95f42406c0b92fcedce3f44380473046e1ca35b9 | refs/heads/master | 2021-01-23T19:34:14.455000 | 2017-09-08T06:57:36 | 2017-09-08T06:57:36 | 102,830,350 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sensor.db.bean;
/**
* Created by tianyi on 05/09/2017.
*/
public class FunnelBean {
private int id;
private int userId;
private String name;
private int maxConvertTime;
private String steps;
private String comment;
private int projectId;
public FunnelBean() {
}
p... | UTF-8 | Java | 1,617 | java | FunnelBean.java | Java | [
{
"context": "package com.sensor.db.bean;\n\n/**\n * Created by tianyi on 05/09/2017.\n */\npublic class FunnelBean {\n ",
"end": 53,
"score": 0.9995984435081482,
"start": 47,
"tag": "USERNAME",
"value": "tianyi"
}
] | null | [] | package com.sensor.db.bean;
/**
* Created by tianyi on 05/09/2017.
*/
public class FunnelBean {
private int id;
private int userId;
private String name;
private int maxConvertTime;
private String steps;
private String comment;
private int projectId;
public FunnelBean() {
}
p... | 1,617 | 0.581323 | 0.576376 | 77 | 20 | 28.127262 | 227 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 0 |
2e62ecbce07b66824f6d502e98c98584c154d9fe | 13,314,398,650,890 | add3befb9e8ac259ed7adcf3e8d9a412f458fec6 | /monkey-api-sign-core/src/main/java/com/r/study/monkey/sign/algorithm/Md5SignAlgorithm.java | 9498db9e9c4443ed6cf109ad0456fd16323e8235 | [] | no_license | bellmit/Rstudy | https://github.com/bellmit/Rstudy | 4e1e5c1ac76a4f1ae08cfce1e1ad7d2cc3611fac | 4d5886715beb35ed46732af412fb4f208b35af2b | refs/heads/master | 2023-07-13T06:49:17.931000 | 2021-08-03T07:01:25 | 2021-08-03T07:01:25 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.r.study.monkey.sign.algorithm;
import org.springframework.util.DigestUtils;
import org.springframework.util.StringUtils;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
/**
* MD5签名算法实现
*
*/
public class Md5SignAlgorithm implements SignAlgorithm {
@Override
public String ... | UTF-8 | Java | 1,453 | java | Md5SignAlgorithm.java | Java | [] | null | [] | package com.r.study.monkey.sign.algorithm;
import org.springframework.util.DigestUtils;
import org.springframework.util.StringUtils;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
/**
* MD5签名算法实现
*
*/
public class Md5SignAlgorithm implements SignAlgorithm {
@Override
public String ... | 1,453 | 0.636618 | 0.633124 | 45 | 30.799999 | 25.460732 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.8 | false | false | 0 |
7940139acb851db6b8417409c49cf06090e9bee9 | 28,235,115,015,988 | 247d4a9510aabfe6611b561a84dbe94390424da5 | /src/main/java/ui/options/panes/ProjectOptionsPane.java | f0426cbd768debcba581725d3dc90061eb712c8e | [] | no_license | akochamdev/ToolBank | https://github.com/akochamdev/ToolBank | b92bf592e2d9a5f22c7f6c428ee1067eac198b77 | 2661acbb0f3fe3f7542352becc11f83f921a7188 | refs/heads/master | 2018-03-28T08:14:20.120000 | 2017-05-11T18:20:51 | 2017-05-11T18:20:51 | 87,485,827 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ui.options.panes;
import org.jdesktop.swingx.JXTaskPane;
import ui.cards.CardConstants;
import ui.cards.CardsPanel;
import javax.swing.*;
/**
* Task pane that represents the project options available to the user. Contains a series of buttons that will
* switch to the appropriate card in the CardLayout vie... | UTF-8 | Java | 879 | java | ProjectOptionsPane.java | Java | [] | null | [] | package ui.options.panes;
import org.jdesktop.swingx.JXTaskPane;
import ui.cards.CardConstants;
import ui.cards.CardsPanel;
import javax.swing.*;
/**
* Task pane that represents the project options available to the user. Contains a series of buttons that will
* switch to the appropriate card in the CardLayout vie... | 879 | 0.739477 | 0.739477 | 27 | 31.592592 | 35.063179 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 0 |
c78296ac5d1cc1901dd739d1e3ddf6c7b3488d9a | 22,986,664,995,637 | 009d18eb4b877ab2e653e69e766e2d86b1928757 | /CodigoDeFuente/src/jp/pioneer/ce/aam2/AAM2Kit/a/b.java | 0d160fe23886c1e0f44541ecdb3fb44d021408d5 | [] | no_license | secretline/waze-security-paper | https://github.com/secretline/waze-security-paper | 3a6fbaf6dfa63aca81c195d9c9ffb8ba9c827b71 | eb573a23e4f2cbe4484fd2a1b1f09c31d5364fe4 | refs/heads/master | 2016-09-07T18:14:39.292000 | 2015-06-28T19:15:45 | 2015-06-28T19:15:45 | 38,207,099 | 2 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: braces fieldsfirst space lnc
package jp.pioneer.ce.aam2.AAM2Kit.a;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnect... | UTF-8 | Java | 2,225 | java | b.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.9996861219406128,
"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 jp.pioneer.ce.aam2.AAM2Kit.a;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
impor... | 2,215 | 0.654831 | 0.637753 | 63 | 34.317459 | 34.105263 | 164 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.539683 | false | false | 0 |
17702d6cd4c4da92f3ce1b2e300d8c0c04f3d3c4 | 14,766,097,630,940 | d9745a906c5e5f50191eeec14880d13ff00b2160 | /src/main/java/com/hansonwang99/web/IndexController.java | 9af0957b5b31ae979302633cb6c3d4f5770b6c7c | [] | no_license | zhengxiaochuan/hsite | https://github.com/zhengxiaochuan/hsite | dfe447fa108689cf6bfb2d89c4d1b13b8478803c | 7f9974027c395aa6d50d6bb2acf32dee0b77bb75 | refs/heads/master | 2020-04-02T16:56:40.887000 | 2018-08-24T14:16:31 | 2018-08-24T14:16:31 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hansonwang99.web;
import com.hansonwang99.comm.Const;
import com.hansonwang99.domain.Category;
import com.hansonwang99.repository.CategoryRepository;
import com.hansonwang99.service.CategoryService;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
i... | UTF-8 | Java | 3,897 | java | IndexController.java | Java | [
{
"context": "rvlet.http.HttpServletResponse;\n\n/**\n * Created by hansonwang on 2017/6/2.\n */\n@Controller\npublic class IndexCo",
"end": 676,
"score": 0.9997124671936035,
"start": 666,
"tag": "USERNAME",
"value": "hansonwang"
}
] | null | [] | package com.hansonwang99.web;
import com.hansonwang99.comm.Const;
import com.hansonwang99.domain.Category;
import com.hansonwang99.repository.CategoryRepository;
import com.hansonwang99.service.CategoryService;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
i... | 3,897 | 0.698709 | 0.693544 | 104 | 32.509617 | 24.595573 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.596154 | false | false | 0 |
df0e145d1f15bc7f1e6467f745a88458424e762e | 24,077,586,677,819 | 2fa5e30aaa31deedab06f7cfe59c6af104e656b0 | /src/main/java/MoneyTestHelper/OTPHelper.java | fc2afca02163f29b716eeefbc9ab11bbac3feb93 | [] | no_license | msr5464/Project1 | https://github.com/msr5464/Project1 | 9d5fb11b3ed73bcec0e6564613d53680ddff4459 | 1516bb03076e50132749f4aaf694ed0e949ec83f | refs/heads/master | 2018-10-05T14:23:13.795000 | 2017-06-12T06:44:25 | 2017-06-12T06:44:25 | 93,886,057 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package MoneyTestHelper;
import java.util.Map;
import MoneyPageObject.MobileApp.LoginScreen.ExpectedWelcomeScreen;
import Utils.Browser;
import Utils.Config;
import Utils.Helper;
import Utils.User;
import Utils.DatabaseHelper.AuthDBHelper;
import Utils.enums.database.AuthDB;
public class OTPHelper extends DashboardH... | UTF-8 | Java | 16,156 | java | OTPHelper.java | Java | [] | null | [] | package MoneyTestHelper;
import java.util.Map;
import MoneyPageObject.MobileApp.LoginScreen.ExpectedWelcomeScreen;
import Utils.Browser;
import Utils.Config;
import Utils.Helper;
import Utils.User;
import Utils.DatabaseHelper.AuthDBHelper;
import Utils.enums.database.AuthDB;
public class OTPHelper extends DashboardH... | 16,156 | 0.756004 | 0.752723 | 444 | 35.387386 | 33.542744 | 144 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.925676 | false | false | 0 |
3c3b5deb5832d09217c06d0063fa2875ed7b9c7a | 23,038,204,582,622 | 1946b53423645b2cb8c381eb6c27b34f4d198e34 | /spring-context/src/main/java/org/springframework/context/annotation/AnnotationBeanNameGenerator.java | 64aa0a2f263fc35510e95d178bd3751fa26e4e77 | [
"Apache-2.0"
] | permissive | spring-projects/spring-framework | https://github.com/spring-projects/spring-framework | e0bf18593af55a5cddd57efbb86ebe5da8a8f38e | 759e3d4aa6e4e8154f6428e496275bcd89431bba | refs/heads/main | 2023-09-03T07:44:34.908000 | 2023-09-03T00:32:01 | 2023-09-03T00:32:01 | 1,148,753 | 56,403 | 43,516 | Apache-2.0 | false | 2023-09-14T15:45:05 | 2010-12-08T04:04:45 | 2023-09-14T13:57:45 | 2023-09-14T15:45:03 | 197,376 | 53,106 | 36,868 | 1,183 | Java | false | false | /*
* Copyright 2002-2023 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | UTF-8 | Java | 10,050 | java | AnnotationBeanNameGenerator.java | Java | [
{
"context": "ceImpl -> URLFooServiceImpl</pre>\n *\n * @author Juergen Hoeller\n * @author Mark Fisher\n * @author Sam Brannen\n * ",
"end": 2741,
"score": 0.9998589754104614,
"start": 2726,
"tag": "NAME",
"value": "Juergen Hoeller"
},
{
"context": "mpl</pre>\n *\n * @author Juer... | null | [] | /*
* Copyright 2002-2023 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 10,031 | 0.75592 | 0.753333 | 234 | 41.948719 | 32.225395 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.858974 | false | false | 0 |
2ac220b408b7d2c5cb533766a146808d1137ac90 | 12,154,757,488,588 | c3ed94e1e761a369a893e8f5b73b2fc83628ea37 | /ST-BLE-Mesh_App/app/src/main/java/com/st/bluenrgmesh/adapter/config/ConfigElementRecyclerAdapter.java | 02f8bc203e47b55939f03494196123ebc625f4af | [] | no_license | rawatsaurabh/stblemesh | https://github.com/rawatsaurabh/stblemesh | 8b2e023e0c18b980d99b65ffb3f6598d39b7b46a | b049c9d1fbd306cb002a9286e06e8cabd68f80d0 | refs/heads/master | 2022-10-23T01:15:35.898000 | 2020-06-16T08:17:32 | 2020-06-16T08:17:32 | 256,130,491 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
******************************************************************************
* @file ConfigElementRecyclerAdapter.java
* @author BLE Mesh Team
* @version V1.11.000
* @date 20-October-2019
* @brief User Application file
******************************************************************************
... | UTF-8 | Java | 5,198 | java | ConfigElementRecyclerAdapter.java | Java | [] | null | [] | /**
******************************************************************************
* @file ConfigElementRecyclerAdapter.java
* @author BLE Mesh Team
* @version V1.11.000
* @date 20-October-2019
* @brief User Application file
******************************************************************************
... | 5,198 | 0.689184 | 0.68495 | 129 | 39.279068 | 33.784538 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.542636 | false | false | 0 |
3699dc1b2f7ee118788ba53089b4869c1d6e8b15 | 3,058,016,729,891 | 4c55604241121510b8cce871a1916ebd31ba646b | /TrueWheelsOnline/src/main/java/com/Truewheels/util/Truewheels.java | 9d4c06a5ccf00071b920f6d4a0b9640fba8b8a75 | [] | no_license | archana07knmiet/TestProject | https://github.com/archana07knmiet/TestProject | b1323bfa1731725cbf6e2a031b3b559a42e7279c | f7fea0616c9fb930992432c525ec091195b73d75 | refs/heads/master | 2020-12-09T16:51:44.395000 | 2020-01-12T09:01:32 | 2020-01-12T09:01:32 | 233,362,702 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.Truewheels.util;
public interface Truewheels {
}
| UTF-8 | Java | 63 | java | Truewheels.java | Java | [] | null | [] | package com.Truewheels.util;
public interface Truewheels {
}
| 63 | 0.777778 | 0.777778 | 5 | 11.6 | 13.807244 | 29 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 0 |
394d33c2f0e9a741f2c55d116621948c02625dbe | 14,912,126,459,249 | 5e4ff4da6d828a3c16ca1f705879bfdd3c578d6c | /les2/GuessStarter.java | d726e946c4ac57bfbe292ab89b49a3e5d1e53c96 | [] | no_license | downstreamfish/Java_Trains | https://github.com/downstreamfish/Java_Trains | bf85abfbcc0c23cf49112282ce913729bd49a5ac | aee9d4e6d1f3ce3f735c97ac180979a11cdb5c06 | refs/heads/master | 2020-03-27T14:36:08.666000 | 2018-09-15T23:09:10 | 2018-09-15T23:09:10 | 146,671,776 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Random;
import java.util.Scanner;
public class GuessStarter
{
public static void main(String[] args){
Random random = new Random();
Scanner in = new Scanner(System.in);
int number = random.nextInt(100) + 1;
//System.out.println(number);
System.out.print("I'm thinking of a number between 1... | UTF-8 | Java | 641 | java | GuessStarter.java | Java | [] | null | [] | import java.util.Random;
import java.util.Scanner;
public class GuessStarter
{
public static void main(String[] args){
Random random = new Random();
Scanner in = new Scanner(System.in);
int number = random.nextInt(100) + 1;
//System.out.println(number);
System.out.print("I'm thinking of a number between 1... | 641 | 0.675507 | 0.663027 | 21 | 29.523809 | 22.115753 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.952381 | false | false | 0 |
e071342239e632b794a5f03ab0da87c218e4ceb6 | 28,716,151,358,402 | 86f1c95855d828da547294221541afb66bad151a | /src/main/java/usa/browntrask/utility/impl/tables/TableFactoryImpl.java | a1ad91daead4fb7daa42e00a8facb5f86e5d2de1 | [] | no_license | ian-a-brown/utility | https://github.com/ian-a-brown/utility | 28b2b58938fa59990ea150216074b1a13be17f18 | e4a6060b21316fa9f330ea915ee2156d87137afb | refs/heads/master | 2021-01-12T01:52:01.478000 | 2019-12-18T01:28:27 | 2019-12-18T01:28:27 | 78,437,774 | 0 | 0 | null | false | 2020-10-12T23:20:28 | 2017-01-09T14:47:49 | 2019-12-18T01:29:08 | 2020-10-12T23:20:27 | 101 | 0 | 0 | 1 | Java | false | false | /**
* Copyright 2007, 2008, 2009, 2010, 2011 by Ian Andrew Brown<br>
* All Rights Reserved
*/
package usa.browntrask.utility.impl.tables;
import usa.browntrask.utility.tables.Table;
import usa.browntrask.utility.tables.TableFactory;
/**
* Factory object to create Table objects for the game of En Garde.
* <p>
* ... | UTF-8 | Java | 1,009 | java | TableFactoryImpl.java | Java | [
{
"context": "/**\n * Copyright 2007, 2008, 2009, 2010, 2011 by Ian Andrew Brown<br>\n * All Rights Reserved\n */\npackage usa.brownt",
"end": 65,
"score": 0.9998878836631775,
"start": 49,
"tag": "NAME",
"value": "Ian Andrew Brown"
},
{
"context": "ts for the game of En Garde.\n * <p... | null | [] | /**
* Copyright 2007, 2008, 2009, 2010, 2011 by <NAME><br>
* All Rights Reserved
*/
package usa.browntrask.utility.impl.tables;
import usa.browntrask.utility.tables.Table;
import usa.browntrask.utility.tables.TableFactory;
/**
* Factory object to create Table objects for the game of En Garde.
* <p>
*
* @autho... | 969 | 0.673935 | 0.612488 | 48 | 20.020834 | 19.297548 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.916667 | false | false | 0 |
860e1cee09fc12f60d49a89f9e1ab8bb46a3408e | 13,314,398,657,229 | 8557a8859d8f7902e4a9935581eb276e05242841 | /src/MxCompiler/Optim/LoopOptim/LoopAnalysis.java | bc82a9239791881d3f7019126885b1845f3e3c7b | [] | no_license | MasterJH5574/Mx-Compiler | https://github.com/MasterJH5574/Mx-Compiler | 6d4f5d7ded24f7e681d9b3f44cceca006c11d0e5 | 5cb95321f3b5cbc095fc6c1665c1c6452aa210a2 | refs/heads/master | 2020-12-09T02:42:00.106000 | 2020-05-16T14:37:47 | 2020-05-16T14:37:47 | 233,164,997 | 15 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package MxCompiler.Optim.LoopOptim;
import MxCompiler.IR.BasicBlock;
import MxCompiler.IR.Function;
import MxCompiler.IR.Instruction.BranchInst;
import MxCompiler.IR.Instruction.IRInstruction;
import MxCompiler.IR.Instruction.PhiInst;
import MxCompiler.IR.Module;
import MxCompiler.IR.Operand.*;
import MxCompiler.Optim... | UTF-8 | Java | 13,016 | java | LoopAnalysis.java | Java | [] | null | [] | package MxCompiler.Optim.LoopOptim;
import MxCompiler.IR.BasicBlock;
import MxCompiler.IR.Function;
import MxCompiler.IR.Instruction.BranchInst;
import MxCompiler.IR.Instruction.IRInstruction;
import MxCompiler.IR.Instruction.PhiInst;
import MxCompiler.IR.Module;
import MxCompiler.IR.Operand.*;
import MxCompiler.Optim... | 13,016 | 0.576291 | 0.575753 | 366 | 34.562843 | 25.880138 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.584699 | false | false | 0 |
236230ff1ac53bf9c0260599a6e569e5ccc9861e | 2,482,491,158,555 | 26e0f36788303c7c4a7673989502663e41ca680f | /src/main/java/com/youdeyiwu/youdeyiwubackend/service/notification/impl/CommentNotificationServiceImpl.java | 3a003572322d901216199d6ea6af047b62e911eb | [
"MIT"
] | permissive | dafengzhen/youdeyiwu-backend | https://github.com/dafengzhen/youdeyiwu-backend | 54f717e259589c9a4e9d0cf22982c4d5fb753bf6 | faaa80b30f853bee6acadea6e51f88ff23368574 | refs/heads/main | 2023-09-04T12:34:34.955000 | 2023-08-31T08:00:45 | 2023-08-31T08:00:45 | 540,742,551 | 13 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.youdeyiwu.youdeyiwubackend.service.notification.impl;
import static com.youdeyiwu.youdeyiwubackend.constant.HelpConstant.CREATE_NOTICE_FAILURE;
import static com.youdeyiwu.youdeyiwubackend.constant.RabbitmqConstant.NOTICE_NAVIGATION_KEY;
import static com.youdeyiwu.youdeyiwubackend.tool.Tool.now;
import c... | UTF-8 | Java | 6,856 | java | CommentNotificationServiceImpl.java | Java | [
{
"context": "rk.stereotype.Service;\n\n/**\n * 评论通知.\n *\n * @author dafengzhen\n */\n@RequiredArgsConstructor\n@Service\npublic clas",
"end": 1731,
"score": 0.9994102716445923,
"start": 1721,
"tag": "USERNAME",
"value": "dafengzhen"
},
{
"context": "ty.getOldReviewState());\n ... | null | [] | package com.youdeyiwu.youdeyiwubackend.service.notification.impl;
import static com.youdeyiwu.youdeyiwubackend.constant.HelpConstant.CREATE_NOTICE_FAILURE;
import static com.youdeyiwu.youdeyiwubackend.constant.RabbitmqConstant.NOTICE_NAVIGATION_KEY;
import static com.youdeyiwu.youdeyiwubackend.tool.Tool.now;
import c... | 6,856 | 0.634638 | 0.633007 | 168 | 39.148811 | 28.183632 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.672619 | false | false | 0 |
b49d08b6601903341ecc5c34974c87f3683a4a21 | 5,686,536,723,167 | 93e61b462bd1e9b37468fefb04fbf89aca22c1c2 | /src/main/java/pl/noga/PortalOskApp/dao/entity/Course.java | 6ec2b90078d2030458ece65af2198153b1ebc516 | [] | no_license | kfnoga/portalosk-app | https://github.com/kfnoga/portalosk-app | b0709bce87b7239564dc220b01f4e9363856f0f4 | 671014fcd90b9239b65fcc727575dfdc3e4cb2f6 | refs/heads/master | 2020-12-07T07:43:41.145000 | 2020-01-17T09:05:29 | 2020-01-17T09:05:29 | 232,674,839 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.noga.PortalOskApp.dao.entity;
import pl.noga.PortalOskApp.dao.helper.CourseType;
import javax.persistence.*;
import java.util.List;
@Entity
@Table(name = "courses")
public class Course {
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Id
private Long id;
private CourseType type;
... | UTF-8 | Java | 1,435 | java | Course.java | Java | [] | null | [] | package pl.noga.PortalOskApp.dao.entity;
import pl.noga.PortalOskApp.dao.helper.CourseType;
import javax.persistence.*;
import java.util.List;
@Entity
@Table(name = "courses")
public class Course {
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Id
private Long id;
private CourseType type;
... | 1,435 | 0.609059 | 0.609059 | 77 | 17.636364 | 17.420624 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.376623 | false | false | 0 |
b867ccab2c7393d28353fbe5a9c90ba4802b67e2 | 5,686,536,723,245 | 926386167b44865e72a70002a5557d9a79c87c6b | /src/main/java/net/henryco/blinckserver/util/Utils.java | 754d9a64b56a7589fab0ae03aca242278eb54847 | [
"BSD-3-Clause"
] | permissive | AustineGwa/Blinck-Server | https://github.com/AustineGwa/Blinck-Server | 39d201c867015b6525b36c60f6a9a3d515625485 | 34e0b4cc0ce36cf41b5c9fda1b65a0a05d47cc71 | refs/heads/master | 2021-09-27T18:04:53.202000 | 2018-11-10T12:29:34 | 2018-11-10T12:29:34 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.henryco.blinckserver.util;
import org.springframework.web.multipart.MultipartFile;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.net.URLConnection;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;
/**
* @author Henry on 17/06/17.
*/
public abstra... | UTF-8 | Java | 2,526 | java | Utils.java | Java | [
{
"context": "e.Paths;\nimport java.util.Arrays;\n\n\n/**\n * @author Henry on 17/06/17.\n */\npublic abstract class Utils {\n\n\t",
"end": 289,
"score": 0.9996214509010315,
"start": 284,
"tag": "NAME",
"value": "Henry"
},
{
"context": "ic static String saveImageFile(byte[] file, Str... | null | [] | package net.henryco.blinckserver.util;
import org.springframework.web.multipart.MultipartFile;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.net.URLConnection;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;
/**
* @author Henry on 17/06/17.
*/
public abstra... | 2,526 | 0.694378 | 0.690024 | 91 | 26.758242 | 28.917215 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.021978 | false | false | 0 |
12342ce333d3ab594eb05d20698b44242a5b6816 | 21,784,074,140,338 | a02ca44e604afa610a05cfc3e5cb14266721b3f6 | /Hyouman/src/org/hyouman/model/UserModel.java | 0dd38916cfea8a6eb306e3e760218f91bf3a8d8c | [] | no_license | mbvivek/Hyouman-Web-Application | https://github.com/mbvivek/Hyouman-Web-Application | 44bca423f0dd43714358781f4f13aa57e904f10e | 1a8a74ec475c50923b30d66451db29301cba0297 | refs/heads/master | 2021-05-13T13:58:20.564000 | 2018-01-08T20:29:38 | 2018-01-08T20:29:38 | 116,723,690 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.hyouman.model;
public class UserModel
{
private String email;
private String password;
private String firstName;
private String lastName;
private String phone;
private String dob;
private String gender;
private String street;
private String city;
private String state;
private String country;
p... | UTF-8 | Java | 2,002 | java | UserModel.java | Java | [] | null | [] | package org.hyouman.model;
public class UserModel
{
private String email;
private String password;
private String firstName;
private String lastName;
private String phone;
private String dob;
private String gender;
private String street;
private String city;
private String state;
private String country;
p... | 2,002 | 0.701299 | 0.701299 | 105 | 18.066668 | 12.813138 | 45 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.628571 | false | false | 0 |
a0ccc470fde756febf4ea2d24f881d13f9cd3df1 | 25,718,264,181,401 | f3148b2d3234cc55faa708b0f545b27f25bf7109 | /src/Caso13.java | 1e3e75dea4a8db4a2d405d76b83f10665eed57bd | [] | no_license | JoanCplusplus/GU-A-PR-CTICA-1 | https://github.com/JoanCplusplus/GU-A-PR-CTICA-1 | 4b58593c839941be6526fcfb94367650007f6274 | 190335db8da147b4e9567bc5e05fb8a933c0aee0 | refs/heads/master | 2022-06-01T00:16:20.246000 | 2020-04-30T18:41:34 | 2020-04-30T18:41:34 | 260,287,392 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import java.util.Scanner;
public class Caso13
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.print("Ingrese nombre: ");
String n = sc.nextLine();
System.out.print("Ingrese apellido: ");
String a = sc.nextLine();
System.out.println("------... | UTF-8 | Java | 499 | java | Caso13.java | Java | [] | null | [] |
import java.util.Scanner;
public class Caso13
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.print("Ingrese nombre: ");
String n = sc.nextLine();
System.out.print("Ingrese apellido: ");
String a = sc.nextLine();
System.out.println("------... | 499 | 0.547094 | 0.543086 | 21 | 21.666666 | 19.042143 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.857143 | false | false | 0 |
f4f03d896e0cd794962deb1cbcec669261b7163f | 32,040,456,037,772 | fc1cbe7f23a59975bf943487e6369d9ad1709e16 | /src/pl/sda/dzien011/Zad3/Main.java | 3e8a864bbb703a2527dc45b0c09d7f251377d407 | [] | no_license | piotrhor11/SDA-JavaWprowadzenie | https://github.com/piotrhor11/SDA-JavaWprowadzenie | 8de0219e0cec36b99e7eaed4850639163d50d8c2 | 147bb24661b6a7ba0dedb14c01d90c1f4d1468ec | refs/heads/master | 2021-01-01T18:16:24.664000 | 2017-09-14T15:08:10 | 2017-09-14T15:08:10 | 98,292,160 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.sda.dzien011.Zad3;
public class Main {
public static void main(String[] args) {
GuitarFactory fender = new GuitarFactory("Fender");
GuitarFactory gibson = new GuitarFactory("Gibson");
fender.makeGuitar("Stratocaster", 8000);
gibson.makeGuitar("Les Paul", 6000);
... | UTF-8 | Java | 777 | java | Main.java | Java | [
{
"context": " GuitarFactory gibson = new GuitarFactory(\"Gibson\");\n\n fender.makeGuitar(\"Stratocaster\", 800",
"end": 213,
"score": 0.9318352341651917,
"start": 207,
"tag": "NAME",
"value": "Gibson"
},
{
"context": "\"Stratocaster\", 8000);\n gibson.makeGuita... | null | [] | package pl.sda.dzien011.Zad3;
public class Main {
public static void main(String[] args) {
GuitarFactory fender = new GuitarFactory("Fender");
GuitarFactory gibson = new GuitarFactory("Gibson");
fender.makeGuitar("Stratocaster", 8000);
gibson.makeGuitar("<NAME>", 6000);
fe... | 775 | 0.611326 | 0.585586 | 25 | 30.08 | 24.476797 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.64 | false | false | 0 |
8d360f5cdc13077b41e0227decb94d10dd91d9ba | 3,985,729,662,591 | a47fe3daf2839bcb516fcffc90b6cac14413fd34 | /Expence/service/src/main/java/com/sid/expence/serviceimpl/UsersServiceImpl.java | e0faee59c0d7ae9fe00f8d8898238c23a5af7637 | [] | no_license | siddharth223437/Ecommerce | https://github.com/siddharth223437/Ecommerce | 1d35134a83c25f5663df5f3e6503911bd3f90303 | 958ff162ee3c588864531bbd1508c7269e954171 | refs/heads/master | 2020-11-29T22:19:29.464000 | 2017-07-08T07:10:49 | 2017-07-08T07:10:49 | 96,601,303 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sid.expence.serviceimpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.sid.expence.common.vo.Users;
import com.sid.expence.dao.UserDao;
import com.sid.expence.service.UsersSerives;
@Service
public class UsersServiceImpl implements... | UTF-8 | Java | 541 | java | UsersServiceImpl.java | Java | [] | null | [] | package com.sid.expence.serviceimpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.sid.expence.common.vo.Users;
import com.sid.expence.dao.UserDao;
import com.sid.expence.service.UsersSerives;
@Service
public class UsersServiceImpl implements... | 541 | 0.804067 | 0.804067 | 22 | 23.59091 | 22.192667 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.909091 | false | false | 0 |
97a9a3fd5066180bfec0661fd271d248d6cfbc50 | 29,497,835,424,657 | d04752fdd2491b9c07fd42c4afbf279b5efc8c8b | /src/test/java/nl/rabobank/customerstatementprocessor/controllers/StatementProcessorControllerTest.java | 700348f3e515a92fef3ae7d1a1967ca1e32784e1 | [] | no_license | AjayAnand86/customer-statement-processor | https://github.com/AjayAnand86/customer-statement-processor | 539c6e6b0ef3e61166f1072e6dd0840cb9ca4b3c | e7d867876bae87657cca8503b3930960cfe6cd66 | refs/heads/master | 2021-06-19T13:16:19.585000 | 2019-08-21T22:10:11 | 2019-08-21T22:10:11 | 202,718,761 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package nl.rabobank.customerstatementprocessor.controllers;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;... | UTF-8 | Java | 3,838 | java | StatementProcessorControllerTest.java | Java | [] | null | [] | package nl.rabobank.customerstatementprocessor.controllers;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;... | 3,838 | 0.786347 | 0.785565 | 97 | 38.567009 | 36.037754 | 129 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.57732 | false | false | 0 |
6d2011780f35d6be237f4cf6bbefde5a03f816b1 | 13,065,290,555,393 | 279fa6f89bc0143298f9678d98fa3b125bf9b70c | /src/main/java/org/rm3l/beam/WordCount.java | 529e5308a68fb6a2592ad8d10fadd7f382be608a | [] | no_license | rm3l/apache-beam-java-firestore-batch-dataflow | https://github.com/rm3l/apache-beam-java-firestore-batch-dataflow | 29103b00a18ff6b1642e37dba64cdf2e2c9bd04e | 90595bae5bdd91e7cb3a522f2be8bf9d7b964885 | refs/heads/main | 2023-06-01T12:04:10.684000 | 2021-06-13T14:01:41 | 2021-06-13T14:01:41 | 365,048,790 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | UTF-8 | Java | 4,106 | java | WordCount.java | Java | [
{
"context": "c data set containing the text of of King Lear, by William\n * Shakespeare. You can override it and choose yo",
"end": 1477,
"score": 0.9997479915618896,
"start": 1470,
"tag": "NAME",
"value": "William"
},
{
"context": "containing the text of of King Lear, by William\n ... | null | [] | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 4,106 | 0.71359 | 0.711641 | 113 | 35.336285 | 31.980251 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.389381 | false | false | 0 |
cf95b038cfdfd93a3d9c31e27af3600c4a597781 | 31,868,657,387,219 | e055e08dd45bcfd78f97c8af59b031d237b5e05f | /src/com/nix/tryout/problems/Palindrome.java | e6ed603c77060a8df60fabaa2e8b9488658e6512 | [] | no_license | nitinramachandran/Tryout | https://github.com/nitinramachandran/Tryout | 7275210bc4214b8af92ff283b9776056e110048e | be5e4636d2f2663603f5e5cb6e39f904ca476841 | refs/heads/master | 2023-03-16T18:39:29.929000 | 2023-03-05T05:37:50 | 2023-03-05T05:37:50 | 180,221,986 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.nix.tryout.problems;
public class Palindrome {
public static boolean isPalindrome(String word) {
int len = word.length();
char[] charArr = word.toLowerCase().toCharArray();
boolean val = true;
for(int i = len-1, j = 0; i >= len/2 && j <= len/2; --i, ++j ) {
... | UTF-8 | Java | 692 | java | Palindrome.java | Java | [] | null | [] | package com.nix.tryout.problems;
public class Palindrome {
public static boolean isPalindrome(String word) {
int len = word.length();
char[] charArr = word.toLowerCase().toCharArray();
boolean val = true;
for(int i = len-1, j = 0; i >= len/2 && j <= len/2; --i, ++j ) {
... | 692 | 0.465318 | 0.459538 | 28 | 23.678572 | 20.176105 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.357143 | false | false | 0 |
4a4b7e242946751fec54d25f7dcf6414d09ed32f | 31,868,657,384,815 | b35cca8e78beeb01d18c7d06a8886bc4624b2313 | /app/src/main/java/com/vehiclerental/contracts/ChangeBookingStatusContract.java | 4fef0dc12fdff29f4948271bae17fa86c06c8ed2 | [
"MIT"
] | permissive | AlexisChevalier/CarRental-Android-Application | https://github.com/AlexisChevalier/CarRental-Android-Application | 49cfa42e6cb5127d5e747d8538c0c4fba5eb8b14 | d05e0469b914e0cf919b2920640d03755f1348b8 | refs/heads/master | 2021-01-20T19:57:44.732000 | 2020-03-30T12:25:39 | 2020-03-30T12:25:39 | 61,232,362 | 14 | 8 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* CarRental
*
* This file provides a light communication object representing the parameters for the change booking status action
*/
package com.vehiclerental.contracts;
public class ChangeBookingStatusContract {
public int bookingId;
public boolean bookingValidated;
}
| UTF-8 | Java | 287 | java | ChangeBookingStatusContract.java | Java | [] | null | [] | /**
* CarRental
*
* This file provides a light communication object representing the parameters for the change booking status action
*/
package com.vehiclerental.contracts;
public class ChangeBookingStatusContract {
public int bookingId;
public boolean bookingValidated;
}
| 287 | 0.777003 | 0.777003 | 12 | 22.916666 | 31.71608 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 0 |
c1aac9e3cfa74a2e376137d5712ec7ac801c1a3b | 8,589,934,643,489 | 9c61cb3b7ea49b24c6c4e22a46f549272f3a91f3 | /src/tr/edu/itu/cs/ben/ExhibitionEditForm.java | b8e0b4063f75bcaf5633ec0e2fad14cb7bdc2304 | [] | no_license | BenjaminTekeshanoski/painters | https://github.com/BenjaminTekeshanoski/painters | 9d15fd0a52f3ef89c0d9a9af94ae42062073982d | 39a56161aa5252ee22ed5afcfddb5e4f968cb03e | refs/heads/master | 2020-03-22T20:16:48.606000 | 2014-12-01T05:58:26 | 2014-12-01T05:58:26 | 140,563,419 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package tr.edu.itu.cs.ben;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.model.CompoundPropertyModel;
import tr.edu.itu.cs.db.WicketApplication;
public class ExhibitionEditForm extends Form {
private boolean newExhibition;... | UTF-8 | Java | 1,269 | java | ExhibitionEditForm.java | Java | [] | null | [] | package tr.edu.itu.cs.ben;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.model.CompoundPropertyModel;
import tr.edu.itu.cs.db.WicketApplication;
public class ExhibitionEditForm extends Form {
private boolean newExhibition;... | 1,269 | 0.670607 | 0.670607 | 39 | 30.538462 | 25.072046 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.538462 | false | false | 0 |
bb694a9e004305b9122b23c3c0686ba09960cc76 | 17,128,329,603,236 | 99f9483ef4cb314b7c0188a76b404e19095bcbeb | /dubbo-interface/src/main/java/cn/zcl/service/DubboService.java | ceed7dbebf0e7084bd1e240003e69f948a2089b9 | [] | no_license | zhaochanglin/springboot-dubbo | https://github.com/zhaochanglin/springboot-dubbo | 06670e5589b1b404d1bdba806a2daee0d8767e9a | f7350c35289b903be9a31d95914b4d1f0fcd88d3 | refs/heads/master | 2020-08-06T17:46:26.069000 | 2019-10-06T02:39:07 | 2019-10-06T02:39:07 | 213,097,170 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.zcl.service;
/**
* @Author Administrator
* @Date 2019/10/6 8:34
* DubboService
* @Version 1.0
**/
public interface DubboService {
public String helloDubbo(String name);
}
| UTF-8 | Java | 203 | java | DubboService.java | Java | [
{
"context": "package cn.zcl.service;\r\n\r\n/**\r\n * @Author Administrator\r\n * @Date 2019/10/6 8:34\r\n * DubboService\r\n * @Ve",
"end": 56,
"score": 0.9887890219688416,
"start": 43,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package cn.zcl.service;
/**
* @Author Administrator
* @Date 2019/10/6 8:34
* DubboService
* @Version 1.0
**/
public interface DubboService {
public String helloDubbo(String name);
}
| 203 | 0.650246 | 0.591133 | 11 | 16.454546 | 12.992051 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.181818 | false | false | 0 |
89d0267254cd0c8f024114ad7681653d77db5ff0 | 2,911,987,830,017 | 616e49941944824d6155f5f1256471467668a10e | /src/main/java/com/alexaExamples/AlexaUiResponse.java | 7c3afc26691f06885d67bccaf893b24cf8bd4480 | [] | no_license | RedbeardTheNinja/SimpleAlexaJavaLambda | https://github.com/RedbeardTheNinja/SimpleAlexaJavaLambda | d32bfddfa385904b4eedeb3898e49cb6af36f2b2 | e923e2249c1d791be3d07d1172750ed7b5ba7f2b | refs/heads/master | 2021-01-11T06:08:58.483000 | 2015-08-12T04:48:46 | 2015-08-12T04:48:46 | 40,580,156 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.alexaExamples;
//TODO get lombok working correctly in maven
public final class AlexaUiResponse {
private OutputSpeech outputSpeech;
private Card card;
private Reprompt reprompt;
private boolean shouldEndSession = true;
@java.beans.ConstructorProperties({"outputSpeech", "card", "repromp... | UTF-8 | Java | 3,128 | java | AlexaUiResponse.java | Java | [] | null | [] | package com.alexaExamples;
//TODO get lombok working correctly in maven
public final class AlexaUiResponse {
private OutputSpeech outputSpeech;
private Card card;
private Reprompt reprompt;
private boolean shouldEndSession = true;
@java.beans.ConstructorProperties({"outputSpeech", "card", "repromp... | 3,128 | 0.649936 | 0.646739 | 87 | 34.954021 | 33.750916 | 199 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.586207 | false | false | 0 |
08868847bb722a3fec25f7756e37995b19a4ea96 | 2,911,987,827,567 | ae2f39269b3bc7df1981ba21a58027c540763f4a | /spring-pageable/src/main/java/com/pageable/springpageable/entity/Bank.java | f589d69b510fc5e6ef017ce856124dcc4f5765ef | [] | no_license | dickanirwansyah/spring-boot-course | https://github.com/dickanirwansyah/spring-boot-course | 50599fea1302476ddd7404616420b9853842cbf8 | c496b89632226124360fb5064d3384e9ba893229 | refs/heads/master | 2023-04-27T04:46:42.645000 | 2020-05-11T11:28:52 | 2020-05-11T11:28:52 | 228,291,205 | 0 | 1 | null | false | 2023-04-14T17:54:55 | 2019-12-16T03:00:50 | 2020-05-11T11:29:41 | 2023-04-14T17:54:54 | 247 | 0 | 1 | 4 | Java | false | false | package com.pageable.springpageable.entity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import javax.persistence.*;
import java.io.Serializable;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Table(name = "bank")
@Entity
public class Bank impl... | UTF-8 | Java | 874 | java | Bank.java | Java | [] | null | [] | package com.pageable.springpageable.entity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import javax.persistence.*;
import java.io.Serializable;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Table(name = "bank")
@Entity
public class Bank impl... | 874 | 0.717391 | 0.717391 | 39 | 21.410257 | 18.070684 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.461538 | false | false | 0 |
a951a5302d3e6e6911d29fa2339e751c1da7578c | 29,042,568,895,757 | d93904bb6ed8248a8e5aac57c3d3b4da8726fabd | /src/_getRandom.java | 937f04f4ba546f1b7b442ac42505962ef1e2c2f1 | [] | no_license | qinjunu/leedcode | https://github.com/qinjunu/leedcode | 2dad04ed601c0175d3ac4ed3d900348f53c08132 | 9edf878277a0ac937feb856492aa84e87cc12446 | refs/heads/master | 2022-11-24T09:07:15.387000 | 2020-08-02T11:57:03 | 2020-08-02T11:57:03 | 283,409,606 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Random;
public class _getRandom {
public int getRandom(ListNode head) {
Random rand = new Random();
ListNode p = head;
int i = 0;
int ans = 0;
while(p != null) {
// [0, i): 1 / i
if(rand.nextInt(++i) == 0) {
ans = p.val;
}
p = p.next;
}
r... | GB18030 | Java | 825 | java | _getRandom.java | Java | [] | null | [] | import java.util.Random;
public class _getRandom {
public int getRandom(ListNode head) {
Random rand = new Random();
ListNode p = head;
int i = 0;
int ans = 0;
while(p != null) {
// [0, i): 1 / i
if(rand.nextInt(++i) == 0) {
ans = p.val;
}
p = p.next;
}
r... | 825 | 0.453384 | 0.445722 | 51 | 13.352942 | 11.519504 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.45098 | false | false | 0 |
567c0f585c9439c5d5000bb5e219ec4666f2b4b4 | 24,867,860,674,963 | 35826be5b60665e3774fe7409fe213b067137cfb | /Git/src/main/java/me/heldplayer/irc/git/internal/security/rules/RequireNone.java | 31249409dc536a0b1c56e63d79dfedbebf5e47f5 | [] | no_license | heldplayer/GitIRC | https://github.com/heldplayer/GitIRC | 7c60902d008fbaa4f7c8130859d67aa1e9383201 | 94cd9d9957ea19975ff4ab36d5f297e76d444e21 | refs/heads/master | 2016-09-05T20:58:48.267000 | 2014-07-26T08:53:38 | 2014-07-26T08:53:38 | 3,891,916 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package me.heldplayer.irc.git.internal.security.rules;
import me.heldplayer.irc.git.RequestSource;
import me.heldplayer.irc.git.internal.security.AccessManager;
import me.heldplayer.util.json.JSONArray;
import me.heldplayer.util.json.JSONObject;
import java.util.ArrayList;
public class RequireNone implements Rule {
... | UTF-8 | Java | 910 | java | RequireNone.java | Java | [] | null | [] | package me.heldplayer.irc.git.internal.security.rules;
import me.heldplayer.irc.git.RequestSource;
import me.heldplayer.irc.git.internal.security.AccessManager;
import me.heldplayer.util.json.JSONArray;
import me.heldplayer.util.json.JSONObject;
import java.util.ArrayList;
public class RequireNone implements Rule {
... | 910 | 0.642857 | 0.641758 | 33 | 26.575758 | 21.207533 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 0 |
56f51c2ef4b8fcf96aa02ac5816a6ddef3e548a7 | 23,476,291,283,928 | faf3a1ee168fedcd6b3a4a3d7dee75fc6a03f6e1 | /app/src/main/java/com/popdq/app/AZGalleryActivity.java | 12110562872334c1b80e8cb7dedd8d075af82435 | [] | no_license | curest0x1021/PopDQ-Android | https://github.com/curest0x1021/PopDQ-Android | bb8a1aeeba322d3723c589b0015ae3b49b718bbf | 112f04e3871830a30ce007fd9ada828e81ea799f | refs/heads/master | 2020-05-18T19:59:37.175000 | 2017-02-14T12:11:03 | 2017-02-14T12:11:03 | 184,621,088 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.popdq.app;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.MediaStore;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.M... | UTF-8 | Java | 8,470 | java | AZGalleryActivity.java | Java | [] | null | [] | package com.popdq.app;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.MediaStore;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.M... | 8,470 | 0.594215 | 0.592208 | 258 | 31.829458 | 25.39353 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.593023 | false | false | 0 |
00d29e1a882a8a0c37bf73aefe4d753651daa7e9 | 20,607,253,115,518 | fa2d04e6a221437acc99b860f7565d21b0f3f456 | /src/_168_Excel_Sheet_Column_Title.java | 7e7d25f68eb0cc187ca529f1a2a56fe99a508d83 | [] | no_license | ravireddy76/Algorithm | https://github.com/ravireddy76/Algorithm | 9f010caa9f6389f6658b73a2f593b7b61a368814 | 7531301fc2e8ac6983e1ec9b4b6e815d71b5ccda | refs/heads/master | 2021-09-10T20:01:01.379000 | 2018-04-01T06:10:02 | 2018-04-01T06:10:02 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
* Given a positive integer, return its corresponding column title as appear in an Excel sheet.
*
* For example:
*
* 1 -> A
* 2 -> B
* 3 -> C
* ...
* 26 -> Z
* 27 -> AA
* 28 -> AB
* Credits:
* Special thanks to @ifanchu for adding this problem and creatin... | UTF-8 | Java | 864 | java | _168_Excel_Sheet_Column_Title.java | Java | [
{
"context": "* 28 -> AB \r\n * Credits:\r\n * Special thanks to @ifanchu for adding this problem and creating all test cas",
"end": 284,
"score": 0.9997014999389648,
"start": 276,
"tag": "USERNAME",
"value": "@ifanchu"
},
{
"context": "s problem and creating all test cases.\r\n ... | null | [] | /**
*
* Given a positive integer, return its corresponding column title as appear in an Excel sheet.
*
* For example:
*
* 1 -> A
* 2 -> B
* 3 -> C
* ...
* 26 -> Z
* 27 -> AA
* 28 -> AB
* Credits:
* Special thanks to @ifanchu for adding this problem and creatin... | 864 | 0.466435 | 0.440972 | 41 | 19.073172 | 20.477697 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.463415 | false | false | 0 |
395e4922f7075b5970dd22642f5f60e6fce86eda | 13,572,096,722,403 | b9c0ef64fca92fe4a2c8b6b97345b5610f684a55 | /app/src/main/java/com/example/rog/myapplication/presenter/UserPresenter.java | ca4c3930ce13da49f60c894b5d3be3851f16c393 | [] | no_license | WorldSorry/AAA | https://github.com/WorldSorry/AAA | 280b5446fa14d4fcce5b1bf6aa23080114f76d32 | ea5bf3d02a507c8e753e0ffd3e075c5b7002712e | refs/heads/master | 2021-01-19T01:41:14.570000 | 2017-03-11T11:55:19 | 2017-03-11T11:55:19 | 84,300,242 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.rog.myapplication.presenter;
/**
* Created by ROG on 2017/3/4.
*/
public class UserPresenter {
}
| UTF-8 | Java | 122 | java | UserPresenter.java | Java | [
{
"context": "le.rog.myapplication.presenter;\n\n/**\n * Created by ROG on 2017/3/4.\n */\n\npublic class UserPresenter {\n\n}",
"end": 71,
"score": 0.9992294311523438,
"start": 68,
"tag": "USERNAME",
"value": "ROG"
}
] | null | [] | package com.example.rog.myapplication.presenter;
/**
* Created by ROG on 2017/3/4.
*/
public class UserPresenter {
}
| 122 | 0.704918 | 0.655738 | 9 | 12.555555 | 16.958191 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.111111 | false | false | 0 |
2cbbbff49a2d3a82a4c168d29168f1631f47d3ce | 12,799,002,597,874 | 766b93d6d77fc68f9f353023c799b2e72c204489 | /src/domainless/xkilloverscroll/KillOverscrollMod.java | 18a3c93118613bd632e3b09367285a988ffe8eaa | [] | no_license | mukel/XKillOverscroll | https://github.com/mukel/XKillOverscroll | 1437b1ace6f2f65be601c80a10b6f75879eb9cc3 | 44e8f8c926abb9a13029bd7e28fdd12db018dc4e | refs/heads/master | 2020-05-16T08:30:46.073000 | 2013-10-16T00:38:40 | 2013-10-16T00:38:40 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package domainless.xkilloverscroll;
import android.widget.AbsListView;
import de.robv.android.xposed.IXposedHookZygoteInit;
import de.robv.android.xposed.XC_MethodHook;
import de.robv.android.xposed.XposedBridge;
import de.robv.android.xposed.XposedHelpers;
public class KillOverscrollMod implements IXposedHookZygoteI... | UTF-8 | Java | 754 | java | KillOverscrollMod.java | Java | [] | null | [] | package domainless.xkilloverscroll;
import android.widget.AbsListView;
import de.robv.android.xposed.IXposedHookZygoteInit;
import de.robv.android.xposed.XC_MethodHook;
import de.robv.android.xposed.XposedBridge;
import de.robv.android.xposed.XposedHelpers;
public class KillOverscrollMod implements IXposedHookZygoteI... | 754 | 0.806366 | 0.803714 | 20 | 36.700001 | 29.841413 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2 | false | false | 0 |
a633fda903d905a9066647107ac84b0203debdac | 21,380,347,268,691 | a6e973dbb3d0557d4164dd55c895ac76f562d3b3 | /src/main/java/bd/ac/buet/TopicsModeling/models/PostTags.java | 550095e82cd3bd5e278b0e31f9330b8b023e1ce9 | [] | no_license | monjurmorshed793/TopicsModelingReactor | https://github.com/monjurmorshed793/TopicsModelingReactor | 4d5d3bce9cb937d4f2210c2c189835bd44cb17c3 | 45a7107393352d1b0e14788833f5908a268d10e8 | refs/heads/main | 2023-05-07T04:20:06.708000 | 2021-06-03T17:52:19 | 2021-06-03T17:52:19 | 373,595,573 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package bd.ac.buet.TopicsModeling.models;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.data.annotation.Id;
import org.springframework.data.relational.core.mapping.Column;
import org.springframework.data.relational.core.mapping.... | UTF-8 | Java | 566 | java | PostTags.java | Java | [] | null | [] | package bd.ac.buet.TopicsModeling.models;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.data.annotation.Id;
import org.springframework.data.relational.core.mapping.Column;
import org.springframework.data.relational.core.mapping.... | 566 | 0.768551 | 0.768551 | 24 | 22.583334 | 16.633091 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.458333 | false | false | 0 |
d2622b5e102062ae8fc5629c057a31b41def8f9f | 9,294,309,284,072 | 48d67140a422b9186992f1c7980282b638bd331c | /trunk/core/src/main/java/com/zjnan/app/model/BaseObject.java | ae66e578bd48fc1f5da7ef31792232cc1a02ee63 | [] | no_license | BGCX261/zjnan-svn-to-git | https://github.com/BGCX261/zjnan-svn-to-git | bde0fd1d8c759a4b2e7a3720a9d83e837a920db0 | 95fa782346493bfcabb8b54dd95507e209a91097 | refs/heads/master | 2020-05-17T13:27:57.354000 | 2015-08-25T15:32:49 | 2015-08-25T15:32:49 | 41,502,328 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zjnan.app.model;
import java.io.Serializable;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuil... | UTF-8 | Java | 1,828 | java | BaseObject.java | Java | [
{
"context": "() and hashCode().\n * \n * @author <a href=\"mailto:matt@raibledesigns.com\">Matt Raible</a>\n */\n@MappedSuperclass\npublic abs",
"end": 554,
"score": 0.9999287724494934,
"start": 532,
"tag": "EMAIL",
"value": "matt@raibledesigns.com"
},
{
"context": "* @author <a hre... | null | [] | package com.zjnan.app.model;
import java.io.Serializable;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuil... | 1,808 | 0.601751 | 0.601751 | 81 | 21.567902 | 20.200806 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.283951 | false | false | 0 |
77664c4d0960ceff99d48322a074cfa4d69fde1a | 4,612,794,934,927 | 4ce4ba657c3a1a832ab7407ade6692be51259e4e | /example/javaexmaple/src/net/ProtocolTester.java | 4fbd1537431b3f8c7ae3fcd89e162f3b054506db | [] | no_license | ninepillars/trunk | https://github.com/ninepillars/trunk | 0efe0d30a17ee5db939a1e44aedc1fd72ab681d6 | 41378b7d9ab6d12b5bccbf248df4330dbd1296c8 | refs/heads/master | 2020-12-28T23:04:52.570000 | 2015-05-25T06:50:12 | 2015-05-25T06:50:12 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net;
import java.net.MalformedURLException;
import java.net.URL;
public class ProtocolTester {
public static void main(String[] args) {
testProtocol("http://www.adc.org");// 超文本传输协议http
testProtocol("https://www.amazon.com/exec/obidos/order2/"); // 安全http
testProtocol("ftp... | UTF-8 | Java | 1,794 | java | ProtocolTester.java | Java | [
{
"context": "avafag/\");// 文件传输协议\r\n testProtocol(\"mailto:elharo@metalab.unc.edu\");// 简单邮件传输协议\r\n testProtocol(\"telnet://dib",
"end": 432,
"score": 0.9999316930770874,
"start": 410,
"tag": "EMAIL",
"value": "elharo@metalab.unc.edu"
}
] | null | [] | package net;
import java.net.MalformedURLException;
import java.net.URL;
public class ProtocolTester {
public static void main(String[] args) {
testProtocol("http://www.adc.org");// 超文本传输协议http
testProtocol("https://www.amazon.com/exec/obidos/order2/"); // 安全http
testProtocol("ftp... | 1,779 | 0.626643 | 0.620669 | 36 | 44.5 | 32.306259 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.694444 | false | false | 0 |
dc1cf18f8035ef65ab56b85aad7027b6d1baa04b | 20,804,821,642,686 | e35a48c6b76dba39a0c55adfb3b6d8885a454428 | /ShutaoDemo/src/main/java/shutao/io/nio/NioClient.java | 44801611cc63241ca7512f600c90b70838d27487 | [] | no_license | shenshutao/java | https://github.com/shenshutao/java | 29c0d714c21423fbcc245650a7f501e848d169e8 | 073db24b2557ce420dcfa4dbe5ea6340dc888d59 | refs/heads/master | 2021-01-20T00:47:51.899000 | 2018-06-28T07:53:49 | 2018-06-28T07:53:49 | 89,190,948 | 0 | 0 | null | false | 2017-07-17T08:09:33 | 2017-04-24T02:48:08 | 2017-06-09T04:04:42 | 2017-07-17T08:09:33 | 86 | 0 | 0 | 0 | Java | null | null | package shutao.io.nio;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.SocketChannel;
import java.util.Iterator;
import java.util.Scanner;
import java.util.Set;
public class Ni... | UTF-8 | Java | 2,373 | java | NioClient.java | Java | [] | null | [] | package shutao.io.nio;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.SocketChannel;
import java.util.Iterator;
import java.util.Scanner;
import java.util.Set;
public class Ni... | 2,373 | 0.683102 | 0.67678 | 95 | 23.978947 | 19.752138 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.621053 | false | false | 0 |
161a6258ce102105d47eebd45b23ca61de4296e0 | 13,529,147,034,745 | f10001f42c62da8c6c1b5043b95af200216e33ea | /app/src/main/java/com/blackout/paidupdater/News/NewsAdapter.java | dbf98227539864f05424c821bf7bfbf5e5e594ae | [] | no_license | MSF-Jarvis/TeamBlackOut | https://github.com/MSF-Jarvis/TeamBlackOut | 9fef558724f598d6ad17af3b96af628d7da7598f | d7656ea3130b3d2b9e5d00060deb370ffee1f1d6 | refs/heads/master | 2017-02-23T15:18:24.859000 | 2017-01-30T08:19:36 | 2017-01-30T08:19:36 | 80,403,982 | 0 | 0 | null | true | 2017-01-30T08:19:42 | 2017-01-30T08:19:42 | 2017-01-19T02:40:33 | 2016-06-21T21:55:14 | 8,626 | 0 | 0 | 0 | null | null | null | package com.blackout.paidupdater.News;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import com.blackout.paidupdater.R;
import java.util.Arra... | UTF-8 | Java | 1,610 | java | NewsAdapter.java | Java | [] | null | [] | package com.blackout.paidupdater.News;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import com.blackout.paidupdater.R;
import java.util.Arra... | 1,610 | 0.654037 | 0.654037 | 61 | 25.409836 | 23.56044 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.639344 | false | false | 0 |
4c94c4867a3767344a71f7bccc7034e83c2b9114 | 1,013,612,330,589 | 9f1f0a06e6e6eefd4173eb4031b69b8b949f56e1 | /project/src/main/java/com/esiea/tetris/model/concrete/console/command/HighScoresCommand.java | 2620dbb297718f832749aa9eaa725a6d27863db5 | [] | no_license | b2800/tmpl | https://github.com/b2800/tmpl | 07823c03d0e4666f961591f5ec6d5e14536cfa66 | 514dd64881d9dfc20d87e2b47ed1369ab30ab10d | refs/heads/master | 2021-01-10T14:03:36.598000 | 2016-04-14T17:38:10 | 2016-04-14T17:38:10 | 53,425,819 | 0 | 0 | null | false | 2016-03-22T13:14:18 | 2016-03-08T16:06:22 | 2016-03-14T13:33:50 | 2016-03-22T13:14:18 | 53 | 0 | 0 | 11 | Java | null | null | package com.esiea.tetris.model.concrete.console.command;
import com.esiea.tetris.utils.ScoreUtil;
public class HighScoresCommand implements Command{
@Override
public String execute(String[] args) {
StringBuilder builder = new StringBuilder();
builder.append("Meilleurs scores : \n");
f... | UTF-8 | Java | 579 | java | HighScoresCommand.java | Java | [] | null | [] | package com.esiea.tetris.model.concrete.console.command;
import com.esiea.tetris.utils.ScoreUtil;
public class HighScoresCommand implements Command{
@Override
public String execute(String[] args) {
StringBuilder builder = new StringBuilder();
builder.append("Meilleurs scores : \n");
f... | 579 | 0.637306 | 0.637306 | 22 | 25.318182 | 20.607559 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 0 |
20e343df547ec5c3e093637efaf004d636cd1f70 | 19,318,762,898,363 | 1d32cf7ea464c30d6a6e35e1f21659d0e07bd482 | /src/main/java/com/cris/Servicio/DataBaseServices.java | 535aafa5b3096ee00472b58dc77d5c68be19e588 | [] | no_license | CristianGuillen/P3WEB | https://github.com/CristianGuillen/P3WEB | ba57b7add5d8ab238af340b6f632515d6dd2b866 | 069d4a76ac99dff62a57254d37617aa50d1b3d0f | refs/heads/master | 2020-09-21T17:44:58.277000 | 2019-11-29T14:41:33 | 2019-11-29T14:41:33 | 224,870,994 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cris.Servicio;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
public class DataBaseServices {
private static DataBaseServices blogDBInstancia;
private String URL = "jdbc:h2:~/Blog";
pri... | UTF-8 | Java | 1,309 | java | DataBaseServices.java | Java | [] | null | [] | package com.cris.Servicio;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
public class DataBaseServices {
private static DataBaseServices blogDBInstancia;
private String URL = "jdbc:h2:~/Blog";
pri... | 1,309 | 0.616501 | 0.614973 | 52 | 24.173077 | 21.785423 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.480769 | false | false | 0 |
081e739aa81900631945cb7b451c49aaa1013c1e | 29,463,475,697,676 | 8522d5e93fe8677b8d52bb29ab4d2e8332de817a | /api/generated-src/java/com/luckygames/wmxz/gamemaster/dao/PropFlowEntityExample.java | c6919d9f9f21318921fcdf8632d6266b6ef3304b | [] | no_license | aping-fo/gm | https://github.com/aping-fo/gm | 1f0b7195069bc13fa324df5f9c42901811f9e3e8 | 5a8e54a782481d27f812da08229e847f6b5da7df | refs/heads/master | 2020-03-22T12:27:30.982000 | 2018-07-07T00:46:53 | 2018-07-07T00:46:53 | 140,041,429 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.luckygames.wmxz.gamemaster.dao;
import com.luckygames.wmxz.gamemaster.model.enums.Status;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class PropFlowEntityExample {
protected String orderByClause;
protected boolean distinct;
pr... | UTF-8 | Java | 43,284 | java | PropFlowEntityExample.java | Java | [] | null | [] | package com.luckygames.wmxz.gamemaster.dao;
import com.luckygames.wmxz.gamemaster.model.enums.Status;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class PropFlowEntityExample {
protected String orderByClause;
protected boolean distinct;
pr... | 43,284 | 0.587284 | 0.583957 | 1,283 | 32.737335 | 27.313065 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.749026 | false | false | 0 |
e1f860ccf0e21d445229a0532d3ddcc2329bfa67 | 24,824,911,022,205 | bad52a3c6d54545923e7b57ed03e7aa17f2f735b | /src/Color.java | bb146611840de88e3a5b56dc03c8f37238c69df5 | [] | no_license | Agitik/labNumFive | https://github.com/Agitik/labNumFive | 8c07c2c40ebd6c04505fd528a5636582a676fb10 | 943bee5207ba4ad6b845fbacfa114187691f25e9 | refs/heads/master | 2022-04-24T11:16:25.706000 | 2020-04-27T17:30:49 | 2020-04-27T17:30:49 | 249,557,054 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Scanner;
/**
* Перечесление цветов.
* @author Дмитрий Толочек P3130
* @version 1.0 Before Check
* @see Person
*/
public enum Color {
RED,
BLACK,
BLUE,
YELLOW,
WHITE,
GREEN;
/**
* Основная функция задания цвета
* @param c - цвет
* @return Color
*/
... | UTF-8 | Java | 3,886 | java | Color.java | Java | [
{
"context": "l.Scanner;\n\n/**\n * Перечесление цветов.\n * @author Дмитрий Толочек P3130\n * @version 1.0 Before Check\n * @see Person",
"end": 81,
"score": 0.9998681545257568,
"start": 66,
"tag": "NAME",
"value": "Дмитрий Толочек"
},
{
"context": " * Перечесление цветов.\n * @auth... | null | [] | import java.util.Scanner;
/**
* Перечесление цветов.
* @author <NAME> P3130
* @version 1.0 Before Check
* @see Person
*/
public enum Color {
RED,
BLACK,
BLUE,
YELLOW,
WHITE,
GREEN;
/**
* Основная функция задания цвета
* @param c - цвет
* @return Color
*/
public... | 3,863 | 0.463689 | 0.46196 | 117 | 28.666666 | 20.916195 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.598291 | false | false | 0 |
a385063cb865611a968a4592b4e7c95a25bc9ce0 | 11,227,044,515,769 | 2ff610d47956d21e903e5942acbac04e009a6ba8 | /java/Spring/Dojo/src/main/java/com/codingdojo/dojo/repositories/DojoRepository.java | eba7c51e7d63b04d72aedd31e24e56e3789f8de2 | [] | no_license | SamFerr/coding-dojo-projects | https://github.com/SamFerr/coding-dojo-projects | 19d1f2f6850bd61186b448e648176e3f5cbdd168 | 95a39646ca57e5c1a12d3f33785052c9e44cfc48 | refs/heads/master | 2021-04-26T23:44:49.722000 | 2018-03-30T20:27:31 | 2018-03-30T20:27:31 | 123,848,521 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.codingdojo.dojo.repositories;
import java.util.List;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import com.codingdojo.dojo.mode... | UTF-8 | Java | 2,457 | java | DojoRepository.java | Java | [] | null | [] | package com.codingdojo.dojo.repositories;
import java.util.List;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import com.codingdojo.dojo.mode... | 2,457 | 0.736671 | 0.732194 | 76 | 31.328947 | 28.813551 | 154 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.197368 | false | false | 0 |
169111eabc1fc94fb3605823a68e7ab9748cec34 | 29,429,115,964,467 | bf46c838d1a41af499d2c927a6dc7a41ac6ef6f0 | /CarRentalManagementGUI/src/cz/muni/fi/pv168/RentsTableModel.java | e19acc5c3ecf4603d97292db76edadf367f294eb | [] | no_license | GeorgeKolcak/PV168-Projekt | https://github.com/GeorgeKolcak/PV168-Projekt | 231bdbef3722b60c6c96be2a547bd4206aa76731 | 7a1aa479f6b396d393f6ebf54a084e41ad8f5c3a | refs/heads/master | 2021-01-18T20:29:50.957000 | 2012-06-07T08:08:26 | 2012-06-07T08:08:26 | 4,287,174 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cz.muni.fi.pv168;
import java.sql.Date;
import java.util.*;
import javax.swing.table.AbstractTableModel;
public class RentsTableModel extends AbstractTableModel {
private List<Rent> rents = new ArrayList<>();
private ResourceBundle localization;
public List<Rent> getRents()
{
ret... | UTF-8 | Java | 4,180 | java | RentsTableModel.java | Java | [] | null | [] | package cz.muni.fi.pv168;
import java.sql.Date;
import java.util.*;
import javax.swing.table.AbstractTableModel;
public class RentsTableModel extends AbstractTableModel {
private List<Rent> rents = new ArrayList<>();
private ResourceBundle localization;
public List<Rent> getRents()
{
ret... | 4,180 | 0.52799 | 0.519617 | 152 | 26.5 | 21.048815 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.414474 | false | false | 0 |
33c75b50e683126a9f3b540376af7fbe03f8ba80 | 11,991,548,752,329 | cdf2e28fc4c9a78456cc93cb0c7ebe7ecf17709a | /.svn/pristine/33/33c75b50e683126a9f3b540376af7fbe03f8ba80.svn-base | fc50b6b4fe280c0ed32816a9e913d2b60d5ad42e | [] | no_license | xie-summer/basicPaltfrom | https://github.com/xie-summer/basicPaltfrom | ce9f4fe19d0188f03b084640998224e4dd74f9f9 | 9425c75560356aa9397189affd6d2a9fd89caf02 | refs/heads/master | 2021-06-16T04:05:13.957000 | 2017-05-11T02:20:27 | 2017-05-11T02:23:33 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kintiger.platform.sap.service;
import java.util.List;
/**
*
* @author xujiakun
*
*/
public interface ISAPService {
String RESULT_ERROR = "RFC操作失败!";
/**
* 根据当前用户的sap角色,更新sap临时帐号权限.
*
* @param passport
* @param roles
* @param loginId
* @param ip
* @return
* @throws SystemExceptio... | GB18030 | Java | 605 | 33c75b50e683126a9f3b540376af7fbe03f8ba80.svn-base | Java | [
{
"context": "rvice;\n\nimport java.util.List;\n\n/**\n * \n * @author xujiakun\n * \n */\npublic interface ISAPService {\n\n\tString R",
"end": 95,
"score": 0.9995756149291992,
"start": 87,
"tag": "USERNAME",
"value": "xujiakun"
}
] | null | [] | package com.kintiger.platform.sap.service;
import java.util.List;
/**
*
* @author xujiakun
*
*/
public interface ISAPService {
String RESULT_ERROR = "RFC操作失败!";
/**
* 根据当前用户的sap角色,更新sap临时帐号权限.
*
* @param passport
* @param roles
* @param loginId
* @param ip
* @return
* @throws SystemExceptio... | 605 | 0.666055 | 0.666055 | 34 | 15.029411 | 20.08143 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.794118 | false | false | 0 | |
be366578c49156a3410dcaa8058be8e6010fa40e | 31,568,009,681,045 | 0f45ab5632a31e8888bd1c8a393c496555a3269a | /app/src/main/java/com/dimelo/sampleapp/MainActivity.java | ee91eec9dcad8618a7c7cd58d2215a14058b34ea | [] | no_license | dimelo/Dimelo-Android-SampleApp | https://github.com/dimelo/Dimelo-Android-SampleApp | 294c4c8c120ed8ad143f97f2be7ad621f45253e0 | 7bff809723976e23d2e4ec237921165b6fcfd670 | refs/heads/master | 2020-05-29T11:47:48.545000 | 2020-01-20T09:56:57 | 2020-01-20T09:56:57 | 37,334,069 | 1 | 4 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dimelo.sampleapp;
import android.content.Context;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.Toast;
... | UTF-8 | Java | 6,035 | java | MainActivity.java | Java | [
{
"context": "imelo.setDebug(true);\n dimelo.setUserName(\"John Doe\");\n\n String refreshedToken = FirebaseInsta",
"end": 3953,
"score": 0.6900236010551453,
"start": 3945,
"tag": "NAME",
"value": "John Doe"
},
{
"context": "0123456789\");\n authInfo.put(\"Di... | null | [] | package com.dimelo.sampleapp;
import android.content.Context;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.Toast;
... | 6,038 | 0.638111 | 0.635294 | 155 | 37.909676 | 33.52079 | 181 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.619355 | false | false | 0 |
a3d3eda7fcd6ec47c52c4623f516811dd5be7f5c | 10,376,640,994,853 | 082c09005c40c587ee4bca23b9572794133006ae | /Sample Code Exhibit/J3 Infix Calculator/Calc.java | d211b4a3300feb72dbe2c295698e9b73a37f034b | [] | no_license | jamesrohan/Projects_SampleCode_Exhibit_For_Employers | https://github.com/jamesrohan/Projects_SampleCode_Exhibit_For_Employers | e381def4012f43fef72b84d98294591340c661f6 | bd1b5765ddcda3f6f130fd6f4d98cc81e739ebd2 | refs/heads/master | 2021-01-23T07:09:38.935000 | 2017-09-05T16:22:03 | 2017-09-05T16:22:03 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*James Rohan Gangavarapu
* Calc.java
* Objective: To take the user inputed infix expression and convert it to postfix.
*Algorithm: Varies through methods.
*Data Structure: We use primarily use stack and StringBuffer.
*Input/Output:Various methods and constructors have different input, output conditions. It is expla... | UTF-8 | Java | 10,065 | java | Calc.java | Java | [
{
"context": "/*James Rohan Gangavarapu\n* Calc.java\n* Objective: To take the user inputed",
"end": 25,
"score": 0.9998931884765625,
"start": 2,
"tag": "NAME",
"value": "James Rohan Gangavarapu"
}
] | null | [] | /*<NAME>
* Calc.java
* Objective: To take the user inputed infix expression and convert it to postfix.
*Algorithm: Varies through methods.
*Data Structure: We use primarily use stack and StringBuffer.
*Input/Output:Various methods and constructors have different input, output conditions. It is explained in
... | 10,048 | 0.511972 | 0.507501 | 271 | 36.140221 | 29.754883 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.490775 | false | false | 0 |
443be477e61ad560947931152d886bd7804972fb | 14,465,449,858,876 | 84bb01e494b03dad143c415a926a3dfc0c8f2fb1 | /app/src/main/java/com/example/idontcare/data/LoginViewModel.java | 22c23bd90083071bf52217f4c5e766e30c0ae4f8 | [] | no_license | NateA21/androidApp | https://github.com/NateA21/androidApp | 659afdd5e0df4f0f4eea59a96ca142146a1e2be0 | dd0a293491aef807a2e4f29b793932a568304e5f | refs/heads/master | 2021-02-26T10:11:45.948000 | 2020-05-06T22:56:06 | 2020-05-06T22:56:06 | 245,518,912 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.idontcare.data;
import android.app.Application;
import androidx.annotation.NonNull;
import androidx.lifecycle.AndroidViewModel;
import androidx.lifecycle.LiveData;
import com.example.idontcare.data.model.LoggedInUser;
import java.util.List;
public class LoginViewModel extends AndroidViewModel {... | UTF-8 | Java | 1,044 | java | LoginViewModel.java | Java | [] | null | [] | package com.example.idontcare.data;
import android.app.Application;
import androidx.annotation.NonNull;
import androidx.lifecycle.AndroidViewModel;
import androidx.lifecycle.LiveData;
import com.example.idontcare.data.model.LoggedInUser;
import java.util.List;
public class LoginViewModel extends AndroidViewModel {... | 1,044 | 0.73659 | 0.733716 | 41 | 24.463415 | 22.980476 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.487805 | false | false | 0 |
d028014dd31396861835b1f38d3477911a60e4a3 | 16,200,616,649,125 | b9ecd93fafb4738d12a1d72f46db4d32e528b8d9 | /Apps/Durbodax/tests/durbodax/commands/customer/UpdateCustomerAgeTest.java | f3b9c77b020fb303c31822dd55b8b11eab96b2b5 | [] | no_license | boyangwm/TestStereotype | https://github.com/boyangwm/TestStereotype | ce1e3690d8f935f8c70898f3920914bd73d93754 | b5ad9fd6fc4c3e4ebf36b0b48fbbef2f0d42d6f9 | refs/heads/master | 2021-03-27T19:15:19.846000 | 2018-03-20T01:30:06 | 2018-03-20T01:30:06 | 47,856,052 | 2 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package durbodax.commands.customer;
import durbodax.customers.CustomerData;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author Kirk Seddon
*/
public class UpdateCustomerAgeTest {
p... | UTF-8 | Java | 1,013 | java | UpdateCustomerAgeTest.java | Java | [
{
"context": "port static org.junit.Assert.*;\n\n/**\n *\n * @author Kirk Seddon\n */\npublic class UpdateCustomerAgeTest {\n\n pub",
"end": 272,
"score": 0.9998136162757874,
"start": 261,
"tag": "NAME",
"value": "Kirk Seddon"
}
] | null | [] | package durbodax.commands.customer;
import durbodax.customers.CustomerData;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author <NAME>
*/
public class UpdateCustomerAgeTest {
public... | 1,008 | 0.652517 | 0.646594 | 50 | 19.280001 | 19.702833 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.32 | false | false | 0 |
67ae47858150ea8f295638d13741c001f512e355 | 28,183,575,402,953 | a116eca1085d6026bbfe188a876e8ab118ac0af2 | /src/main/java/com/ue/townsystem/logic/impl/TownSystemException.java | e98ee781edf00a87f12ef4bddac58ce235912224 | [] | no_license | SlackaGaming/Ultimate_Economy | https://github.com/SlackaGaming/Ultimate_Economy | 251517db920abca968f5d2bbbaa0ffcb23322f91 | dac2d6fdebfe37d8edd800bc62a8f78f6a5d156a | refs/heads/master | 2023-04-01T11:45:29.105000 | 2020-10-26T18:46:31 | 2020-10-26T18:46:31 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ue.townsystem.logic.impl;
import com.ue.common.utils.MessageWrapper;
public class TownSystemException extends Exception {
private static final long serialVersionUID = 1L;
private final MessageWrapper messageWrapper;
private TownExceptionMessageEnum key;
private Object[] params;
/**
... | UTF-8 | Java | 994 | java | TownSystemException.java | Java | [] | null | [] | package com.ue.townsystem.logic.impl;
import com.ue.common.utils.MessageWrapper;
public class TownSystemException extends Exception {
private static final long serialVersionUID = 1L;
private final MessageWrapper messageWrapper;
private TownExceptionMessageEnum key;
private Object[] params;
/**
... | 994 | 0.682093 | 0.681087 | 47 | 19.148935 | 21.247257 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.319149 | false | false | 0 |
56032a73343458fa8d4740036f8264fb5a40ddb3 | 30,124,900,620,550 | 048ed0c5110e8318384316a3ec8a13798f4db22b | /src/edu/bath/soak/dhcp/model/DHCPServer.java | cf505ff1126fcd03ad9b8ce7a2aed032ab51a60b | [] | no_license | zootalures/soak-hosts-manager | https://github.com/zootalures/soak-hosts-manager | 359884c60441878e9fcaeebadae7a7815f2e4801 | ef7b362827f8d571ccdfed4da2e81fed926c81b8 | refs/heads/master | 2021-01-25T05:34:23.426000 | 2015-06-27T11:34:19 | 2015-06-27T11:34:19 | 32,139,451 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package edu.bath.soak.dhcp.model;
import java.io.Serializable;
import java.util.List;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.OrderBy;
@Entity
public cl... | UTF-8 | Java | 1,687 | java | DHCPServer.java | Java | [] | null | [] | package edu.bath.soak.dhcp.model;
import java.io.Serializable;
import java.util.List;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.OrderBy;
@Entity
public cl... | 1,687 | 0.693539 | 0.690575 | 79 | 20.354431 | 16.579718 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.683544 | false | false | 0 |
8fdd0901b9d630b87851f56dc384b6661dc66eb3 | 13,434,657,714,039 | 94470e1638c0f89be8818e3970dd87c4b4690f5a | /src/main/java/club/itbus/wechat/model/message/BaseMessage.java | 1dc36f57d3485f3cf26a23fe2a9c31a18c8cf59d | [] | no_license | jasonbourn/WeChat-1 | https://github.com/jasonbourn/WeChat-1 | 32f985abefbc54daa70935765889a748ef7d9126 | cec258e037de43b634b89828bae07c3d3ce2aeab | refs/heads/master | 2021-01-20T05:12:47.223000 | 2016-03-01T03:43:42 | 2016-03-01T03:43:42 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package club.itbus.wechat.model.message;
import lombok.Data;
import java.io.Serializable;
/**
* Desc:被动回复消息基类
* author:HeHaiYang
* Date:15/12/21
*/
@Data
public class BaseMessage implements Serializable{
private static final long serialVersionUID = 2309472159964099833L;
// 接收方帐号(收到的Open... | UTF-8 | Java | 582 | java | BaseMessage.java | Java | [
{
"context": "Serializable;\r\n\r\n/**\r\n * Desc:被动回复消息基类\r\n * author:HeHaiYang\r\n * Date:15/12/21\r\n */\r\n@Data\r\npublic class BaseM",
"end": 141,
"score": 0.9737067222595215,
"start": 132,
"tag": "NAME",
"value": "HeHaiYang"
}
] | null | [] | package club.itbus.wechat.model.message;
import lombok.Data;
import java.io.Serializable;
/**
* Desc:被动回复消息基类
* author:HeHaiYang
* Date:15/12/21
*/
@Data
public class BaseMessage implements Serializable{
private static final long serialVersionUID = 2309472159964099833L;
// 接收方帐号(收到的Open... | 582 | 0.667984 | 0.618577 | 26 | 17.461538 | 17.360943 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.307692 | false | false | 0 |
f71c2eba609fbd4f7f34d213b99f1629177be550 | 21,706,764,727,868 | 6f9432fd19fea9c7384626fd6a66a054c70c12dc | /src/main/java/com/macys/survey/model/QuestionsByExperience.java | 72d283e63b6db80f3370a3d11baa499e6b4ad0fc | [] | no_license | ppaia/SurveyBackend | https://github.com/ppaia/SurveyBackend | f1da34a4892f5d70cd4f38c720ee530106d256f1 | dc1aa19d8cda96d1c47fd1d2f45797b54076c5e4 | refs/heads/master | 2023-05-08T21:31:23.306000 | 2020-05-21T12:56:58 | 2020-05-21T12:56:58 | 261,726,795 | 0 | 0 | null | false | 2023-04-14T17:57:08 | 2020-05-06T10:33:52 | 2020-05-21T12:57:46 | 2023-04-14T17:57:07 | 484 | 0 | 0 | 1 | Java | false | false | package com.macys.survey.model;
import java.util.List;
public class QuestionsByExperience {
String expName;
List<Question> surveyQuiz;
public String getExpName() {
return expName;
}
public void setExpName(String expName) {
this.expName = expName;
}
public List<Question... | UTF-8 | Java | 479 | java | QuestionsByExperience.java | Java | [] | null | [] | package com.macys.survey.model;
import java.util.List;
public class QuestionsByExperience {
String expName;
List<Question> surveyQuiz;
public String getExpName() {
return expName;
}
public void setExpName(String expName) {
this.expName = expName;
}
public List<Question... | 479 | 0.653445 | 0.653445 | 26 | 17.423077 | 17.451412 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.307692 | false | false | 0 |
ca7b6d2905278bc4b7f0dd01df9700ec82240fc1 | 10,041,633,593,677 | 099b6e45945e6db4e7ef72417593457c827585c4 | /src/适配器模式/类适配器/IEx.java | f4a05120f79a4b4dd232a8205b5704fb6e317b39 | [] | no_license | zhangjianembedded/JavaDesignPatternDemo | https://github.com/zhangjianembedded/JavaDesignPatternDemo | 3a43964c926ac21eb674b8f01ab49e0945b935ac | a3f93b4bbabc81f01b7d45a74488eef0f1b1142b | refs/heads/master | 2021-01-10T01:45:26.538000 | 2016-01-26T15:46:20 | 2016-01-26T15:46:20 | 50,438,949 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package 适配器模式.类适配器;
public interface IEx {
void method1();
void method2();
}
| UTF-8 | Java | 99 | java | IEx.java | Java | [] | null | [] | package 适配器模式.类适配器;
public interface IEx {
void method1();
void method2();
}
| 99 | 0.691358 | 0.666667 | 7 | 10.571428 | 9.068897 | 22 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.714286 | false | false | 0 |
940c2ba0866f8794420509710814f43f52d59253 | 30,554,397,390,742 | a2df5416b97c608cc33daac0463c5c55991f71c7 | /src/main/java/com/example/performance/rest/PostRestController.java | c9c418d0b5f418eb4cd2ca54caf3979f21e88056 | [] | no_license | dizonn/java_performance_example | https://github.com/dizonn/java_performance_example | 12911a4e7a717fcfa28fe8b2f4e403b0a57f3d3e | 72b97911f55c20a2fa6f257e263378e2e9162d91 | refs/heads/master | 2023-04-20T09:02:42.643000 | 2021-04-29T10:49:08 | 2021-04-29T10:49:08 | 362,783,136 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.performance.rest;
import com.example.performance.domain.ex1.Post;
import com.example.performance.domain.ex1.PostDetails;
import com.example.performance.dto.PostDto;
import com.example.performance.repository.PostRepository;
import com.example.performance.service.PostService;
import lombok.RequiredAr... | UTF-8 | Java | 3,205 | java | PostRestController.java | Java | [] | null | [] | package com.example.performance.rest;
import com.example.performance.domain.ex1.Post;
import com.example.performance.domain.ex1.PostDetails;
import com.example.performance.dto.PostDto;
import com.example.performance.repository.PostRepository;
import com.example.performance.service.PostService;
import lombok.RequiredAr... | 3,205 | 0.730109 | 0.719813 | 106 | 29.226416 | 22.834633 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.339623 | false | false | 0 |
c14a86da6ad2d0a0e7b7d5f16e3bab5fb3b5573c | 35,485,019,804,290 | bce3a175dfd49995856eabedb5a51d1d3c1898b1 | /src/main/java/com/reactivetechnologies/hzdfs/core/DistributedFileSupportService.java | cb25debb541428e88dc0db5f3f3c7c03b5da5d85 | [] | no_license | javanotes/hzdfs | https://github.com/javanotes/hzdfs | 388dbcd225c1933039a26a762a20b4a3e93cfd36 | 58712ba716ee910ca93344a3b6d1fdbb09a1e278 | refs/heads/master | 2020-12-24T21:11:41.885000 | 2017-05-04T13:59:49 | 2017-05-04T13:59:49 | 56,148,751 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* ============================================================================
*
* FILE: DistributedFileSupportService.java
*
The MIT License (MIT)
Copyright (c) 2016 Sutanu Dalui
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "So... | UTF-8 | Java | 9,074 | java | DistributedFileSupportService.java | Java | [
{
"context": "e.java\n*\nThe MIT License (MIT)\n\nCopyright (c) 2016 Sutanu Dalui\n\nPermission is hereby granted, free of charge, to",
"end": 181,
"score": 0.9998881220817566,
"start": 169,
"tag": "NAME",
"value": "Sutanu Dalui"
}
] | null | [] | /* ============================================================================
*
* FILE: DistributedFileSupportService.java
*
The MIT License (MIT)
Copyright (c) 2016 <NAME>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software... | 9,068 | 0.702336 | 0.701234 | 286 | 30.727272 | 30.253054 | 140 | false | false | 0 | 0 | 0 | 0 | 77 | 0.016972 | 0.524476 | false | false | 0 |
0f6b80f983ee4617864ad98ac2a8b7c7f5f7ea1e | 24,395,414,298,833 | ea7c88e1f41d361b09f6cbc95d4199cdffbe9caf | /src/main/java/LinkedList/LinkedList/LinkMain.java | c6ca83b3b7ee21e2dd2f9760471e430dbd754d44 | [] | no_license | Aquibsarwar/MyLinkedList | https://github.com/Aquibsarwar/MyLinkedList | 26f906c45f87a59cef99b3a68c81a8b6311bbbb7 | d36db968303f480eb82123727381be50f1700c36 | refs/heads/master | 2021-07-14T19:35:07.796000 | 2019-10-18T06:52:42 | 2019-10-18T06:52:42 | 215,745,442 | 0 | 0 | null | false | 2020-10-13T16:48:04 | 2019-10-17T08:47:34 | 2019-10-18T06:52:57 | 2020-10-13T16:48:03 | 8 | 0 | 0 | 1 | Java | false | false | package LinkedList.LinkedList;
public class LinkMain {
public static void main(String[] args) {
LinkListPractice linklist= new LinkListPractice();
linklist.insert(1);
linklist.insert(2);
linklist.insert(3);
linklist.insert(4);
linklist.insert(1);
linklist.insert(2);
linklist.insert(3);
linklist.... | UTF-8 | Java | 600 | java | LinkMain.java | Java | [] | null | [] | package LinkedList.LinkedList;
public class LinkMain {
public static void main(String[] args) {
LinkListPractice linklist= new LinkListPractice();
linklist.insert(1);
linklist.insert(2);
linklist.insert(3);
linklist.insert(4);
linklist.insert(1);
linklist.insert(2);
linklist.insert(3);
linklist.... | 600 | 0.675 | 0.638333 | 36 | 15.666667 | 14.191155 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.194444 | false | false | 0 |
ba45791d382320d3fc03959898ffac06f2d1a562 | 15,796,889,783,897 | 24a6b3e6edb9505837a7ce4b021f512da5438d81 | /src/com/ly/util/DataUtil.java | f254c3b1d93aacff1e91334890d12723fd938648 | [] | no_license | lyssg/plc | https://github.com/lyssg/plc | fcca0eb22e33aa2586bab7cb47281fbc9fa17271 | 573f2b7d6d695330d03c5ac46716d236590024b4 | refs/heads/master | 2020-12-30T15:29:24.554000 | 2018-11-25T02:32:17 | 2018-11-25T02:32:17 | 91,143,413 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ly.util;
public class DataUtil {
}
| UTF-8 | Java | 54 | java | DataUtil.java | Java | [] | null | [] | package com.ly.util;
public class DataUtil {
}
| 54 | 0.648148 | 0.648148 | 5 | 8.8 | 10.419213 | 23 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 0 |
c2442223674f008ab6e49a3de7f75c4b11affdf1 | 13,151,189,881,396 | 88d45ec1bb156b8d8aae0152c9883b127443304d | /src/main/java/com/postcode/au/api/controller/PostCodeController.java | 02b0a918d5329aefd82a2ce88e3507cda085f268 | [] | no_license | sharathnaagrea/PostCodeAPI-microservice | https://github.com/sharathnaagrea/PostCodeAPI-microservice | 4113a9cc03c6b47b937a3bbe63eb3bc08576245b | 30402163feb52db2afa1d9abae33f6804e126424 | refs/heads/main | 2023-07-17T22:01:59.007000 | 2021-09-02T13:24:37 | 2021-09-02T13:24:37 | 402,425,351 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.postcode.au.api.controller;
import java.util.List;
import javax.validation.Valid;
import javax.validation.constraints.Pattern;
import com.postcode.au.api.entity.PostCodeRecord;
import com.postcode.au.api.entity.SearchResult;
import com.postcode.au.api.exception.AuthenticationException;
import c... | UTF-8 | Java | 4,859 | java | PostCodeController.java | Java | [] | null | [] | package com.postcode.au.api.controller;
import java.util.List;
import javax.validation.Valid;
import javax.validation.constraints.Pattern;
import com.postcode.au.api.entity.PostCodeRecord;
import com.postcode.au.api.entity.SearchResult;
import com.postcode.au.api.exception.AuthenticationException;
import c... | 4,859 | 0.714345 | 0.712698 | 128 | 35.960938 | 31.213329 | 143 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 0 |
1f8b170165fb0d710ce2ee00f586f0069c8a2e9a | 13,280,038,920,320 | f0ee6711d2c67f90c69aaabc1b6f96c1da1f1af1 | /main/java/com/qm/sys/service/impl/RoleServiceImpl.java | 5e508f4d15c70fbb7e877d63f53a02515c0ce305 | [] | no_license | Ezreadl/webapp | https://github.com/Ezreadl/webapp | 3c910c0da282a1174113c49e5000a0652e00e378 | d94c3b92a0942716287d7d2f376a1f3cfdf528ab | refs/heads/master | 2021-01-24T11:35:51.169000 | 2018-02-28T10:06:31 | 2018-02-28T10:06:31 | 123,090,301 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.qm.sys.service.impl;
import java.util.Date;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.qm.core.base.GridListData;
import com.qm.core.base.PageInfo;
import com.qm.core.util.DataListUtil;
import com.qm.core... | UTF-8 | Java | 2,633 | java | RoleServiceImpl.java | Java | [
{
"context": "\n\t\tint oid = role.getOid();\n\t\trole.setOptUserName(optUserName);\n\t\trole.setOptDateTime(optDateTime); \n\t\tSysRole ",
"end": 1804,
"score": 0.9948292970657349,
"start": 1793,
"tag": "USERNAME",
"value": "optUserName"
},
{
"context": "tAddDateTime(optDateTime);\n... | null | [] | package com.qm.sys.service.impl;
import java.util.Date;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.qm.core.base.GridListData;
import com.qm.core.base.PageInfo;
import com.qm.core.util.DataListUtil;
import com.qm.core... | 2,633 | 0.740911 | 0.73938 | 98 | 25.663265 | 20.999487 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.928571 | false | false | 0 |
5a29ce8663e35ecc2880011053275590e397fed4 | 20,280,835,590,390 | b76f1a03b88d793787c179dc269be8b3f30243d1 | /src/othello/backend/OthelloGameFacade.java | 299c84dc5a3592bbd1d57c39ee9eb82914e3c91a | [
"Unlicense"
] | permissive | Grupp2/GameBoard-API-Games | https://github.com/Grupp2/GameBoard-API-Games | 0694b958459001a5cc04bf84c273bdd2b7bc97e5 | 534b301d8381cacc9d8a67448f87a2e3aa4a9f6a | refs/heads/master | 2020-05-18T06:46:23.420000 | 2014-05-30T08:54:59 | 2014-05-30T08:54:59 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package othello.backend;
import game.api.GameState;
import game.impl.Board;
import game.impl.DieRollFactory;
import game.impl.Move;
import game.impl.Player;
import java.util.List;
public class OthelloGameFacade implements GameState{
private State state;
private GameActionsHandler gameActionsHandler;
pu... | UTF-8 | Java | 1,935 | java | OthelloGameFacade.java | Java | [] | null | [] | package othello.backend;
import game.api.GameState;
import game.impl.Board;
import game.impl.DieRollFactory;
import game.impl.Move;
import game.impl.Player;
import java.util.List;
public class OthelloGameFacade implements GameState{
private State state;
private GameActionsHandler gameActionsHandler;
pu... | 1,935 | 0.64031 | 0.639793 | 90 | 20.5 | 18.683475 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.322222 | false | false | 0 |
dd39a11497ede7a33ad6a4b1fc2d2bdaff0e8383 | 20,280,835,592,718 | da0fa3c9a7c36cae03f9948b806c282a5022920d | /src/main/java/br/gov/pr/guaira/portalturistico/repository/helper/TiposGastronomiasQueries.java | a468e2a7f7c72b58f64f63b8e6718ffeb7aec579 | [] | no_license | xhgrid/portalturistico | https://github.com/xhgrid/portalturistico | deb86e0b8a5f8ff7f3c73de955eee6405694743e | 363f8cf869a12f25c09c11449800f91d3a150ebf | refs/heads/master | 2022-11-12T18:19:58.924000 | 2020-07-09T20:28:59 | 2020-07-09T20:28:59 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.gov.pr.guaira.portalturistico.repository.helper;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import br.gov.pr.guaira.portalturistico.model.Hospedagem;
import br.gov.pr.guaira.portalturistico.repository.filter.TipoGastronomiaFilter;
public interface TiposGa... | UTF-8 | Java | 441 | java | TiposGastronomiasQueries.java | Java | [] | null | [] | package br.gov.pr.guaira.portalturistico.repository.helper;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import br.gov.pr.guaira.portalturistico.model.Hospedagem;
import br.gov.pr.guaira.portalturistico.repository.filter.TipoGastronomiaFilter;
public interface TiposGa... | 441 | 0.85034 | 0.85034 | 12 | 35.75 | 33.28194 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 0 |
f0321f4231f24786c0d2ce50e790e1a7d1d09a0a | 35,502,199,673,264 | 74df36761ea5bad388ee8b346f2a0e7ad9b98392 | /XiaoMiProject_SSM/src/main/java/com/two/service/ShopVersionServiceInter.java | 649859c7c92c871f2d389b8418dc67a994a52ec7 | [] | no_license | haobin404/NewProject | https://github.com/haobin404/NewProject | f50f0e896c2499cb8460e9a064b37f9bb0aba365 | be235c3e47fb3c99edc3f73d71ea96f6ab4be814 | refs/heads/master | 2022-12-25T19:53:27.730000 | 2020-01-12T09:26:45 | 2020-01-12T09:26:45 | 163,242,894 | 0 | 2 | null | false | 2022-12-16T10:32:05 | 2018-12-27T03:30:35 | 2020-01-12T09:26:47 | 2022-12-16T10:32:01 | 3,616 | 0 | 2 | 14 | HTML | false | false | package com.two.service;
import java.util.List;
import com.two.bean.ShopVersionBean;
public interface ShopVersionServiceInter {
abstract List<ShopVersionBean> getShopVersionId(int id);
}
| UTF-8 | Java | 203 | java | ShopVersionServiceInter.java | Java | [] | null | [] | package com.two.service;
import java.util.List;
import com.two.bean.ShopVersionBean;
public interface ShopVersionServiceInter {
abstract List<ShopVersionBean> getShopVersionId(int id);
}
| 203 | 0.763547 | 0.763547 | 9 | 20.555555 | 20.865234 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 0 |
13134e5a2cf5f4c711c23f9b728229fdabebcfb8 | 31,653,909,009,601 | cc612955bab98b9d08a2d6076c4e500fafd95b3d | /Lucky/lucky-boot/src/main/java/com/lucky/boot/startup/LuckyApplication.java | b824e0e716d0da811e3a93dd53c535808a515356 | [] | no_license | yuanqi99/lucky | https://github.com/yuanqi99/lucky | 5e4174eee129f2d26c54e356f301c8e315d09cd6 | 7d9ab0e660df5a86051c2bedbd46eab94dae24a2 | refs/heads/main | 2023-06-06T00:42:34.223000 | 2021-06-20T10:16:39 | 2021-06-20T10:16:39 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lucky.boot.startup;
import com.lucky.framework.AutoScanApplicationContext;
import com.lucky.framework.container.Module;
import com.lucky.framework.welcome.JackLamb;
import com.lucky.utils.base.Assert;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.MDC;
import java.lang.managemen... | UTF-8 | Java | 1,988 | java | LuckyApplication.java | Java | [
{
"context": "ava.lang.management.RuntimeMXBean;\n\n/**\n * @author fk\n * @version 1.0\n * @date 2020/12/3 0003 11:33\n */",
"end": 402,
"score": 0.9993808269500732,
"start": 400,
"tag": "USERNAME",
"value": "fk"
}
] | null | [] | package com.lucky.boot.startup;
import com.lucky.framework.AutoScanApplicationContext;
import com.lucky.framework.container.Module;
import com.lucky.framework.welcome.JackLamb;
import com.lucky.utils.base.Assert;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.MDC;
import java.lang.managemen... | 1,988 | 0.619215 | 0.603119 | 56 | 34.482143 | 26.219534 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.696429 | false | false | 0 |
69d1e7f32399c90fcf386f292fbb793eb26ea595 | 60,129,559,427 | 06c271e25ad99089542fd45bfbd38200da1bdd4f | /DungeonKeep/src/logic/Keep.java | ea82b4a578b66e826f267d0b00ee8e436eb3bb70 | [] | no_license | cdanielgomes/LPOO | https://github.com/cdanielgomes/LPOO | 2aab0ab9c536c2949441f1052e1c47f830956de4 | 945194f334b83d169b49b1b71aaefa2f57068d00 | refs/heads/master | 2021-03-30T15:34:04.681000 | 2018-06-04T00:39:26 | 2018-06-04T00:39:26 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package logic;
import java.util.ArrayList;
/**
* Represents the second level of the game (Keep level)
*/
public class Keep extends GameMap{
private ArrayList<Ogre> hordOfOgres = new ArrayList<Ogre>();
/**
* Constructor of class Keep
* @param map map of the level
* @param numberofogres number of ogres in t... | UTF-8 | Java | 1,927 | java | Keep.java | Java | [] | null | [] | package logic;
import java.util.ArrayList;
/**
* Represents the second level of the game (Keep level)
*/
public class Keep extends GameMap{
private ArrayList<Ogre> hordOfOgres = new ArrayList<Ogre>();
/**
* Constructor of class Keep
* @param map map of the level
* @param numberofogres number of ogres in t... | 1,927 | 0.644006 | 0.643487 | 106 | 17.179245 | 17.752914 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.471698 | false | false | 0 |
c426dac2b82c5c97712ddce98107ff21bb6dc162 | 30,958,124,292,146 | 4887ef4145e96359d4924068d934b557e35b0b5b | /src/net/zkbc/p2p/fep/message/protocol/SubmitFinancialInfoRequest.java | 656132c6425bda8dfad978e7f4bfe0cc1a82ddf1 | [
"Apache-2.0"
] | permissive | XinRan5312/ZCOriginal | https://github.com/XinRan5312/ZCOriginal | d0accc772c23aa2274666ac61d9d3ed3fe34937c | 5f9c6da92b722e88b706f968c4d22745290cdb5b | refs/heads/master | 2020-06-12T13:00:19.712000 | 2016-12-06T10:33:22 | 2016-12-06T10:33:22 | 75,717,745 | 1 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.zkbc.p2p.fep.message.protocol;
/**
* 提交用户个人财务信息.客户端请求
*
* @author 代码生成器v1.0
*
*/
public class SubmitFinancialInfoRequest extends RequestSupport {
private String bondstatus;
private String bondvalue;
private String carbrand;
private String carstatus;
private String carvalue;
private String hou... | UTF-8 | Java | 2,773 | java | SubmitFinancialInfoRequest.java | Java | [] | null | [] | package net.zkbc.p2p.fep.message.protocol;
/**
* 提交用户个人财务信息.客户端请求
*
* @author 代码生成器v1.0
*
*/
public class SubmitFinancialInfoRequest extends RequestSupport {
private String bondstatus;
private String bondvalue;
private String carbrand;
private String carstatus;
private String carvalue;
private String hou... | 2,773 | 0.699886 | 0.69875 | 160 | 15.5 | 15.935416 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.1875 | false | false | 0 |
0db3e0d5dcfc66c6a1de9482e57f585f6c3096d8 | 31,559,419,713,614 | 4566444ce9624ffd273e91cc8cc3160f9333ee75 | /src/kr/ac/kopo/day10/homwork/TriArea.java | 894b35e30ee57f9ba619ea91509710e81a8efa68 | [] | no_license | dhfkdlxm/study | https://github.com/dhfkdlxm/study | 88efdbcb4bb09f624c265700dd8aadc8e096200c | 4d96ebf17cfcb8122d29b96c8cdb767adedd95fa | refs/heads/master | 2023-05-06T22:48:38.117000 | 2021-05-30T11:18:36 | 2021-05-30T11:18:36 | 344,305,644 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package kr.ac.kopo.day10.homwork;
public class TriArea extends AreaCal {
public TriArea() {
pntResult();
}
@Override
public void pntResult() {
int hor = super.ranNum();
int ver = super.ranNum();
System.out.println("가로 "+hor+", 높이 "+ver+"의 삼각형 면적은"+ (hor*ver/2)+" 입니다." );
}
}
| UTF-8 | Java | 321 | java | TriArea.java | Java | [] | null | [] | package kr.ac.kopo.day10.homwork;
public class TriArea extends AreaCal {
public TriArea() {
pntResult();
}
@Override
public void pntResult() {
int hor = super.ranNum();
int ver = super.ranNum();
System.out.println("가로 "+hor+", 높이 "+ver+"의 삼각형 면적은"+ (hor*ver/2)+" 입니다." );
}
}
| 321 | 0.631399 | 0.62116 | 15 | 18.533333 | 20.438091 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.333333 | false | false | 0 |
cbaac0cbb3df4754d865ecd568a574084f940889 | 12,017,318,507,420 | b50b10759c470b1f56ff04aee5e913aede3d40e6 | /src/main/java/org/scraelos/esofurnituremp/model/IngredientCount.java | 92a573c4460085dc02e352c56c9d4b28e1e98fe5 | [] | no_license | Scraelos/EsoFurnitureMarketplace | https://github.com/Scraelos/EsoFurnitureMarketplace | 4417f39f518a7084300a66ad6ce5308fe61527d1 | 16a3eea280820d9da46dcec23b319df404999595 | refs/heads/master | 2023-07-04T18:58:48.865000 | 2023-06-26T14:25:58 | 2023-06-26T14:25:58 | 82,163,349 | 0 | 0 | null | false | 2023-04-14T17:29:46 | 2017-02-16T09:29:32 | 2021-12-14T14:52:01 | 2023-04-14T17:29:44 | 248 | 0 | 0 | 3 | Java | 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 org.scraelos.esofurnituremp.model;
/**
*
* @author guest
*/
public class IngredientCount {
private Ingredient ingredie... | UTF-8 | Java | 725 | java | IngredientCount.java | Java | [
{
"context": ".scraelos.esofurnituremp.model;\n\n/**\n *\n * @author guest\n */\npublic class IngredientCount {\n\n private I",
"end": 252,
"score": 0.995243489742279,
"start": 247,
"tag": "USERNAME",
"value": "guest"
}
] | 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 org.scraelos.esofurnituremp.model;
/**
*
* @author guest
*/
public class IngredientCount {
private Ingredient ingredie... | 725 | 0.642759 | 0.641379 | 37 | 18.594595 | 19.840527 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.297297 | false | false | 0 |
aad47cb5091e1748e8addfb6d7c8a6f15489fef1 | 32,117,765,469,185 | 45711008d45b606673533d625ca6fc659100c315 | /orm-learn/src/main/java/com/cognizant/ormlearn/model/AttemptQuestion.java | 476377098982f1b95c54677e9da959781b039e6d | [] | no_license | DeepthaGiridharan/Spring-Data-JPA | https://github.com/DeepthaGiridharan/Spring-Data-JPA | f7299055c749bcc9264011f7dc78f31467decb64 | ab534884510d520195f38a87148a3f083620e419 | refs/heads/main | 2023-02-23T22:45:31.840000 | 2021-02-04T07:20:00 | 2021-02-04T07:20:00 | 335,605,036 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cognizant.ormlearn.model;
import java.util.Set;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn... | UTF-8 | Java | 1,457 | java | AttemptQuestion.java | Java | [] | null | [] | package com.cognizant.ormlearn.model;
import java.util.Set;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn... | 1,457 | 0.743995 | 0.743995 | 57 | 23.561403 | 17.727982 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.210526 | false | false | 0 |
d407d80aae27ef9ae7d72aa0b7ac52e25929f634 | 29,935,922,079,573 | ce9243c7f478b8d41a0c2309aa3d5cf48b20b173 | /src/main/java/ofedorova/common/services/IntegrationServiceByXml.java | ae6bb7d27d2a5909d22868d5672e0a3925f643b7 | [] | no_license | OlgaFedorova/spring-jms-jpa-jta | https://github.com/OlgaFedorova/spring-jms-jpa-jta | 2ad3fa3b3f6548094d85ba4a4752cfc011157cd5 | d4b93bcb44ab322cab3d166e90047e2719c90554 | refs/heads/master | 2021-09-08T08:39:20.876000 | 2018-03-08T16:49:28 | 2018-03-08T16:49:28 | 124,420,584 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ofedorova.common.services;
import lombok.extern.slf4j.Slf4j;
import ofedorova.db.dao.QueueMessageOutDao;
import ofedorova.db.entity.QueueMessageOut;
import ofedorova.jms.services.SendlerToMq;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import o... | UTF-8 | Java | 1,092 | java | IntegrationServiceByXml.java | Java | [] | null | [] | package ofedorova.common.services;
import lombok.extern.slf4j.Slf4j;
import ofedorova.db.dao.QueueMessageOutDao;
import ofedorova.db.entity.QueueMessageOut;
import ofedorova.jms.services.SendlerToMq;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import o... | 1,092 | 0.759158 | 0.75641 | 36 | 29.333334 | 24.320772 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.472222 | false | false | 0 |
332ca595235a9e9695c2b8fcc732ffdab7a1b9bb | 28,750,511,148,516 | 34f12fb97f56b3435695670b8ee880adc4a2fbdb | /odk/src/main/java/de/illilli/opengis/odk/bo/EinwohnerNachAltersgruppenSchuelerDao.java | de98190960b516811e6eeec5463664c56048d41d | [] | no_license | weberius/osm | https://github.com/weberius/osm | 8125c5c30d216d2303e3361626ad0462d075d56f | c310f67e6b441c397357677cdc2775a630227a32 | refs/heads/master | 2016-09-05T10:47:18.255000 | 2015-10-19T04:56:42 | 2015-10-19T04:56:42 | 27,240,610 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.illilli.opengis.odk.bo;
import java.text.NumberFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import de.illilli.opengis.odk.bo.csv.EinwohnerNachAltersgruppen;
public class EinwohnerNachAltersgruppenSchuelerDao {
private List<EinwohnerNachAltersgruppenBo> boList;
pu... | UTF-8 | Java | 2,648 | java | EinwohnerNachAltersgruppenSchuelerDao.java | Java | [] | null | [] | package de.illilli.opengis.odk.bo;
import java.text.NumberFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import de.illilli.opengis.odk.bo.csv.EinwohnerNachAltersgruppen;
public class EinwohnerNachAltersgruppenSchuelerDao {
private List<EinwohnerNachAltersgruppenBo> boList;
pu... | 2,648 | 0.75 | 0.711103 | 72 | 35.777779 | 24.899923 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.569444 | false | false | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.