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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
104b3f61ab6dcdee58f728c39b3fc097e38a8204 | 7,954,279,448,009 | e612ac7bb6ebb849c24b92c184f21171a1d9e371 | /src/main/java/com/ruyicai/msgcenter/jms/listener/ReceiveSMSListener.java | b71a76e06e30318137e59d6db837730362f7b4bf | [] | no_license | sy1214520/msgcenter | https://github.com/sy1214520/msgcenter | 79906360e64736b494ad742ea69a4003317fa2dd | 39f1d646000905553e6217b97f608e72ef4c9e17 | refs/heads/master | 2021-01-16T19:34:08.850000 | 2013-04-09T09:06:19 | 2013-04-09T09:06:19 | 9,292,798 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ruyicai.msgcenter.jms.listener;
import java.util.StringTokenizer;
import org.apache.camel.Header;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Servic... | UTF-8 | Java | 1,278 | java | ReceiveSMSListener.java | Java | [] | null | [] | package com.ruyicai.msgcenter.jms.listener;
import java.util.StringTokenizer;
import org.apache.camel.Header;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Servic... | 1,278 | 0.769778 | 0.768196 | 36 | 34.111111 | 30.830881 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.833333 | false | false | 4 |
35326791f1a1b76f6e9ce027616d42bcfe4eec7b | 18,906,446,062,274 | 7273017bb03b06c1015c3e365511adf711626cc1 | /src/binary_search/ImplementPowerFunctionA.java | 1f2e689e35ea7a8cbbbf941a623c53f5d3a96205 | [] | no_license | ismagilov/interviewbit | https://github.com/ismagilov/interviewbit | 1168d5bfe295c1541d76250f0b8670585b4c228f | 24ef5099b9e970ab495729967274e0f5178f7273 | refs/heads/master | 2020-12-30T14:13:34.742000 | 2018-01-29T04:10:40 | 2018-01-29T04:10:40 | 91,296,551 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package binary_search;
/**
* https://www.interviewbit.com/problems/implement-power-function/
*
* Recursion solution.
*/
public class ImplementPowerFunctionA {
public int pow(int x, int n, int d) {
if (x == 0)
return 0;
if (d == 1)
return 0;
int res = (int)power(x, n, d... | UTF-8 | Java | 646 | java | ImplementPowerFunctionA.java | Java | [] | null | [] | package binary_search;
/**
* https://www.interviewbit.com/problems/implement-power-function/
*
* Recursion solution.
*/
public class ImplementPowerFunctionA {
public int pow(int x, int n, int d) {
if (x == 0)
return 0;
if (d == 1)
return 0;
int res = (int)power(x, n, d... | 646 | 0.459752 | 0.442724 | 34 | 18 | 15.218023 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.264706 | false | false | 4 |
4406ab5c0d12a485cdcf25c413105c7bfcf090d9 | 25,623,774,917,930 | f9a9fd3f1e18c2f2cabcc2f0ebc225b1b25de60e | /app/src/main/java/com/ming/sjll/base/viewmodel/ToolbarViewModel.java | fb7fce10f15399fc08c3c390a13b9153363b2cc9 | [] | no_license | 15307388990/SJLL | https://github.com/15307388990/SJLL | 273541dfa40f8a3a92e88890941ed68a5cd129d5 | e4dd377d6408b6c28e6683843cc4f39c11f2442b | refs/heads/master | 2020-08-03T04:27:46.225000 | 2019-11-23T02:41:32 | 2019-11-23T02:41:32 | 211,624,684 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ming.sjll.base.viewmodel;
import android.app.Activity;
import android.databinding.BaseObservable;
import android.databinding.Bindable;
import android.view.View;
public class ToolbarViewModel extends BaseObservable {
private String title;
public ToolbarViewModel() {
}
public ToolbarViewMode... | UTF-8 | Java | 741 | java | ToolbarViewModel.java | Java | [] | null | [] | package com.ming.sjll.base.viewmodel;
import android.app.Activity;
import android.databinding.BaseObservable;
import android.databinding.Bindable;
import android.view.View;
public class ToolbarViewModel extends BaseObservable {
private String title;
public ToolbarViewModel() {
}
public ToolbarViewMode... | 741 | 0.665317 | 0.665317 | 32 | 22.15625 | 18.488358 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.34375 | false | false | 4 |
c121292908d0b5512bd3c37abf2c7f7e2507d4e5 | 13,125,420,106,033 | 9bf1b7d2293ffad1fcb03f880a024a9a66e85650 | /test/mocks/aai-simulator/aai-sim/src/main/java/org/onap/aaisimulator/utils/ServiceException.java | c349b8e4abf5cad633e29122edb24e2e8a312af9 | [] | no_license | onap/integration | https://github.com/onap/integration | c9562a74c6297d35410458e35bbaf789780addd8 | c02b83b908774caad2cffea31609e0768cc5ae9d | refs/heads/master | 2023-08-24T13:33:55.126000 | 2023-07-13T12:45:31 | 2023-07-13T12:45:31 | 115,061,839 | 10 | 14 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*-
* ============LICENSE_START=======================================================
* Copyright (C) 2019 Nordix Foundation.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in ... | UTF-8 | Java | 2,314 | java | ServiceException.java | Java | [
{
"context": "ml.bind.annotation.XmlRootElement;\n\n/**\n * @author waqas.ikram@ericsson.com\n *\n */\n@XmlRootElement(name = \"serviceException\")",
"end": 1148,
"score": 0.9996256232261658,
"start": 1124,
"tag": "EMAIL",
"value": "waqas.ikram@ericsson.com"
}
] | null | [] | /*-
* ============LICENSE_START=======================================================
* Copyright (C) 2019 Nordix Foundation.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in ... | 2,297 | 0.592481 | 0.588159 | 88 | 25.295454 | 25.386627 | 112 | false | false | 0 | 0 | 0 | 0 | 81 | 0.035004 | 0.25 | false | false | 4 |
40de5c89c805ec02764507ac4b4b37ec967e9bcb | 25,168,508,377,592 | 47a359307a43a91887b056358639c0e26e611537 | /src/java/Relatorio/RelatorioImpresso.java | c9707b9d520686212910156cda30629e1a1477b2 | [] | no_license | Andersonhrocha/ArCarros | https://github.com/Andersonhrocha/ArCarros | 7ee3e63726e0b2550350a907d23f8b1b8ad19f13 | 7b3151135bed71642cc4946ed2358a5f39707490 | refs/heads/master | 2021-08-20T00:16:24.472000 | 2017-11-27T19:20:17 | 2017-11-27T19:20:17 | 106,018,021 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Relatorio;
import dao.DaoOrdemServico;
import java.io.File;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
imp... | UTF-8 | Java | 7,588 | java | RelatorioImpresso.java | Java | [] | null | [] | package Relatorio;
import dao.DaoOrdemServico;
import java.io.File;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
imp... | 7,588 | 0.630708 | 0.630179 | 171 | 42.181286 | 35.818203 | 134 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.608187 | false | false | 4 |
bf5713ea6cee6ebb25b2f79cc01560fe5e8941a6 | 17,197,049,102,797 | 5b7a1c3d11dd64659b3d40d0f66409e1152871b7 | /frame-interview/spring-mvc-interview/src/main/java/org/czh/interview/spring_mvc_interview/SpringMvcInterviewMain.java | c044a9cac2d5108c5f98e4455f51ca5fe8e4474d | [] | no_license | myaq1314/interview | https://github.com/myaq1314/interview | 4b9910048ec0765fb86b446437368fc33e38b491 | 9d47eea32b9721642c5ddfdd4ba47b3261eccb5b | refs/heads/main | 2023-06-05T11:55:23.391000 | 2021-06-17T05:05:25 | 2021-06-17T05:05:25 | 358,160,041 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.czh.interview.spring_mvc_interview;
/**
* @author : czh
* description :
* date : 2021-04-27
* email 916419307@qq.com
*/
public class SpringMvcInterviewMain {
public static void main(String[] args) {
System.out.println("SpringMvcInterviewMain");
}
}
| UTF-8 | Java | 284 | java | SpringMvcInterviewMain.java | Java | [
{
"context": ".interview.spring_mvc_interview;\n\n/**\n * @author : czh\n * description :\n * date : 2021-04-27\n * email 91",
"end": 69,
"score": 0.9997020959854126,
"start": 66,
"tag": "USERNAME",
"value": "czh"
},
{
"context": "zh\n * description :\n * date : 2021-04-27\n * email ... | null | [] | package org.czh.interview.spring_mvc_interview;
/**
* @author : czh
* description :
* date : 2021-04-27
* email <EMAIL>
*/
public class SpringMvcInterviewMain {
public static void main(String[] args) {
System.out.println("SpringMvcInterviewMain");
}
}
| 275 | 0.676056 | 0.616197 | 14 | 19.285715 | 18.316381 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.142857 | false | false | 4 |
bbef2bbf550f95352a4baf228a046d4a3fedb346 | 9,698,036,172,210 | ac53a919a79fdd6e7e541a8de5f0bafcfa357466 | /src/qasproject/GateInward.java | 09041c5fcf8e5e90a155a56ed758ca5fd1583631 | [] | no_license | TahaBokhari/ERP | https://github.com/TahaBokhari/ERP | 7d131f7254ee48a420562cbc3889a06525510dfb | 82cb7cb9b10296dfca0cd778c7b2ec56fe6d3b5c | refs/heads/master | 2022-05-27T09:19:19.731000 | 2020-05-03T20:39:12 | 2020-05-03T20:39:12 | 255,583,195 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package qasproject;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.print.PrinterException;
im... | UTF-8 | Java | 50,214 | java | GateInward.java | Java | [
{
"context": ".swing.table.DefaultTableModel;\n\n/**\n *\n * @author tahab\n */\npublic class GateInward extends javax.swing.J",
"end": 913,
"score": 0.9991910457611084,
"start": 908,
"tag": "USERNAME",
"value": "tahab"
},
{
"context": "der=\" ... | 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 qasproject;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.print.PrinterException;
im... | 50,205 | 0.591818 | 0.579311 | 1,132 | 43.286221 | 37.083344 | 260 | false | false | 0 | 0 | 0 | 0 | 98 | 0.001955 | 0.774735 | false | false | 4 |
5eca15f04b7df0b815f807a09cacc7b6e96b3d02 | 30,846,455,156,578 | a9227e8917aa1dd816d1d7d99fb87c2548e034d5 | /org.hl7.fhir.dstu2016may/src/main/java/org/hl7/fhir/dstu2016may/model/codesystems/V3AcknowledgementDetailCode.java | 140017be6146a64bdae83258644a46b23b370fbc | [
"Apache-2.0"
] | permissive | hapifhir/org.hl7.fhir.core | https://github.com/hapifhir/org.hl7.fhir.core | e3447e77208d47909c61aec3aced2e0dd095c878 | bca705a3c6cbeb8dc85c11864bbe5bf441dd8bf6 | refs/heads/master | 2023-09-01T00:47:26.637000 | 2023-08-31T13:58:37 | 2023-08-31T13:58:37 | 165,549,674 | 129 | 156 | Apache-2.0 | false | 2023-09-14T03:03:45 | 2019-01-13T20:14:02 | 2023-07-23T06:36:14 | 2023-09-14T03:03:45 | 137,638 | 123 | 132 | 35 | Java | false | false | package org.hl7.fhir.dstu2016may.model.codesystems;
/*
Copyright (c) 2011+, HL7, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the ab... | UTF-8 | Java | 16,801 | java | V3AcknowledgementDetailCode.java | Java | [] | null | [] | package org.hl7.fhir.dstu2016may.model.codesystems;
/*
Copyright (c) 2011+, HL7, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the ab... | 16,801 | 0.700196 | 0.671984 | 453 | 36.090508 | 42.780853 | 368 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.443709 | false | false | 4 |
11e114af4cd685350ce83527ca0a65539177d827 | 15,504,831,962,801 | b4390516a6132367902f0afb6f49a4dd4a75485e | /TRADERE WEB/src/ec/com/tradere/dao/FolioRealDominioDAO.java | 916b0e913c88adf25a9590b0f4c062fa5626e07f | [] | no_license | rodrigosalguero/TRADERE.JSP.WEB | https://github.com/rodrigosalguero/TRADERE.JSP.WEB | 736846a8b67415277e5c95538c003f56340a2fb7 | bdf744ccb8412a47f8608d3eb4aaf971f8c7b940 | refs/heads/master | 2018-10-19T15:02:29.439000 | 2018-10-11T23:29:11 | 2018-10-11T23:29:11 | 108,053,765 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ec.com.tradere.dao;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import ec.com.tradere.dbcontrollers.QuerySQL;
import ec.com.tradere.dto.FolioRealDominioDTO;
import ec.com.tradere.models.json.JsonViewFolioRealDominiosModel;
import ec.com.tradere.models.json.errors.ErrorModelsG... | UTF-8 | Java | 9,684 | java | FolioRealDominioDAO.java | Java | [] | null | [] | package ec.com.tradere.dao;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import ec.com.tradere.dbcontrollers.QuerySQL;
import ec.com.tradere.dto.FolioRealDominioDTO;
import ec.com.tradere.models.json.JsonViewFolioRealDominiosModel;
import ec.com.tradere.models.json.errors.ErrorModelsG... | 9,684 | 0.72057 | 0.715717 | 236 | 40.033897 | 35.114929 | 171 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.144068 | false | false | 4 |
d3ecbc6ba8114b2628d269786bdad061e183200e | 4,466,766,001,925 | deb85993882982a761d511d73c1fc77f2f09fc4e | /src/main/java/com/login/dao/LoginServlet.java | 3a9cdbb6b0008dc13ca2d1788a77208546b6b2a5 | [] | no_license | Morbo-ui/Uni_lab | https://github.com/Morbo-ui/Uni_lab | 5a18865e99c589698f1f7ec25dfbb8303c817493 | 5cc6596ea536123dbd92d5cb4d9c89af71dcc22d | refs/heads/master | 2023-08-23T20:02:33.936000 | 2021-10-11T09:48:06 | 2021-10-11T09:48:06 | 341,586,186 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.login.dao;
import Logic.Member;
import com.login.dao.LoginDao;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.annotation.*;
import java.io.IOException;
@WebServlet(name = "LoginServlet", value = "/login")
public class LoginServlet extends HttpServlet {
@Override
protect... | UTF-8 | Java | 1,095 | java | LoginServlet.java | Java | [
{
"context": "{\n String username = request.getParameter(\"username\");\n String password = request.getParameter",
"end": 632,
"score": 0.7641112804412842,
"start": 624,
"tag": "USERNAME",
"value": "username"
},
{
"context": "on();\n session.setAttribute(\"us... | null | [] | package com.login.dao;
import Logic.Member;
import com.login.dao.LoginDao;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.annotation.*;
import java.io.IOException;
@WebServlet(name = "LoginServlet", value = "/login")
public class LoginServlet extends HttpServlet {
@Override
protect... | 1,095 | 0.684018 | 0.684018 | 37 | 28.594595 | 30.224796 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.594595 | false | false | 4 |
718210eaa43746193962661b4231aa08e07820a5 | 249,108,158,343 | b214f260bdc20a9a894704e00a0074b0736f9be2 | /src/test/java/com/newidea/minhasfinancas/MinhasfinancasApplicationTests.java | 2c81fd5f632ea62d46b603ce95425cacf52369cc | [] | no_license | ronny2901/financas | https://github.com/ronny2901/financas | 457830f2e3c260292c4aab6e94fa97f6e6c7955e | 7339285310cd449903cf5bbb530c0010392659cb | refs/heads/master | 2022-12-29T16:38:18.084000 | 2020-10-19T17:10:20 | 2020-10-19T17:10:20 | 305,458,320 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.newidea.minhasfinancas;
//import org.junit.jupiter.api.Test;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class MinhasfinancasApplicationTests {
@Test
@Ignore
void contextLoads() {
}
}
| UTF-8 | Java | 285 | java | MinhasfinancasApplicationTests.java | Java | [] | null | [] | package com.newidea.minhasfinancas;
//import org.junit.jupiter.api.Test;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class MinhasfinancasApplicationTests {
@Test
@Ignore
void contextLoads() {
}
}
| 285 | 0.789474 | 0.789474 | 16 | 16.8125 | 17.529327 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5625 | false | false | 4 |
09d562a159d094df51c3f139519463686966b198 | 6,554,120,128,203 | fb7ca637df77f3bdeb357864eb98bb89a38ecdff | /src/main/java/com/effyroth/mvcc/impl/MVCCCache.java | 0e7e576eee572c9233c00884215ed448b347309d | [] | no_license | effyroth/MVCC | https://github.com/effyroth/MVCC | 0f59d479eddf14e9ba116e7eff854bffa0bca2d4 | 4b958c21a75888e27ee719afe398a24095cfeb6a | refs/heads/master | 2016-08-11T08:49:21.087000 | 2015-10-22T07:25:49 | 2015-10-22T07:25:49 | 44,727,920 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.effyroth.mvcc.impl;
import com.effyroth.mvcc.Cache;
import com.effyroth.mvcc.RevisionMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.ReadWriteLock;
import java.uti... | UTF-8 | Java | 1,826 | java | MVCCCache.java | Java | [
{
"context": "t.locks.ReentrantReadWriteLock;\n\n/**\n * Created by guzhen on 15/10/20.\n */\npublic class MVCCCache<K,V> impl",
"end": 388,
"score": 0.9996499419212341,
"start": 382,
"tag": "USERNAME",
"value": "guzhen"
}
] | null | [] | package com.effyroth.mvcc.impl;
import com.effyroth.mvcc.Cache;
import com.effyroth.mvcc.RevisionMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.ReadWriteLock;
import java.uti... | 1,826 | 0.573384 | 0.569003 | 77 | 22.714285 | 17.600071 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.506494 | false | false | 4 |
5676a4f33fc048e3b8287a631f22d8335f7ccafe | 28,252,294,937,498 | 419f3eaed329f1ebb0b87597f1f70f492c44dc80 | /src/LoveCalculator.java | 2692b1d9f1c3b777545ecc848951f180146e2fd0 | [] | no_license | thisAAY/UVA | https://github.com/thisAAY/UVA | 2329f4d30faa0f4e03e365585fde3d6f8a590c28 | 85de4dc27ae2e3bf6863619badbbd8fd7f8cf4c3 | refs/heads/master | 2020-03-08T17:01:13.168000 | 2015-03-07T16:30:33 | 2015-03-07T16:30:33 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.io.*;
import java.util.*;
/**
*
* @author allegea
*/
public class LoveCalculator {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOExce... | UTF-8 | Java | 3,153 | java | LoveCalculator.java | Java | [
{
"context": "ava.io.*;\n\n\nimport java.util.*;\n\n/**\n *\n * @author allegea\n */\npublic class LoveCalculator {\n\n /**\n *",
"end": 166,
"score": 0.9982812404632568,
"start": 159,
"tag": "USERNAME",
"value": "allegea"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.io.*;
import java.util.*;
/**
*
* @author allegea
*/
public class LoveCalculator {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOExce... | 3,153 | 0.328259 | 0.307644 | 115 | 26.417391 | 18.608078 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.434783 | false | false | 4 |
5579b479cc7159741e6ccdcd356f1c791e7d8e2e | 4,372,276,751,162 | 0882cf95961585977951a3eae933634b8e708e93 | /ql/src/java/org/apache/hadoop/hive/ql/exec/spark/status/impl/LocalSparkJobStatus.java | c6f1b8d75f3a8443f5e3aad342a39c9bdf0a65e6 | [
"BSD-3-Clause",
"JSON",
"MIT",
"GPL-1.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | fbpcchen/hive-cdh5.6.0-release | https://github.com/fbpcchen/hive-cdh5.6.0-release | 3deb7c022e8a61341181edb1a44b53ed040cc999 | b6762e9cd5af49ac77c31a0cf15b3461ed1e5e7b | refs/heads/master | 2021-09-07T05:44:47.764000 | 2019-07-25T09:49:10 | 2019-07-25T09:49:10 | 192,457,111 | 6 | 0 | Apache-2.0 | false | 2021-08-02T17:29:55 | 2019-06-18T03:17:02 | 2021-03-06T19:21:59 | 2021-08-02T17:29:54 | 14,402 | 4 | 0 | 3 | Java | false | false | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | UTF-8 | Java | 9,398 | java | LocalSparkJobStatus.java | Java | [] | null | [] | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | 9,398 | 0.717067 | 0.71462 | 237 | 38.654007 | 27.213768 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.696203 | false | false | 4 |
1500a1adf81402fc7363195677faeac54627831e | 6,657,199,314,695 | a52b1d91a5a2984591df9b2f03b1014c263ee8ab | /net/minecraft/client/particle/EntityRainFX.java | bf42a25ef7478cf459666605e0498bc2f007e30b | [] | no_license | MelonsYum/leap-client | https://github.com/MelonsYum/leap-client | 5c200d0b39e0ca1f2071f9264f913f9e6977d4b4 | c6611d4b9600311e1eb10f87a949419e34749373 | refs/heads/main | 2023-08-04T17:40:13.797000 | 2021-09-17T00:18:38 | 2021-09-17T00:18:38 | 411,085,054 | 3 | 3 | null | true | 2021-09-28T00:33:06 | 2021-09-28T00:33:05 | 2021-09-17T00:18:41 | 2021-09-17T00:18:38 | 9,615 | 0 | 0 | 0 | null | false | false | /* */ package net.minecraft.client.particle;
/* */
/* */ import net.minecraft.block.Block;
/* */ import net.minecraft.block.BlockLiquid;
/* */ import net.minecraft.block.material.Material;
/* */ import net.minecraft.block.properties.IProperty;
/* */ import net.minecraft.block.state.IBlockState;
/*... | UTF-8 | Java | 4,014 | java | EntityRainFX.java | Java | [
{
"context": "}\n/* */ }\n\n\n/* Location: C:\\Users\\wyatt\\Downloads\\Leap-Client.jar!\\net\\minecraft\\client\\p",
"end": 3867,
"score": 0.9952168464660645,
"start": 3862,
"tag": "USERNAME",
"value": "wyatt"
}
] | null | [] | /* */ package net.minecraft.client.particle;
/* */
/* */ import net.minecraft.block.Block;
/* */ import net.minecraft.block.BlockLiquid;
/* */ import net.minecraft.block.material.Material;
/* */ import net.minecraft.block.properties.IProperty;
/* */ import net.minecraft.block.state.IBlockState;
/*... | 4,014 | 0.527653 | 0.420279 | 103 | 37.980583 | 31.246586 | 219 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.699029 | false | false | 4 |
6ff7747039af3d24875029ee92f3640d125e9e83 | 29,076,928,632,917 | e58da033a39456c57469726f9443ca5421029fb0 | /src/main/java/com/zyb/service/EmployeeService.java | d7748574e0a996cc8d422251f4ed4b88642db1cd | [] | no_license | githubzyb/springboot_oa | https://github.com/githubzyb/springboot_oa | dde690d46cd2c53a20c9f8d542e3e10595b55452 | 8decc19f0a42a8847eb8412e947796dbba8f44f0 | refs/heads/master | 2022-06-25T08:59:10.401000 | 2020-01-13T03:17:51 | 2020-01-13T03:17:51 | 230,355,581 | 1 | 0 | null | false | 2022-06-17T02:48:06 | 2019-12-27T02:03:00 | 2020-02-12T02:15:03 | 2022-06-17T02:48:05 | 66 | 0 | 0 | 1 | Java | false | false | package com.zyb.service;
import com.zyb.entity.Employee;
import org.springframework.stereotype.Service;
/**
*@author: zhouyongbao
*@description:
*@date: 2020/1/4 000414:50
*
*/
public interface EmployeeService {
Integer insert(Employee employee);
Integer delete(String sn);
}
| UTF-8 | Java | 293 | java | EmployeeService.java | Java | [
{
"context": "pringframework.stereotype.Service;\n\n/**\n *@author: zhouyongbao\n *@description:\n *@date: 2020/1/4 000414:50\n *\n *",
"end": 132,
"score": 0.9446811079978943,
"start": 121,
"tag": "USERNAME",
"value": "zhouyongbao"
}
] | null | [] | package com.zyb.service;
import com.zyb.entity.Employee;
import org.springframework.stereotype.Service;
/**
*@author: zhouyongbao
*@description:
*@date: 2020/1/4 000414:50
*
*/
public interface EmployeeService {
Integer insert(Employee employee);
Integer delete(String sn);
}
| 293 | 0.726962 | 0.679181 | 17 | 16.235294 | 15.592341 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.294118 | false | false | 4 |
1613f01d6f8858abd9a92caa8560f6e6cddee431 | 23,570,780,577,948 | 3ad637746ab01786e379d3f4e41536a3931c5265 | /e-commerce-report-service/src/main/java/br/com/pamcary/repository/PessoaRepository.java | c69f61835dc5793a3dad1b3af4b09b32c1eea9b2 | [] | no_license | dmjesus89/e-commerce | https://github.com/dmjesus89/e-commerce | a670eafbb05e189801998569964caecd8d44eb77 | 9899b11fe723e82a87d9af8d6f4e5d8c3a98c616 | refs/heads/master | 2020-07-17T05:39:19.169000 | 2019-09-03T11:09:53 | 2019-09-03T11:09:53 | 205,957,451 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.pamcary.repository;
import java.util.Optional;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import br.com.pamcary.entity.UserEntity;
@Repository
public interface PessoaRepository extends JpaRepository<UserEntity, Long> {
Optional<Us... | UTF-8 | Java | 356 | java | PessoaRepository.java | Java | [] | null | [] | package br.com.pamcary.repository;
import java.util.Optional;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import br.com.pamcary.entity.UserEntity;
@Repository
public interface PessoaRepository extends JpaRepository<UserEntity, Long> {
Optional<Us... | 356 | 0.825843 | 0.825843 | 15 | 22.733334 | 25.146151 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.533333 | false | false | 4 |
9199d464a2e5c0d89622e79e88e482eae9418716 | 21,079,699,524,831 | 111ac3fd50fb4723f35498444be8814c6fe7db4d | /src/main/java/MainHashMap.java | ca703d9dacd48f52abbd413e220a9530ec3820bc | [] | no_license | diana-georgiu/persons-hobbies | https://github.com/diana-georgiu/persons-hobbies | cbc47aeb69b4dfe27575974f8a85f6f4d6ff7bdb | 803ac4c939aeb25327d98fb1499f5ffccda1d7e6 | refs/heads/main | 2023-01-14T15:08:22.268000 | 2020-11-22T07:37:32 | 2020-11-22T07:37:32 | 314,976,718 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.*;
import java.util.Map;
public class MainHashMap {
private static Map<Person, List<Hobby>> personsHobbies = new HashMap<>();
public static void main(String[] args) {
Person p1 = new Person("Alex", 27);
Hobby h1 = new Hobby("Tennis", 2);
h1.addAddress(new Address("Pi... | UTF-8 | Java | 2,687 | java | MainHashMap.java | Java | [
{
"context": "String[] args) {\n\n Person p1 = new Person(\"Alex\", 27);\n Hobby h1 = new Hobby(\"Tennis\", 2);",
"end": 232,
"score": 0.999867856502533,
"start": 228,
"tag": "NAME",
"value": "Alex"
},
{
"context": "Person(\"Alex\", 27);\n Hobby h1 = new Hobby(\"... | null | [] | import java.util.*;
import java.util.Map;
public class MainHashMap {
private static Map<Person, List<Hobby>> personsHobbies = new HashMap<>();
public static void main(String[] args) {
Person p1 = new Person("Alex", 27);
Hobby h1 = new Hobby("Tennis", 2);
h1.addAddress(new Address("Pi... | 2,682 | 0.549144 | 0.526433 | 72 | 36.319443 | 35.106911 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.166667 | false | false | 4 |
9e4dce1bbd62856b8b8976a8e348e105e224868c | 22,170,621,237,997 | 97224c4a97a1a7d1d9ba3a07bb38e4ea7545f3cd | /src/main/java/me/austinfrg/basicinfo/Utils/Placeholders.java | 6d6476267d5934a5796b933d853cc9428fddb6f2 | [] | no_license | AustinFRG/BasicInfo | https://github.com/AustinFRG/BasicInfo | db0db20eb66bcc8e345a8abb536262f1a34b9500 | c3a74e53879bfecf86251c8ec45e87ebdf2e080b | refs/heads/master | 2023-05-24T05:30:02.538000 | 2021-06-16T10:30:23 | 2021-06-16T10:30:23 | 291,567,291 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package me.austinfrg.basicinfo.Utils;
import me.austinfrg.basicinfo.BasicInfo;
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
import org.bukkit.entity.Player;
public class Placeholders extends PlaceholderExpansion {
private final BasicInfo plugin;
public Placeholders(BasicInfo plugin){
... | UTF-8 | Java | 2,505 | java | Placeholders.java | Java | [] | null | [] | package me.austinfrg.basicinfo.Utils;
import me.austinfrg.basicinfo.BasicInfo;
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
import org.bukkit.entity.Player;
public class Placeholders extends PlaceholderExpansion {
private final BasicInfo plugin;
public Placeholders(BasicInfo plugin){
... | 2,505 | 0.573653 | 0.573653 | 89 | 27.146067 | 25.501949 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.370787 | false | false | 4 |
c24b92137334033c6089648cacb0c5a9f133932e | 27,582,280,025,447 | 72a309f1c6c142ecf2ee624f040dcd4e3cc8bd10 | /ArtGallerie/src/main/java/artGalleryApp/service/DefaultAddressService.java | 03d732ae414f2f68e1c2e5ae352ebe7431128599 | [] | no_license | arnagock/Capstone | https://github.com/arnagock/Capstone | 085f4c30dc2bb7fdf018037aac80f6883dd6d370 | a649c83b6754e11d5d0714fc1300d3522d65c308 | refs/heads/master | 2021-01-22T23:53:44.699000 | 2017-03-22T15:10:08 | 2017-03-22T15:10:08 | 85,678,615 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package artGalleryApp.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import artGalleryApp.domain.Address;
import artGalleryApp.repository.AddressRepository;
@Transactional(readOnly... | UTF-8 | Java | 928 | java | DefaultAddressService.java | Java | [] | null | [] | package artGalleryApp.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import artGalleryApp.domain.Address;
import artGalleryApp.repository.AddressRepository;
@Transactional(readOnly... | 928 | 0.817888 | 0.817888 | 41 | 21.634146 | 23.52866 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.902439 | false | false | 4 |
4c7fe6a126553c684e0efa1cdcbe393a04d492cf | 12,481,174,995,444 | d553bccf1ce80193ec3171c5ea5de84e4e51a6d1 | /src/main/java/com/spring/jdbc/core/SkyTemplate.java | fdb806ebeaeb50c14983bf3f41ca48d712aa29da | [] | no_license | SkyHudal/mystudy | https://github.com/SkyHudal/mystudy | a2e55c6fd32686157a0864ce00bd0b73d4769b98 | d3b1f7160d35ecf75e264f835aaaafd625a995f5 | refs/heads/master | 2020-05-16T19:00:50.329000 | 2019-04-24T15:13:30 | 2019-04-24T15:13:30 | 183,246,034 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.spring.jdbc.core;
import com.spring.jdbc.constants.Constant;
import com.spring.jdbc.mapper.SkyRowMap;
import com.spring.jdbc.parameter.SqlParamWrapper;
import com.spring.jdbc.support.ParseDBConfig;
import com.spring.jdbc.utils.SkyUtils;
import com.spring.jdbc.xml.ParseSqlXml;
import com.spring.jdbc.xml.Sql... | UTF-8 | Java | 4,705 | java | SkyTemplate.java | Java | [] | null | [] | package com.spring.jdbc.core;
import com.spring.jdbc.constants.Constant;
import com.spring.jdbc.mapper.SkyRowMap;
import com.spring.jdbc.parameter.SqlParamWrapper;
import com.spring.jdbc.support.ParseDBConfig;
import com.spring.jdbc.utils.SkyUtils;
import com.spring.jdbc.xml.ParseSqlXml;
import com.spring.jdbc.xml.Sql... | 4,705 | 0.638698 | 0.636706 | 121 | 36.330578 | 26.16489 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.661157 | false | false | 4 |
1dea3698d996d8f8ddbde0f1dbb345174edab811 | 12,481,174,994,544 | da2039635f3599f18089c66c9a94f6ab537d0a8e | /src/src/app/cilp/dwfy/model/WzkcId.java | dc7f0f1ccdb996c32dc7096af7fa606aaf66986c | [] | no_license | dalinhuang/cilp | https://github.com/dalinhuang/cilp | c7567975e54a67572c041d613aff7c8259f1a5c1 | ba5bb70778ba839501e306c0a9dcd796d87983c0 | refs/heads/master | 2018-01-08T22:05:12.195000 | 2012-05-08T01:41:02 | 2012-05-08T01:41:02 | 48,650,713 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package app.cilp.dwfy.model;
// Generated 2011-5-18 10:30:53 by Hibernate Tools 3.3.0.GA
/**
* WzkcId generated by hbm2java
*/
@SuppressWarnings("serial")
public class WzkcId implements java.io.Serializable {
private String xzqhdm;
private Long wzbh;
public WzkcId(){
}
public WzkcId(Stri... | UTF-8 | Java | 637 | java | WzkcId.java | Java | [] | null | [] | package app.cilp.dwfy.model;
// Generated 2011-5-18 10:30:53 by Hibernate Tools 3.3.0.GA
/**
* WzkcId generated by hbm2java
*/
@SuppressWarnings("serial")
public class WzkcId implements java.io.Serializable {
private String xzqhdm;
private Long wzbh;
public WzkcId(){
}
public WzkcId(Stri... | 637 | 0.640502 | 0.613815 | 38 | 14.763158 | 15.827083 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.131579 | false | false | 4 |
fc4116d0f50fd567d345ebc1501a589fd8f28350 | 26,182,120,685,559 | 9977c2e710fa25d9cc7d49df7cf684b3397218aa | /app/src/main/java/com/softwarearch/shoppingapplication/application/ShoppingApplication.java | 64118274d5eee0f448a9932f8226cd7e73ae7b81 | [] | no_license | kaabus/shoppinglibrary | https://github.com/kaabus/shoppinglibrary | f244b525cd3198680d865b5082ba422893daa257 | 939f69dbb2ebd51e9b8ae782450727c33f60bea2 | refs/heads/master | 2020-05-17T02:04:12.266000 | 2019-04-22T15:16:16 | 2019-04-22T15:16:16 | 183,444,892 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.softwarearch.shoppingapplication.application;
import android.app.Activity;
import android.app.Application;
import com.softwarearch.shoppingapplication.components.ApplicationComponent;
import com.softwarearch.shoppingapplication.components.DaggerApplicationComponent;
import com.softwarearch.shoppingapplica... | UTF-8 | Java | 1,169 | java | ShoppingApplication.java | Java | [] | null | [] | package com.softwarearch.shoppingapplication.application;
import android.app.Activity;
import android.app.Application;
import com.softwarearch.shoppingapplication.components.ApplicationComponent;
import com.softwarearch.shoppingapplication.components.DaggerApplicationComponent;
import com.softwarearch.shoppingapplica... | 1,169 | 0.763901 | 0.763901 | 36 | 31.472221 | 28.108408 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.388889 | false | false | 4 |
bbd5a78eaa9bf4b57822163377a9e15886a0d270 | 5,566,277,647,118 | a3da251f4a9ec1f6bfb45d7745b85ebaf0b3677c | /java_programs/Lab16.java | 5e4b8bd87d67977b1cb780bb5e644a464a9261d0 | [] | no_license | vinay4545/CoreJavaLabs | https://github.com/vinay4545/CoreJavaLabs | bc04bda44dae03099b3ff5b0510d6275c0f1e25a | 5240331c1bc61adca1310145c0af49bf6997909f | refs/heads/master | 2020-09-09T14:40:22.555000 | 2019-12-20T13:49:12 | 2019-12-20T13:49:12 | 221,473,497 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | class Lab16{
public static void main(String[] as){
final int a=99;
System.out.println(a);
}
} | UTF-8 | Java | 93 | java | Lab16.java | Java | [] | null | [] | class Lab16{
public static void main(String[] as){
final int a=99;
System.out.println(a);
}
} | 93 | 0.709677 | 0.666667 | 6 | 14.666667 | 12.472191 | 37 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 4 |
303e875a76fd9c933ba8e0bb9d5309f594dc6734 | 27,032,524,227,432 | 6ebafbeda386b4d398ffd3976c476a81b2f80350 | /src/main/java/com/datayes/webspider/domain/words/IndexInfo.java | 91c7377aa0e3df899ac51be7a3524562a214bd1a | [] | no_license | ake240/webspider | https://github.com/ake240/webspider | 9072716a38a1824198fac3d8daabe46d58b92ee2 | 1edec87f875b1799db92527871a38c98c635ee4c | refs/heads/master | 2021-01-20T01:45:53.981000 | 2017-04-27T05:45:03 | 2017-04-27T05:45:03 | 89,325,227 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.datayes.webspider.domain.words;
import javax.persistence.*;
import java.util.Date;
/**
* Created by ruihua.huang on 2014/9/1.
* `id` int(11) NOT NULL AUTO_INCREMENT,
* `indexid` int(11) NOT NULL,
* `indexdate` date NOT NULL,
* `indextype` varchar(50) NOT NULL,
* `indexnum` int(11) NOT NULL,
* `inse... | UTF-8 | Java | 1,931 | java | IndexInfo.java | Java | [
{
"context": "tence.*;\nimport java.util.Date;\n\n/**\n * Created by ruihua.huang on 2014/9/1.\n * `id` int(11) NOT NULL AUTO_INCREM",
"end": 127,
"score": 0.9966076612472534,
"start": 115,
"tag": "NAME",
"value": "ruihua.huang"
}
] | null | [] | package com.datayes.webspider.domain.words;
import javax.persistence.*;
import java.util.Date;
/**
* Created by ruihua.huang on 2014/9/1.
* `id` int(11) NOT NULL AUTO_INCREMENT,
* `indexid` int(11) NOT NULL,
* `indexdate` date NOT NULL,
* `indextype` varchar(50) NOT NULL,
* `indexnum` int(11) NOT NULL,
* `inse... | 1,931 | 0.620922 | 0.613672 | 91 | 20.21978 | 15.138047 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.340659 | false | false | 4 |
d9b17668b48d45d869de2d7a16048fb89701e9a2 | 25,589,415,214,898 | d53113d0b5e01aa0dbf9b9ccbcdd5c203caf1214 | /src/main/java/com/jordanluyke/reversi/session/SessionModule.java | 1cba0ca5379dfb315478ea449e329810a33e107e | [
"MIT"
] | permissive | jordanluyke/reversi-core | https://github.com/jordanluyke/reversi-core | db291ed55acc9c3d4d63ce70ebf9b7af13691f2a | 43244044fa1e7363fef9585828fd9e8695171ced | refs/heads/develop | 2022-10-24T12:04:30.030000 | 2022-01-14T08:17:05 | 2022-01-14T08:17:05 | 164,938,150 | 0 | 0 | MIT | false | 2022-10-18T23:50:58 | 2019-01-09T21:07:29 | 2022-01-14T06:32:22 | 2022-10-18T23:50:55 | 411 | 0 | 0 | 4 | Java | false | false | package com.jordanluyke.reversi.session;
import com.google.inject.AbstractModule;
/**
* @author Jordan Luyke <jordanluyke@gmail.com>
*/
public class SessionModule extends AbstractModule {
@Override
protected void configure() {
bind(SessionManager.class).to(SessionManagerImpl.class);
}
}
| UTF-8 | Java | 313 | java | SessionModule.java | Java | [
{
"context": " com.google.inject.AbstractModule;\n\n/**\n * @author Jordan Luyke <jordanluyke@gmail.com>\n */\npublic class SessionM",
"end": 111,
"score": 0.9999006986618042,
"start": 99,
"tag": "NAME",
"value": "Jordan Luyke"
},
{
"context": "ect.AbstractModule;\n\n/**\n * @author ... | null | [] | package com.jordanluyke.reversi.session;
import com.google.inject.AbstractModule;
/**
* @author <NAME> <<EMAIL>>
*/
public class SessionModule extends AbstractModule {
@Override
protected void configure() {
bind(SessionManager.class).to(SessionManagerImpl.class);
}
}
| 293 | 0.731629 | 0.731629 | 14 | 21.357143 | 22.292238 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.214286 | false | false | 4 |
2780965ec6820ad1b9e843d917eecfcb5fe2216e | 22,428,319,263,835 | 34d45e641e69745f367dc86ccdfc9b558fb46d41 | /src/main/java/com/free/callable/process/security/callable/UserToken.java | 5843466015d7147c5b4911adf939db1c9fd0c013 | [] | no_license | wangkaiyan/callapi | https://github.com/wangkaiyan/callapi | 55d6e7170061ce694c164ad625aaee941c023f4d | bf90913843914e5f1ea0a74e30cc8473b5ddb247 | refs/heads/master | 2021-09-03T03:47:00.265000 | 2018-01-05T09:18:08 | 2018-01-05T09:18:08 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.free.callable.process.security.callable;
import java.io.Serializable;
public class UserToken extends SecurityObject implements Serializable{
/**
*
*/
private static final long serialVersionUID = 495004200586315217L;
private String userId;
private String name;
private Integer sourceType;
... | UTF-8 | Java | 1,030 | java | UserToken.java | Java | [] | null | [] | package com.free.callable.process.security.callable;
import java.io.Serializable;
public class UserToken extends SecurityObject implements Serializable{
/**
*
*/
private static final long serialVersionUID = 495004200586315217L;
private String userId;
private String name;
private Integer sourceType;
... | 1,030 | 0.691262 | 0.673786 | 64 | 15.09375 | 18.287392 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.265625 | false | false | 4 |
3dd01106de687720ba5959ccc15839ade12344ca | 33,638,183,916,836 | a3c9d495335fbdf0285dedf32d5e8d1d32812f13 | /src/main/java/com/cspinformatique/blc/braintreePaymentGateway/service/payment/BraintreePaymentGatewayType.java | 422a00202817bada08b0344bd6b47d73ca00a510 | [] | no_license | daniellavoie/broadleaf-braintree | https://github.com/daniellavoie/broadleaf-braintree | 43f89d3b3ae65d8038d18fdd2267d143fcff6a8e | cbe65a37ae9a8f2a5942d1b491b7e843c10a9ae6 | refs/heads/master | 2021-01-10T12:47:37.382000 | 2015-10-01T14:55:52 | 2017-09-18T03:09:11 | 43,502,624 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cspinformatique.blc.braintreePaymentGateway.service.payment;
import org.broadleafcommerce.common.payment.PaymentGatewayType;
public class BraintreePaymentGatewayType extends PaymentGatewayType {
private static final long serialVersionUID = 1L;
public static final PaymentGatewayType BRAINTREE_GAT... | UTF-8 | Java | 599 | java | BraintreePaymentGatewayType.java | Java | [] | null | [] | package com.cspinformatique.blc.braintreePaymentGateway.service.payment;
import org.broadleafcommerce.common.payment.PaymentGatewayType;
public class BraintreePaymentGatewayType extends PaymentGatewayType {
private static final long serialVersionUID = 1L;
public static final PaymentGatewayType BRAINTREE_GAT... | 599 | 0.823038 | 0.821369 | 12 | 47.916668 | 38.930405 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.333333 | false | false | 4 |
2d7209770e56095346110e448fcfde854fe6b1e7 | 9,964,324,160,717 | 510aa3194f7ca2940f3be0de52748734130e23ab | /PeerEvaluationSystem/src/com/anoop/controllers/AddProjectController.java | 152fe394917c6dcca9a67f301c572611388eb17a | [] | no_license | anoopARN/peer-evaluation-system | https://github.com/anoopARN/peer-evaluation-system | c680d9e53ca76b8d573a739cfbf2e3f013150470 | 7d0881aea9ee7c09680a5f4aa73be0d4a66f451c | refs/heads/master | 2016-08-12T04:36:24.523000 | 2016-04-21T21:42:12 | 2016-04-21T21:42:12 | 55,003,850 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.anoop.controllers;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.SQLException;
import java.util.ArrayList;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
... | UTF-8 | Java | 3,704 | java | AddProjectController.java | Java | [] | null | [] | package com.anoop.controllers;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.SQLException;
import java.util.ArrayList;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
... | 3,704 | 0.724892 | 0.723812 | 101 | 34.673267 | 23.456768 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.811881 | false | false | 4 |
1009621d6a8b590f786af1064ce70be888ee9759 | 1,133,871,409,816 | 3c4aa936013e43b01245ee5cb43cb18901495ca4 | /app/src/main/java/edu/byu/cs/tweeter/client/view/main/statuses/StoryFragment.java | 4f145d67d94c83e1aaac68c3cff3c31f1fc2504b | [] | no_license | IanKirkham/TwitterClone | https://github.com/IanKirkham/TwitterClone | 8821e454022fadf8d2d4e97cabf159a82de2805e | 618f5eae541177f6f3c556a0586cdbccafa959c0 | refs/heads/master | 2023-04-11T17:18:59.984000 | 2021-04-19T01:07:29 | 2021-04-19T01:07:29 | 335,175,821 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package edu.byu.cs.tweeter.client.view.main.statuses;
import android.os.Bundle;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.Arrays;
import edu.byu.cs.tweeter.client.view.asyncTasks.GetStoryTask;
import edu.byu.cs.tweeter.model.domain.AuthToken;
import edu.byu.cs.tweeter.model.domain.U... | UTF-8 | Java | 3,037 | java | StoryFragment.java | Java | [] | null | [] | package edu.byu.cs.tweeter.client.view.main.statuses;
import android.os.Bundle;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.Arrays;
import edu.byu.cs.tweeter.client.view.asyncTasks.GetStoryTask;
import edu.byu.cs.tweeter.model.domain.AuthToken;
import edu.byu.cs.tweeter.model.domain.U... | 3,037 | 0.71024 | 0.708923 | 85 | 34.741177 | 30.174456 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.576471 | false | false | 4 |
e9a05ccebaea36a243700fd6fcdd38b5983c6daf | 8,169,027,863,279 | de0cb65c6411587a6e8a5a55538160c234ba6fb7 | /src/br/unifesspa/cre/hetnet/BS.java | 607837cddaf8ef399459e1331a7d4a52b9604066 | [] | no_license | hkuribayashi/CREGA | https://github.com/hkuribayashi/CREGA | 6583b1b2583b6a753a7017f692284710fad1713f | 030883be74b07ea132ce595f54e5c105ef71494a | refs/heads/master | 2020-07-24T09:28:45.940000 | 2020-02-03T16:55:04 | 2020-02-03T16:55:04 | 207,882,409 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.unifesspa.cre.hetnet;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class BS implements Serializable, Cloneable{
private static final long serialVersionUID = -4238233917654767955L;
private Point point;
private Double power;
private Double txGain;
privat... | UTF-8 | Java | 2,193 | java | BS.java | Java | [] | null | [] | package br.unifesspa.cre.hetnet;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class BS implements Serializable, Cloneable{
private static final long serialVersionUID = -4238233917654767955L;
private Point point;
private Double power;
private Double txGain;
privat... | 2,193 | 0.69813 | 0.687643 | 129 | 16.007751 | 16.189526 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.496124 | false | false | 4 |
e6c4bc63d9d53e68ba0d4abfb196d171d394c631 | 8,169,027,863,228 | 5645d9cfb2c7f6c0dab69dc0aebca73d61d75eaf | /part1/week4/src/main/java/Board.java | 84984d7483bcb41bc6f1f677be8e0dcd0480c48c | [] | no_license | jlebedeva/algo1-labs | https://github.com/jlebedeva/algo1-labs | 280b6b177d51193c98b6b8852f581126c4d82353 | 7f91d9745e7fba7105eb252e5997bd4683d16de2 | refs/heads/master | 2016-09-05T21:01:02.649000 | 2016-01-05T20:20:59 | 2016-01-05T20:20:59 | 42,887,797 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Board {
private static final int BLANK = 0;
private final int[][] tiles;
private final int dim;
/**
* construct a board from an N-by-N array of blocks (where blocks[i][j] =
* block in row i, column j)
... | UTF-8 | Java | 5,337 | java | Board.java | Java | [] | null | [] |
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Board {
private static final int BLANK = 0;
private final int[][] tiles;
private final int dim;
/**
* construct a board from an N-by-N array of blocks (where blocks[i][j] =
* block in row i, column j)
... | 5,337 | 0.420274 | 0.413903 | 215 | 23.818605 | 18.168964 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.562791 | false | false | 4 |
4128fcfa6300f3f55e7e16b98aa06701b2204dfc | 25,194,278,206,397 | b2f07f3e27b2162b5ee6896814f96c59c2c17405 | /com/sun/java/swing/plaf/motif/MotifDesktopIconUI.java | 4ae26761138358e162f4596ddf6e61a70e892414 | [] | no_license | weiju-xi/RT-JAR-CODE | https://github.com/weiju-xi/RT-JAR-CODE | e33d4ccd9306d9e63029ddb0c145e620921d2dbd | d5b2590518ffb83596a3aa3849249cf871ab6d4e | refs/heads/master | 2021-09-08T02:36:06.675000 | 2018-03-06T05:27:49 | 2018-03-06T05:27:49 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* */ package com.sun.java.swing.plaf.motif;
/* */
/* */ import java.awt.BorderLayout;
/* */ import java.awt.Color;
/* */ import java.awt.Container;
/* */ import java.awt.Dimension;
/* */ import java.awt.Font;
/* */ import java.awt.FontMetrics;
/* */ import java.awt.Graphics;
/* ... | UTF-8 | Java | 15,552 | java | MotifDesktopIconUI.java | Java | [] | null | [] | /* */ package com.sun.java.swing.plaf.motif;
/* */
/* */ import java.awt.BorderLayout;
/* */ import java.awt.Color;
/* */ import java.awt.Container;
/* */ import java.awt.Dimension;
/* */ import java.awt.Font;
/* */ import java.awt.FontMetrics;
/* */ import java.awt.Graphics;
/* ... | 15,552 | 0.603524 | 0.580375 | 342 | 44.476608 | 37.855965 | 337 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.587719 | false | false | 4 |
88e175c24a0a4d7969b7f01465870b779d46149c | 1,365,799,654,642 | 8f129a81025ebece5e20f222e8253fa8e0a5969f | /src/model/ReturnDAO.java | 3209dfcf449335c968da4ed6eeec482b092f2fe5 | [] | no_license | rael-guimaraes/Xtra-vision-xpress-machine-project | https://github.com/rael-guimaraes/Xtra-vision-xpress-machine-project | 7f0efc0da4cd1a7755f24ea5880bccdef7ffdc43 | fcd621d997f02394f4b2266c7befe2155f0ac1ab | refs/heads/master | 2023-04-23T08:09:50.490000 | 2021-05-18T11:34:27 | 2021-05-18T11:34:27 | 366,033,249 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package model;
import dbconnection.DBConnector;
import entities.Rent;
import exceptions.DataException;
import exceptions.InsertionExce... | UTF-8 | Java | 3,938 | java | ReturnDAO.java | Java | [
{
"context": "nt;\nimport java.time.LocalDate;\n\n/**\n *\n * @author raelg\n */\npublic class ReturnDAO {\n// set returned movi",
"end": 491,
"score": 0.9993430972099304,
"start": 486,
"tag": "USERNAME",
"value": "raelg"
}
] | 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 model;
import dbconnection.DBConnector;
import entities.Rent;
import exceptions.DataException;
import exceptions.InsertionExce... | 3,938 | 0.593702 | 0.593702 | 109 | 35.128441 | 27.158421 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.605505 | false | false | 4 |
3eeedd6e0ef2fa258c5bc3ecdbf519f66aa90311 | 22,136,261,491,703 | 605049431711acb7b3836019a67ade53a47564c2 | /src/main/java/kr/ggang/openplaces/OpenPlacesApplication.java | 54ded37de592b5dcbb068b432f666f1ce22f8219 | [] | no_license | myhalf0716/open-places | https://github.com/myhalf0716/open-places | 84608484addf37cacefc1ab8f8c9f4a600aab866 | 5ad8e33d7ed56650771ef3d7d6c59ec0a7c6c6a0 | refs/heads/main | 2023-03-26T07:57:37.200000 | 2021-03-24T21:01:01 | 2021-03-24T21:01:01 | 349,604,699 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package kr.ggang.openplaces;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.spri... | UTF-8 | Java | 1,232 | java | OpenPlacesApplication.java | Java | [] | null | [] | package kr.ggang.openplaces;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.spri... | 1,232 | 0.826299 | 0.821429 | 37 | 32.297298 | 26.340664 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.594595 | false | false | 4 |
450bb44499ccb65cfbe3ff11d2a5908153cc0fe0 | 28,243,704,996,319 | 71977d32ae6b57f27c2156fdeb924603e21aadc7 | /src/in/qvin/jMinWS/EchoServer.java | 8b697e470a135d8dc7af13cec4abb6ec625c517c | [
"MIT"
] | permissive | qvin-in/jMinWS | https://github.com/qvin-in/jMinWS | 11d3cf9fcf19f4a0e0a4148be3684fc33781bfca | 760f24c6f3f7e9d72f3abfc1825cb917450ab3b5 | refs/heads/master | 2016-02-25T19:05:14.152000 | 2013-04-09T23:39:27 | 2013-04-09T23:39:27 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | // Copyright (c) 2013 Ian G Burleigh <ian.burleigh@gmail.com>
package in.qvin.jMinWS;
public class EchoServer extends in.qvin.jMinWS.SimpleServer {
public EchoServer(int port) throws Exc {
super(port);
}
@Override
protected void onText(String s) {
System.out.println(s);
}
}
// eof
| UTF-8 | Java | 296 | java | EchoServer.java | Java | [
{
"context": "// Copyright (c) 2013 Ian G Burleigh <ian.burleigh@gmail.com>\n\npackage in.qvin.jMinWS;",
"end": 36,
"score": 0.999870777130127,
"start": 22,
"tag": "NAME",
"value": "Ian G Burleigh"
},
{
"context": "// Copyright (c) 2013 Ian G Burleigh <ian.burleigh@gmail.com>\n\npack... | null | [] | // Copyright (c) 2013 <NAME> <<EMAIL>>
package in.qvin.jMinWS;
public class EchoServer extends in.qvin.jMinWS.SimpleServer {
public EchoServer(int port) throws Exc {
super(port);
}
@Override
protected void onText(String s) {
System.out.println(s);
}
}
// eof
| 273 | 0.712838 | 0.699324 | 17 | 16.411764 | 20.50268 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.705882 | false | false | 4 |
ea91d40d17fe919802f6751739e5f7fd59da922a | 28,243,704,999,316 | fd58588bf1a36e1b759c820ef75f787c93152b0c | /admin/src/test/java/com/duoduo/service/Demo.java | e56af9d3f6460952acc3f5851aab733362d6fbe9 | [] | no_license | xuang568/duoduo | https://github.com/xuang568/duoduo | 391335af0863e4de167958968fab75859c17c592 | f1e701da203bc12c5db1bb65ffc2eee8992af4cf | refs/heads/master | 2020-04-24T19:08:32.442000 | 2019-03-04T14:03:47 | 2019-03-04T14:03:47 | 172,202,697 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.duoduo.service;
import java.util.HashMap;
public class Demo {
static final String s="ss";
String aa="";
public void test(){
}
public static void main(String[] args) {
String string="000";
String string2="000";
String string3="00"+"0";
... | UTF-8 | Java | 833 | java | Demo.java | Java | [] | null | [] | package com.duoduo.service;
import java.util.HashMap;
public class Demo {
static final String s="ss";
String aa="";
public void test(){
}
public static void main(String[] args) {
String string="000";
String string2="000";
String string3="00"+"0";
... | 833 | 0.57383 | 0.539016 | 32 | 24.03125 | 17.787785 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 4 |
b79e153dedd2410bc3db1759df5f365c3541454c | 28,243,704,998,367 | 85d0ca7ae8ffaa33db48846c3c748ae2b21844ee | /20210405pm/src/com/login/test/TestLogin.java | 979d5cf6ad4471ddb842b9a80045f69d7f35378a | [] | no_license | iHua-max/iHua-home | https://github.com/iHua-max/iHua-home | f7e64cd597edba42ca7c5515a3f8abfd899ac92d | 7eb1933a6b44fd5d916e8dd06b86a4b0635428f8 | refs/heads/main | 2023-03-29T10:37:26.846000 | 2021-04-05T12:59:54 | 2021-04-05T12:59:54 | 354,776,049 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.login.test;
import com.login.web.LoginAction;
import java.util.Scanner;
/**
* @version V1.0
* @PROJECT: 20210405pm
* @Package com.login.test
* @Description: 测试登录功能
* @author: 杜文华
* @date: 2021/4/5 20:35
*/
public class TestLogin {
public static void main(String[] args) {
... | UTF-8 | Java | 824 | java | TestLogin.java | Java | [
{
"context": ".login.test\r\n * @Description: 测试登录功能\r\n * @author: 杜文华\r\n * @date: 2021/4/5 20:35\r\n */\r\npublic class Test",
"end": 209,
"score": 0.9998207688331604,
"start": 206,
"tag": "NAME",
"value": "杜文华"
}
] | null | [] | package com.login.test;
import com.login.web.LoginAction;
import java.util.Scanner;
/**
* @version V1.0
* @PROJECT: 20210405pm
* @Package com.login.test
* @Description: 测试登录功能
* @author: 杜文华
* @date: 2021/4/5 20:35
*/
public class TestLogin {
public static void main(String[] args) {
... | 824 | 0.559586 | 0.533679 | 31 | 22.967741 | 15.434531 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.419355 | false | false | 4 |
c5b52bf24aad4c0a47db7c43eea9e8fad84eacae | 20,289,425,571,128 | 0b2f3d09f25688c40409adecc39a204fab162fa1 | /app/src/main/java/com/example/kgaitonde/finalproject/RVInboxViewAdapter.java | 3632fcd3fac2eddeb30195fe6031dd66fee5c5d9 | [] | no_license | kirangaitonde/uncc-AndroidFinalProject | https://github.com/kirangaitonde/uncc-AndroidFinalProject | fd32c874587caf2dd0725d27edebf940ecd9822f | 20988f6d1f9f36f917a44a88a76257a460f6fb46 | refs/heads/master | 2021-01-10T08:26:22.595000 | 2016-01-08T02:21:21 | 2016-01-08T02:21:21 | 49,243,761 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.kgaitonde.finalproject;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v7.widget.CardView;
import android.support.v7.... | UTF-8 | Java | 4,734 | java | RVInboxViewAdapter.java | Java | [
{
"context": "package com.example.kgaitonde.finalproject;\n\nimport android.app.AlertDialog",
"end": 25,
"score": 0.5835262537002563,
"start": 20,
"tag": "USERNAME",
"value": "kgait"
},
{
"context": "seUser;\n\nimport java.util.List;\n\n/**\n * Created by kgaitonde on 12/11/2015.\n *... | null | [] | package com.example.kgaitonde.finalproject;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v7.widget.CardView;
import android.support.v7.... | 4,734 | 0.642163 | 0.639839 | 142 | 32.34507 | 29.031078 | 126 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.570423 | false | false | 4 |
972f0f5a56ca6bee7f1da14b95524a933b6010ee | 30,691,836,366,256 | 79e2c4bbae6774b3b83769b792b0a13851f75b08 | /common/src/test/java/easycare/service/report/ChartOptionsTest.java | 16389c4998af969a9d4cd975258722e5d188d82a | [] | no_license | mikessun/reports-repo | https://github.com/mikessun/reports-repo | 782916378ec3753c7c42db8a85c2313e588d41e0 | b2f44c22547ef777402716393debb58039b39b5c | refs/heads/master | 2019-01-19T20:11:40.844000 | 2016-04-15T23:08:32 | 2016-04-15T23:08:32 | 56,277,427 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package easycare.service.report;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.springframework.context.i18n.LocaleContextHolder;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockR... | UTF-8 | Java | 8,604 | java | ChartOptionsTest.java | Java | [] | null | [] | package easycare.service.report;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.springframework.context.i18n.LocaleContextHolder;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockR... | 8,604 | 0.696072 | 0.668061 | 177 | 47.610168 | 24.340347 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.451977 | false | false | 4 |
de6e196a304883e3f81873f0051b7ed1df0a5d9e | 18,562,848,714,266 | 7dd254edbf156734bbbfd84ced67ca315471aa5c | /src/main/java/fr/ippon/kompetitors/web/rest/TechServicesResource.java | b7f0d3c9adac2bd78d6b8fd5ed2cd403c3bb0543 | [] | no_license | levitesm/Kompetitors | https://github.com/levitesm/Kompetitors | a51ff47f6b4231f78202180df84415ff088ae8e6 | 40ca28d1c6d16221e71bdb003144c13807ed440c | refs/heads/master | 2022-12-03T01:55:05.222000 | 2020-08-24T15:19:09 | 2020-08-24T15:19:09 | 289,886,793 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package fr.ippon.kompetitors.web.rest;
import fr.ippon.kompetitors.service.TechServicesService;
import fr.ippon.kompetitors.web.rest.errors.BadRequestAlertException;
import fr.ippon.kompetitors.service.dto.TechServicesDTO;
import io.github.jhipster.web.util.HeaderUtil;
import io.github.jhipster.web.util.ResponseUtil;... | UTF-8 | Java | 6,751 | java | TechServicesResource.java | Java | [] | null | [] | package fr.ippon.kompetitors.web.rest;
import fr.ippon.kompetitors.service.TechServicesService;
import fr.ippon.kompetitors.web.rest.errors.BadRequestAlertException;
import fr.ippon.kompetitors.service.dto.TechServicesDTO;
import io.github.jhipster.web.util.HeaderUtil;
import io.github.jhipster.web.util.ResponseUtil;... | 6,751 | 0.691749 | 0.686565 | 152 | 43.414474 | 39.405857 | 194 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.447368 | false | false | 4 |
20d5868d22582bb95201f9a5490c897ea2f3ea68 | 13,056,700,637,306 | a395bddc0035d4e8fd7245f7240882d9ff030c92 | /src/client/GetScreenCaptureStreamThread.java | 74754bca4556577a12797f9081c3477b33e814a5 | [] | no_license | imCorgism/ScreenShare | https://github.com/imCorgism/ScreenShare | 724ea98fe440be0bca4a28ce3f1563eedad7bf59 | 7e55e686ccf7136b2ac4e9debfeeed0107f4b1d4 | refs/heads/master | 2020-03-08T22:38:08.459000 | 2016-06-27T07:24:07 | 2016-06-27T07:24:07 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package client;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;
import javax.imageio.ImageIO;
public class GetScreenCaptureStreamThread implements Runnable {
public static final int PORT = 7789;
public static final String IP_ADDR = "lo... | GB18030 | Java | 987 | java | GetScreenCaptureStreamThread.java | Java | [] | null | [] | package client;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;
import javax.imageio.ImageIO;
public class GetScreenCaptureStreamThread implements Runnable {
public static final int PORT = 7789;
public static final String IP_ADDR = "lo... | 987 | 0.689655 | 0.685475 | 42 | 20.785715 | 18.984375 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.928571 | false | false | 4 |
d53066a605ee82a149412a49e9bb9a83de0c1f4d | 32,908,039,473,515 | 80b9eb44a01283477d6f7ffa0afe9f718a6676c0 | /trunk/org.mwc.asset.VesselMonitor/src/com/borlander/rac525791/dashboard/rotatable/AbstractGradientDecoration.java | 82cefa00031f654cf32b64aa6e6a9c76b6b30db5 | [] | no_license | jesseeichar/debrief | https://github.com/jesseeichar/debrief | ddc70cde1b37dd07ed8a99020e3e50c1ccb2e4f8 | 0b6ce0692eb1857fd492347ffee65bb649254a37 | refs/heads/master | 2023-05-30T22:33:40.006000 | 2013-05-03T17:15:55 | 2013-05-03T17:15:55 | 8,770,845 | 2 | 1 | null | false | 2013-05-01T06:59:26 | 2013-03-14T08:08:49 | 2013-05-01T06:59:25 | 2013-05-01T06:59:25 | 204,436 | null | 1 | 0 | Java | null | null | package com.borlander.rac525791.dashboard.rotatable;
import org.eclipse.draw2d.Graphics;
import org.eclipse.draw2d.geometry.PointList;
import org.eclipse.draw2d.geometry.Rectangle;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Pattern;
import com.borlander.rac52579... | UTF-8 | Java | 2,565 | java | AbstractGradientDecoration.java | Java | [] | null | [] | package com.borlander.rac525791.dashboard.rotatable;
import org.eclipse.draw2d.Graphics;
import org.eclipse.draw2d.geometry.PointList;
import org.eclipse.draw2d.geometry.Rectangle;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Pattern;
import com.borlander.rac52579... | 2,565 | 0.732164 | 0.724756 | 107 | 22.981308 | 20.031275 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.906542 | false | false | 4 |
f2774e5dbc01f570a2fa995e7d7d7fbf52f317c3 | 20,401,094,717,457 | feca0b78143b292ab56585311b4559ed40bd6b75 | /src/azr/Azr_remoteprompt.java | 279eb9630ba06887caf0d0b28307c26e2d7e4ef2 | [] | no_license | avatsaev/AZR-RemotePromptServer | https://github.com/avatsaev/AZR-RemotePromptServer | 45d299f2a4adebcbfcf3dccc08d993b5140c266c | b6d1e9c116fd910797bb7ebc522414796e36a9cb | refs/heads/master | 2021-01-19T08:07:30.080000 | 2012-11-28T10:43:19 | 2012-11-28T10:43:19 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package azr;
/**
* SocketDemo.java
*
* Copyright © 1998-2011 Research In Motion Ltd.
*
* Note: For the sake of simplicity, this sample application may not leverage
* resource bundles and resource strings. However, it is STRONGLY recommended
* that application developers make use of the localization ... | WINDOWS-1252 | Java | 2,081 | java | Azr_remoteprompt.java | Java | [] | null | [] |
package azr;
/**
* SocketDemo.java
*
* Copyright © 1998-2011 Research In Motion Ltd.
*
* Note: For the sake of simplicity, this sample application may not leverage
* resource bundles and resource strings. However, it is STRONGLY recommended
* that application developers make use of the localization ... | 2,081 | 0.664904 | 0.661058 | 62 | 31.483871 | 28.914078 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.209677 | false | false | 4 |
a5555a220a096723ea4c434c51ea998896c50362 | 15,805,479,713,779 | b1eee7989acdad29096ef323a7609b5af2828792 | /AppDyC/PjBuzonTributario/src/main/java/mx/gob/sat/mat/buzontrib/util/recurso/BuzonTribFechaUtil.java | 27ca6cfb2e101475e1093f8dbad626ac3d26e102 | [] | no_license | xtaticzero/AppDyC | https://github.com/xtaticzero/AppDyC | 2185e5d25840ddbb73d0de6c6c0d61a497a6cdfa | 1562a358558323ef6adb84fb0e70ba7560200bda | refs/heads/master | 2021-09-09T21:50:41.930000 | 2018-03-19T21:38:45 | 2018-03-19T21:38:45 | 73,757,634 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Todos los Derechos Reservados 2016 SAT.
* Servicio de Administracion Tributaria (SAT).
*
* Este software contiene informacion propiedad exclusiva del SAT considerada
* Confidencial. Queda totalmente prohibido su uso o divulgacion en forma.
*/
package mx.gob.sat.mat.buzontrib.util.recurso;
import java.text... | UTF-8 | Java | 813 | java | BuzonTribFechaUtil.java | Java | [
{
"context": "ort java.text.SimpleDateFormat;\n\n/**\n *\n * @author GAER8674\n */\npublic final class BuzonTribFechaUtil {\n p",
"end": 399,
"score": 0.9995932579040527,
"start": 391,
"tag": "USERNAME",
"value": "GAER8674"
}
] | null | [] | /*
* Todos los Derechos Reservados 2016 SAT.
* Servicio de Administracion Tributaria (SAT).
*
* Este software contiene informacion propiedad exclusiva del SAT considerada
* Confidencial. Queda totalmente prohibido su uso o divulgacion en forma.
*/
package mx.gob.sat.mat.buzontrib.util.recurso;
import java.text... | 813 | 0.696187 | 0.686347 | 31 | 25.225807 | 25.435192 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.258065 | false | false | 4 |
80b08317ef2977cb41eb6fef98aabc6dd7c7c63d | 3,848,290,751,426 | 41e443fa7ff6b25ce7b57f55b1cec561281e8f65 | /RepositoryDriver_projects/RepositoryAPI/srcOfp/org/irisa/triskell/MT/repository/API/Java/MetaAttribute.java | ac234340addff92c05829b356dd7300a8b53dc50 | [] | no_license | diverse-project/mtl | https://github.com/diverse-project/mtl | 5ee26c629b2e4f025f9bc58c1b89afdfc7dd5116 | 8182d969fb54600c13738412f4c6f947f044f865 | refs/heads/master | 2021-08-22T08:11:27.101000 | 2020-09-15T09:16:49 | 2020-09-15T09:16:49 | 295,421,411 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.irisa.triskell.MT.repository.API.Java;
import org.irisa.triskell.MT.DataTypes.Java.*;
import java.lang.*;
public interface MetaAttribute
extends org.irisa.triskell.MT.repository.API.Java.MetaFeature
{
}
| UTF-8 | Java | 222 | java | MetaAttribute.java | Java | [] | null | [] | package org.irisa.triskell.MT.repository.API.Java;
import org.irisa.triskell.MT.DataTypes.Java.*;
import java.lang.*;
public interface MetaAttribute
extends org.irisa.triskell.MT.repository.API.Java.MetaFeature
{
}
| 222 | 0.783784 | 0.783784 | 9 | 23.666666 | 23.860706 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 4 |
ec785590ab5ca6f8437b88d26d28616fa5b74b3e | 16,123,307,275,879 | 6a2d46325bdf31b195b76c83aa500c35dd4a1ac2 | /geode-core/src/test/java/org/apache/geode/distributed/LocatorLauncherIntegrationTest.java | 5b53c6a33f2a269880232f726642ad2bebcc5976 | [
"Apache-2.0",
"LicenseRef-scancode-unknown",
"ISC",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"MIT"
] | permissive | ymahajan/geode | https://github.com/ymahajan/geode | b7047fc47e3281f45694172abb25249218c9d799 | 76c498385995a9aabefd7523f057e32dd9d4a8fa | refs/heads/develop | 2021-06-25T18:13:16.511000 | 2017-04-17T21:53:00 | 2017-04-19T16:38:02 | 88,777,707 | 0 | 0 | Apache-2.0 | true | 2021-06-14T23:21:37 | 2017-04-19T18:29:29 | 2017-04-19T18:29:46 | 2021-06-14T23:21:27 | 125,939 | 0 | 0 | 1 | Java | false | false | /*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not ... | UTF-8 | Java | 10,448 | java | LocatorLauncherIntegrationTest.java | Java | [
{
"context": " assertThat(builder.getMemberName()).isEqualTo(\"memberOne\");\n assertThat(builder.getPid()).isNull();\n ",
"end": 4412,
"score": 0.9886314272880554,
"start": 4403,
"tag": "USERNAME",
"value": "memberOne"
},
{
"context": "rties();\n gemfireProperties.setPrope... | 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 may not ... | 10,448 | 0.76072 | 0.757178 | 231 | 44.229439 | 32.659653 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.502164 | false | false | 4 |
b05dd5adf90438e3439739a88e9ffc1359a72cc1 | 17,188,459,187,893 | 27fbb3467767972a01f1e61cdf4d317de855ea15 | /src/main/java/cr0s/warpdrive/GravityManager.java | 9b41ec8aa37fdc29a3914b6e8e61b91a9437c931 | [] | no_license | TheNumenorean/WarpDrive | https://github.com/TheNumenorean/WarpDrive | be30596987ce09aecabfaafe4c38459b2fe9e251 | dc45e27f6de13bd67f016d029ba693727bd0f587 | refs/heads/TDK | 2021-01-17T21:10:19.461000 | 2015-08-08T02:28:01 | 2015-08-08T02:28:01 | 38,909,355 | 1 | 0 | null | true | 2015-08-08T02:18:08 | 2015-07-11T01:43:26 | 2015-07-23T06:12:53 | 2015-08-08T02:18:07 | 3,622 | 1 | 0 | 0 | Java | null | null | package cr0s.warpdrive;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.MathHelper;
public class GravityManager
{
private static double OVERWORLD_ENTITY_GRAVITY... | UTF-8 | Java | 4,616 | java | GravityManager.java | Java | [] | null | [] | package cr0s.warpdrive;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.MathHelper;
public class GravityManager
{
private static double OVERWORLD_ENTITY_GRAVITY... | 4,616 | 0.568458 | 0.538562 | 130 | 34.50769 | 33.560333 | 174 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.538462 | false | false | 4 |
6e902e1e4eebfaee5d6d8d66bb5c98f6c56db445 | 2,671,469,721,991 | 0dda17086988b498bec59efc5a443fc187d49e63 | /AbstractClasses2/src/AbstractClasses2/Driveable.java | 5811e5da932fa6c99b10ffa2c58a040f736f2b60 | [] | no_license | zoechbauer/java-extended-course | https://github.com/zoechbauer/java-extended-course | fd4420cd737e99631a6999eb9c2190c03fea2112 | a37472b2a3afb20141c83494c70149be1f28d23f | refs/heads/master | 2022-11-21T22:39:47.778000 | 2020-07-29T16:58:40 | 2020-07-29T16:58:40 | 281,894,373 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package AbstractClasses2;
public interface Driveable {
void openDoor();
}
| UTF-8 | Java | 79 | java | Driveable.java | Java | [] | null | [] | package AbstractClasses2;
public interface Driveable {
void openDoor();
}
| 79 | 0.746835 | 0.734177 | 7 | 10.285714 | 11.707315 | 28 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 4 |
61b41f31dea4a77183abcfe50a1648782d65b3cc | 17,008,070,550,524 | e60d83c69631a0978aa06666b4db7fb0bd97d785 | /app/src/main/java/com/codingee/trackamon/SliderAdapter.java | 1550447567dcc980c3a0aa628d717e1ef886c705 | [] | no_license | Shatabanwar/Trackomon | https://github.com/Shatabanwar/Trackomon | a946041ec83e4dc8e057bbe344eeadee186c4958 | 3e9523c2cb266b90698e97bd3fe5ae724bf58463 | refs/heads/master | 2022-02-27T19:35:57.024000 | 2019-09-08T14:23:14 | 2019-09-08T14:23:14 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.codingee.trackamon;
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.v4.view.PagerAdapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.RelativeLayout;
imp... | UTF-8 | Java | 2,132 | java | SliderAdapter.java | Java | [] | null | [] | package com.codingee.trackamon;
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.v4.view.PagerAdapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.RelativeLayout;
imp... | 2,132 | 0.703565 | 0.700281 | 76 | 27.052631 | 26.831293 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.631579 | false | false | 4 |
3bdd32ccd5497698d68c4e07f3fc36e00ace0b73 | 17,008,070,549,825 | aa36a2d2134889841043bb62ee9bed0fa4f91519 | /src/test/java/cloud/martinodutto/wtsapi/api/end/EndIT.java | fb5abad3a4d50486b13fb4f70580753259afad56 | [] | no_license | martinodutto/windows-task-scheduler-api | https://github.com/martinodutto/windows-task-scheduler-api | 14c49199f19b1645612f6f8ef6eb986e65fa162a | 4f45e9cd112830de74827b389d773de9c5f60275 | refs/heads/master | 2020-08-24T13:16:58.624000 | 2019-10-23T07:35:48 | 2019-10-23T07:35:48 | 216,832,915 | 5 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cloud.martinodutto.wtsapi.api.end;
import cloud.martinodutto.wtsapi.api.run.Run;
import cloud.martinodutto.wtsapi.configuration.LocalConfigurationParameters;
import cloud.martinodutto.wtsapi.exceptions.TaskNotFoundException;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import static org.jun... | UTF-8 | Java | 1,222 | java | EndIT.java | Java | [] | null | [] | package cloud.martinodutto.wtsapi.api.end;
import cloud.martinodutto.wtsapi.api.run.Run;
import cloud.martinodutto.wtsapi.configuration.LocalConfigurationParameters;
import cloud.martinodutto.wtsapi.exceptions.TaskNotFoundException;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import static org.jun... | 1,222 | 0.726678 | 0.723404 | 35 | 33.914288 | 29.426296 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 4 |
d401a393ec2a3515426e2fa8f5c018df40d5749b | 25,082,609,057,358 | aca96f2e2242057024a4ba96a5e00ca9f9c2c41a | /src/main/java/com/base/biz/RouteBiz.java | 0428ddaa3a3a1e1c2ff6386d6290741b85a3982d | [] | no_license | gyb123456/MyGradle | https://github.com/gyb123456/MyGradle | 83ffafbfa2451864be66c4596f605a9ad95a7dc4 | ab8a4bc5885ccad1787b781e7f4da83e8ef99eef | refs/heads/master | 2021-01-17T15:35:48.913000 | 2017-06-26T10:30:56 | 2017-06-26T10:30:56 | 95,423,936 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.base.biz;
import java.util.List;
import java.util.Map;
import com.base.po.Route;
/**线路表相关接口
* @author yaomin
* */
public interface RouteBiz {
/**分页查询
* @param page 当前页数
* @param num 每页的数据量
* @param routeNum 线路编号
* @return List<Route>
*/
public List<Route> findByPageAndPa... | UTF-8 | Java | 1,674 | java | RouteBiz.java | Java | [
{
"context": "mport com.base.po.Route;\r\n\r\n/**线路表相关接口\r\n * @author yaomin\r\n * */\r\npublic interface RouteBiz {\r\n\t\r\n\t/**分页查询\r",
"end": 132,
"score": 0.9995934367179871,
"start": 126,
"tag": "USERNAME",
"value": "yaomin"
}
] | null | [] | package com.base.biz;
import java.util.List;
import java.util.Map;
import com.base.po.Route;
/**线路表相关接口
* @author yaomin
* */
public interface RouteBiz {
/**分页查询
* @param page 当前页数
* @param num 每页的数据量
* @param routeNum 线路编号
* @return List<Route>
*/
public List<Route> findByPageAndPa... | 1,674 | 0.655587 | 0.649929 | 55 | 23.709091 | 24.996489 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.436364 | false | false | 4 |
3e06cf4172446a32fea91663d6e020f537b481ae | 21,457,656,650,863 | a1b3eff038cb18ce9a914218d442c90fdd9359cb | /app/src/main/java/com/example/quanlythuoctay/ChiTietBanViewAdapter.java | 89de8f34cd4741c360b63c6a4e1e7dd9b5b0a09f | [] | no_license | taetae301296/QuanLyThuocTay | https://github.com/taetae301296/QuanLyThuocTay | e66eed7d6b28a50d15b7d91667a5e46c1e3d2be7 | 82b773945b73fa9a832441281cfdb384b55b072c | refs/heads/master | 2020-05-19T05:46:37.485000 | 2019-05-04T19:47:38 | 2019-05-04T19:47:38 | 184,856,425 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.quanlythuoctay;
public class ChiTietBanViewAdapter {
}
| UTF-8 | Java | 76 | java | ChiTietBanViewAdapter.java | Java | [] | null | [] | package com.example.quanlythuoctay;
public class ChiTietBanViewAdapter {
}
| 76 | 0.828947 | 0.828947 | 4 | 18 | 17.507141 | 36 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 4 |
57bf5fd448c4433f676702f029ba92554f5ed66a | 3,736,621,575,539 | 62be8e6bff7103db12ca7e205a5f217d7208e9e5 | /dopstore/app/src/main/java/com/dopstore/mall/shop/bean/ActivityDetailBean.java | 5610df635507bccd15bf3f7be30f533205fca4e3 | [] | no_license | weixicheng/dopstore | https://github.com/weixicheng/dopstore | 7fd44464dcfcbb43d59665e8b93587ae28025507 | 788c90ade751d23a7bb7a111cbf3472416f4c8dc | refs/heads/master | 2021-01-14T13:07:31.898000 | 2016-11-01T08:19:31 | 2016-11-01T08:19:36 | 68,489,975 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dopstore.mall.shop.bean;
import android.text.TextUtils;
import com.dopstore.mall.activity.bean.ShopData;
import java.io.Serializable;
import java.util.List;
/**
* 作者:xicheng on 16/9/23 10:31
* 类别:
*/
public class ActivityDetailBean implements Serializable {
private String id;
private String n... | UTF-8 | Java | 4,128 | java | ActivityDetailBean.java | Java | [
{
"context": "o.Serializable;\nimport java.util.List;\n\n/**\n * 作者:xicheng on 16/9/23 10:31\n * 类别:\n */\npublic class Activity",
"end": 190,
"score": 0.9986371397972107,
"start": 183,
"tag": "USERNAME",
"value": "xicheng"
}
] | null | [] | package com.dopstore.mall.shop.bean;
import android.text.TextUtils;
import com.dopstore.mall.activity.bean.ShopData;
import java.io.Serializable;
import java.util.List;
/**
* 作者:xicheng on 16/9/23 10:31
* 类别:
*/
public class ActivityDetailBean implements Serializable {
private String id;
private String n... | 4,128 | 0.545675 | 0.543489 | 201 | 19.477612 | 15.380117 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 4 |
f378e43aa3f90ecb38cf803ea68581c9be30976e | 19,335,942,804,117 | 17744b84b86c701ba3dffb56fe7fa6f75bde346c | /Android/StoreManagement/app/src/main/java/com/example/dellcorei3/storemanagement/store/manager/ShiftActivity.java | 54a191ba10d4a7664b851c08d22b1b37e0ddef42 | [] | no_license | zhaoz25/store-management-app | https://github.com/zhaoz25/store-management-app | 4d961ece3eef719de0d2a37f5ef005bf294e806a | 6929e5c8dd13732b4868c80e74f472192fd64860 | refs/heads/master | 2021-01-19T13:37:45.755000 | 2017-12-13T14:46:14 | 2017-12-13T14:46:14 | 100,846,613 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.dellcorei3.storemanagement.store.manager;
import android.app.TimePickerDialog;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.util.Log;
import android.view.ContextMenu;
import android.view.MenuI... | UTF-8 | Java | 7,696 | java | ShiftActivity.java | Java | [
{
"context": "\n String key = mDatabase.child(\"calamviec\").push().getKey();\n mDatabase.ch",
"end": 2897,
"score": 0.5414037704467773,
"start": 2893,
"tag": "KEY",
"value": "amvi"
}
] | null | [] | package com.example.dellcorei3.storemanagement.store.manager;
import android.app.TimePickerDialog;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.util.Log;
import android.view.ContextMenu;
import android.view.MenuI... | 7,696 | 0.595001 | 0.594216 | 213 | 34.877934 | 27.836952 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.610329 | false | false | 4 |
f371ccb8803024d748e61a7ae1e00c0fa92fc692 | 26,620,207,319,712 | e97e1eb9b0430f35dd997f32a7db3044593d98f0 | /plugins/html-plugin/src/main/java/ru/sbtqa/tag/pagefactory/HTMLPage.java | d2b6ea39a331cee81414e22dd421ed6fb4da2fec | [
"Apache-2.0"
] | permissive | sbtqa/page-factory-2 | https://github.com/sbtqa/page-factory-2 | a2220980f998f058943d87196c8560ef8795b1f1 | aba439524121d94a97b149924075cbf6f61aa1e5 | refs/heads/master | 2023-09-01T04:24:31.044000 | 2023-08-30T12:39:48 | 2023-08-30T12:39:48 | 94,770,143 | 68 | 34 | NOASSERTION | false | 2023-08-30T12:01:17 | 2017-06-19T11:35:17 | 2023-08-26T20:12:20 | 2023-08-30T12:01:16 | 21,023 | 53 | 28 | 3 | Java | false | false | package ru.sbtqa.tag.pagefactory;
import org.junit.Assert;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.pagefactory.FieldDecorator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import ru.sbtqa.tag.pagefactory.actions.PageAction... | UTF-8 | Java | 3,105 | java | HTMLPage.java | Java | [] | null | [] | package ru.sbtqa.tag.pagefactory;
import org.junit.Assert;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.pagefactory.FieldDecorator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import ru.sbtqa.tag.pagefactory.actions.PageAction... | 3,105 | 0.720451 | 0.719807 | 83 | 36.409637 | 28.372326 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.60241 | false | false | 4 |
dc7122705ccfcf9fa0eedea58c4c8b43b7493b4f | 25,391,846,686,787 | f6368722dbf696f14be80228b2a37b4245144b55 | /core/src/com/towerdefense/game/board/Level.java | be0f3dbf09cfc59a4958f30ff5c188a260162244 | [] | no_license | EugenHotaj/TowerDefense | https://github.com/EugenHotaj/TowerDefense | feb2d485d17b5b754a26751ea5e0e223f699c5c2 | 282b091734d71f0b06704104475ea37498e2c0c8 | refs/heads/master | 2016-03-26T13:36:43.698000 | 2015-08-28T20:24:22 | 2015-08-28T20:24:22 | 40,466,037 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.towerdefense.game.board;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.math.Vector2;
import com.towerdefense.game.actors.Enemy;
import com.towerdefense.game.board.tile.Tile;
imp... | UTF-8 | Java | 3,664 | java | Level.java | Java | [
{
"context": "port java.util.StringTokenizer;\n\n/**\n * Created by esh322 on 8/13/15.\n */\npublic class Level{\n\n private ",
"end": 537,
"score": 0.9996281862258911,
"start": 531,
"tag": "USERNAME",
"value": "esh322"
}
] | null | [] | package com.towerdefense.game.board;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.math.Vector2;
import com.towerdefense.game.actors.Enemy;
import com.towerdefense.game.board.tile.Tile;
imp... | 3,664 | 0.58488 | 0.578057 | 120 | 29.533333 | 22.879734 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.608333 | false | false | 4 |
107905dde738afc7b07463336bfec30ce46e42ff | 24,026,047,082,377 | e56155e0c88c9b718186967d81cebf9d05434339 | /src/controllers/GameController.java | 005940598b6f65a897ecc9f5a6729856c0add08f | [] | no_license | fruitwasp/de_slimste_mens-game-java | https://github.com/fruitwasp/de_slimste_mens-game-java | b536a9ae5e08b82d2d618242600a036e15004b81 | 95101c8e78a40974a1ba8c5183676f31d88b7de9 | refs/heads/master | 2016-09-14T09:57:16.656000 | 2016-05-19T21:01:54 | 2016-05-19T21:01:54 | 59,242,410 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package controllers;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import javax.swing.JOptionPane;
import models.Answer;
import models.Attempt;
import models.Game;
import models.Question;
import models.Round;
import models.Subquestion;
import models.Turn;
import observer.ChatOb... | UTF-8 | Java | 29,173 | java | GameController.java | Java | [
{
"context": ".vraag_id = v.vraag_id \"\n\t\t\t+ \"WHERE speler = '\" + username + \"' AND sva.rondenaam = '\" + roundName + \"' \"\n\t\t",
"end": 10224,
"score": 0.662804126739502,
"start": 10216,
"tag": "USERNAME",
"value": "username"
}
] | null | [] | package controllers;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import javax.swing.JOptionPane;
import models.Answer;
import models.Attempt;
import models.Game;
import models.Question;
import models.Round;
import models.Subquestion;
import models.Turn;
import observer.ChatOb... | 29,173 | 0.653789 | 0.649676 | 1,115 | 25.164125 | 29.785616 | 292 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.944395 | false | false | 4 |
c61e2def0c27a5bf7f658a22f21a332b4d24be08 | 14,465,449,889,554 | fd29235a9176e2789e7a636b20d3cef766e90684 | /facade/src/test/java/fr/univartois/ili/fsnet/filter/test/FilterInteractionByUserGroupTest.java | e1f728173b56f72f3ae771a200bfc1baa1ced546 | [] | no_license | bhaumik156/fsnet | https://github.com/bhaumik156/fsnet | 6cb2c6766dfa1302573d2891400976790024a682 | e68bf5f9697bbd18f3f3b82b857e7112786d4914 | refs/heads/master | 2021-01-22T22:45:13.244000 | 2013-03-21T09:01:41 | 2013-03-21T09:01:41 | 34,977,039 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package fr.univartois.ili.fsnet.filter.test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import org.junit.Before;
import org.junit.Test;
import fr.... | UTF-8 | Java | 2,654 | java | FilterInteractionByUserGroupTest.java | Java | [
{
"context": "ntityManager();\t\n\t\t\n\t\tmouloud = new SocialEntity(\"Goutal\", \"Mouloud\", \"ouai@aaaa.fr\");\n\t\talan = new Social",
"end": 1209,
"score": 0.9955759048461914,
"start": 1203,
"tag": "NAME",
"value": "Goutal"
},
{
"context": "er();\t\n\t\t\n\t\tmouloud = new Socia... | null | [] | package fr.univartois.ili.fsnet.filter.test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import org.junit.Before;
import org.junit.Test;
import fr.... | 2,636 | 0.78523 | 0.778071 | 72 | 35.861111 | 26.512213 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.388889 | false | false | 4 |
97df93fdcd5d91a545f915089080798ddfd7f276 | 33,457,795,267,170 | 6fafe7bbd826d0f054ac0195efb5eb750be8de18 | /app/src/main/java/com/rdc/project/traveltrace/fragment/PersonDetailFragment.java | 52c0888f4d6c7739d1e630e9cac840ea56d68247 | [] | no_license | sufushi/TravelTrace | https://github.com/sufushi/TravelTrace | fac6d35d2e70c8cc7b3f5b26e2900da9bc4d67df | 3ea4642f457c6ffcf0b0c2ad5f30fa6838f0121e | refs/heads/master | 2020-04-24T04:59:06.038000 | 2019-05-16T15:08:01 | 2019-05-16T15:08:01 | 171,722,106 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.rdc.project.traveltrace.fragment;
import android.Manifest;
import android.os.Bundle;
import android.support.v4.content.res.ResourcesCompat;
import android.text.TextUtils;
import android.view.View;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;
import... | UTF-8 | Java | 13,113 | java | PersonDetailFragment.java | Java | [
{
"context": "xt) {\n final String key = \"password\" + \"[\" + BmobUser.getCurrentUser(User.class).getO",
"end": 6422,
"score": 0.9886904358863831,
"start": 6414,
"tag": "KEY",
"value": "password"
},
{
"context": "ing) SharePreferenceUtil.get(getActivity(), ke... | null | [] | package com.rdc.project.traveltrace.fragment;
import android.Manifest;
import android.os.Bundle;
import android.support.v4.content.res.ResourcesCompat;
import android.text.TextUtils;
import android.view.View;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;
import... | 13,119 | 0.609919 | 0.60892 | 342 | 37.026318 | 30.151409 | 142 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.52924 | false | false | 4 |
372b55ea5838c4275ede3e1930d4b20fc9c4e29b | 197,568,534,276 | f56d69877739e93efdfcbf088a0b530de47ac2cc | /src/main/java/com/demo/service/impl/UserServiceImpl.java | 8901c5c9fe5a6021eefc0516d05c0bef1e75539f | [] | no_license | helloPei/springboot-mapper | https://github.com/helloPei/springboot-mapper | aef3847d04f6b2f2567b3f3f4b5a9d236b275fd4 | 4d24db951f6c06a86db5405e67c33b16105c831e | refs/heads/master | 2020-05-31T17:29:07.030000 | 2019-06-07T13:14:06 | 2019-06-07T13:14:06 | 190,409,319 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.demo.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.demo.mapper.UserMapper;
import com.demo.pojo.User;
import com.demo.service.UserService;
import com.github.pagehelper.PageHelper;
im... | UTF-8 | Java | 979 | java | UserServiceImpl.java | Java | [
{
"context": "agehelper.PageInfo;\r\n/**\r\n * User接口实现类\r\n * @author Administrator\r\n *\r\n */\r\n@Service\r\npublic class UserServiceImpl ",
"end": 401,
"score": 0.9133082628250122,
"start": 388,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package com.demo.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.demo.mapper.UserMapper;
import com.demo.pojo.User;
import com.demo.service.UserService;
import com.github.pagehelper.PageHelper;
im... | 979 | 0.725028 | 0.721661 | 35 | 23.514286 | 19.16749 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 4 |
50829cd7f5161ee094bcebdc2ef4d24fc9090db1 | 24,060,406,822,190 | 88717c7d53d5d9b31aab76d369574fb6085e5539 | /src/java/controller/CameraServlet.java | d7b0f429ffe4f510c395e5b6d3b43325b8713939 | [] | no_license | Mihirjadhav2/Online-Grocery-Store | https://github.com/Mihirjadhav2/Online-Grocery-Store | 8b7df547dfe7ce9193cd3d07ae43da632ee79490 | 1458b175de5f5e2947612d83ba68cb8fe9fa0a35 | refs/heads/master | 2016-09-06T15:43:30.885000 | 2014-11-14T02:24:41 | 2014-11-14T02:24:41 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package controller;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import j... | UTF-8 | Java | 4,191 | java | CameraServlet.java | Java | [
{
"context": "ort model.ProductMasterDAO;\r\n\r\n/**\r\n *\r\n * @author suraj\r\n */\r\npublic class CameraServlet extends HttpServle",
"end": 502,
"score": 0.9223921895027161,
"start": 497,
"tag": "USERNAME",
"value": "suraj"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package controller;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import j... | 4,191 | 0.601766 | 0.601288 | 131 | 29.992367 | 23.912531 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.450382 | false | false | 4 |
643b5981fb6d417f2482ba710b5da6864b2ef6df | 21,766,894,290,771 | aecb04e73a0068fe70a2120af60af30fc9dcef9d | /src/main/java/com/kennymaness/kennymaness/models/BlogPost.java | 79f4224891dba2bdd87a7d4c36d62a67b8b140c2 | [] | no_license | kennzoil/kennymaness | https://github.com/kennzoil/kennymaness | aac70642e3501e26442c63c691cedab7d37e58cd | 6deb4c3f8868b2b9f9c7a16e982b1b76fef6a76c | refs/heads/master | 2020-12-01T02:08:38.647000 | 2020-03-11T02:14:27 | 2020-03-11T02:14:27 | 230,538,232 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kennymaness.kennymaness.models;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.Optional;
@Entity
public class BlogPost {
public Blo... | UTF-8 | Java | 2,758 | java | BlogPost.java | Java | [] | null | [] | package com.kennymaness.kennymaness.models;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.Optional;
@Entity
public class BlogPost {
public Blo... | 2,758 | 0.602611 | 0.597534 | 130 | 20.223078 | 18.937656 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 4 |
a89e8d7371d1a48cfdde928dbe9001d458e7edec | 32,908,039,448,808 | 7dc22ba56982425e1a89c02d252b7fcf482edf49 | /AddressBook/src/com/bridgelabz/addressbook/serviceImpl/AddressBookImp.java | 81b3bfe95c2c1468123aadcd8ec51ef63c4825cd | [] | no_license | vipin19794/ObjectOrientedProgram | https://github.com/vipin19794/ObjectOrientedProgram | bbe82be52e8d83f61d4f72e798cad3fa0aa4ab73 | f9f76337abf4fd446543e315ae85b69b5e29e085 | refs/heads/master | 2020-09-25T17:50:09.315000 | 2019-12-05T08:52:25 | 2019-12-05T08:52:25 | 225,782,740 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Author - VIPIN SHARMA
* fileName - AddressBookImp.java
* Date - 04/12/2019
*
*/
package com.bridgelabz.addressbook.serviceImpl;
import java.io.FileReader;
import java.io.FileWriter;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org... | UTF-8 | Java | 5,851 | java | AddressBookImp.java | Java | [
{
"context": "/*\r\n * Author - VIPIN SHARMA \r\n * fileName - AddressBookImp.java\r\n * Date ",
"end": 32,
"score": 0.9998206496238708,
"start": 20,
"tag": "NAME",
"value": "VIPIN SHARMA"
}
] | null | [] | /*
* Author - <NAME>
* fileName - AddressBookImp.java
* Date - 04/12/2019
*
*/
package com.bridgelabz.addressbook.serviceImpl;
import java.io.FileReader;
import java.io.FileWriter;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.... | 5,845 | 0.605025 | 0.601607 | 191 | 28.633509 | 28.837543 | 125 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.193717 | false | false | 4 |
2ae11b9b9d169b00330e9ec22ff9133b3c0c9257 | 20,839,181,363,228 | 4abfe65e027d8d2f644a567981227ffe96581764 | /ClangAstParser/src/pt/up/fe/specs/clang/transforms/RemovePoison.java | dcce961996e6cb243ebc9f477c7f18dcf37b8ba9 | [
"Apache-2.0"
] | permissive | specs-feup/clava | https://github.com/specs-feup/clava | a3e2e32a6187982088c3809eb4bac05a314f947b | 4d4ece26861e9fa3ac4ddbfe0e97e74b32489884 | refs/heads/master | 2023-07-24T22:59:22.941000 | 2023-07-22T17:42:27 | 2023-07-22T17:42:27 | 100,822,893 | 62 | 11 | Apache-2.0 | false | 2023-09-08T17:13:59 | 2017-08-19T21:43:48 | 2023-07-22T17:52:29 | 2023-09-08T17:13:59 | 39,390 | 57 | 10 | 18 | Java | false | false | /**
* Copyright 2016 SPeCS.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writi... | UTF-8 | Java | 1,850 | java | RemovePoison.java | Java | [
{
"context": "event the code from\n * parsing.\n * \n * \n * @author JoaoBispo\n *\n */\npublic class RemovePoison implements Simpl",
"end": 1119,
"score": 0.9992443323135376,
"start": 1110,
"tag": "NAME",
"value": "JoaoBispo"
}
] | null | [] | /**
* Copyright 2016 SPeCS.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writi... | 1,850 | 0.677297 | 0.672973 | 58 | 30.896551 | 34.29974 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.431034 | false | false | 4 |
cb139ba8bf86da63d4e713836f6a7b31453305b5 | 20,839,181,366,206 | ae69cbf27eb2010ac11fd2943e27e72697f05ef3 | /Quanjing/src/main/java/com/quanjing/quanjing/app/ui/MQJMainActivity.java | 750ec67b950305f25dd9b54ada5d6b955aa47fef | [] | no_license | norain2050/QuanjingAPP | https://github.com/norain2050/QuanjingAPP | 2b989a858598cdadd7259732c967604085a6fedb | 9587766681da65ba799010c1f2d81f2b5c91e127 | refs/heads/master | 2020-12-13T19:56:37.062000 | 2015-03-16T01:47:30 | 2015-03-16T01:47:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.quanjing.quanjing.app.ui;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.ImageView;
import cn.sharesdk.framework.ShareSDK;
import com.quanjing.quanjing.app.R;
import com.quanjing.weitu.app.ui.common.MWTBaseSearchActivity;
import com.sriramramani.droid... | UTF-8 | Java | 1,426 | java | MQJMainActivity.java | Java | [
{
"context": ".app.ui.common.MWTBaseSearchActivity;\nimport com.sriramramani.droid.inspector.server.ViewServer;\n\npublic class ",
"end": 314,
"score": 0.8610672354698181,
"start": 303,
"tag": "USERNAME",
"value": "riramramani"
}
] | null | [] | package com.quanjing.quanjing.app.ui;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.ImageView;
import cn.sharesdk.framework.ShareSDK;
import com.quanjing.quanjing.app.R;
import com.quanjing.weitu.app.ui.common.MWTBaseSearchActivity;
import com.sriramramani.droid... | 1,426 | 0.654008 | 0.647679 | 54 | 25.333334 | 19.485037 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.481481 | false | false | 4 |
369a463700daadb1cf9ba0f801cd0a8106c60626 | 13,400,297,997,622 | 39cdf6d0f392cce014b312f02b31b7a8162be89b | /glide-image-ui/src/main/java/com/example/glide_image_ui/MultiCommonAdapter.java | ee5d6e62ed9b028577f356027105339637c8db11 | [] | no_license | dongyiming/GlideDemo | https://github.com/dongyiming/GlideDemo | a4a809ea66bc716489d30ede20f622d581821363 | 0c8d67f4aadac8df0b1d7e1e9e4b17e8a973ad52 | refs/heads/master | 2021-01-01T17:58:38.516000 | 2017-07-24T15:57:26 | 2017-07-24T15:57:26 | 98,208,542 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.glide_image_ui;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.ViewGroup;
/**
* @version : 1.0
* @autho : dongyiming
* @data : 2017/6/7 0:51
*/
public class MultiCommonAdapter extends RecyclerView.Adapter<BaseViewHolder> {
private Conte... | UTF-8 | Java | 1,066 | java | MultiCommonAdapter.java | Java | [
{
"context": "view.ViewGroup;\n\n/**\n * @version : 1.0\n * @autho : dongyiming\n * @data : 2017/6/7 0:51\n */\npublic class MultiCo",
"end": 192,
"score": 0.9997010231018066,
"start": 182,
"tag": "USERNAME",
"value": "dongyiming"
}
] | null | [] | package com.example.glide_image_ui;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.ViewGroup;
/**
* @version : 1.0
* @autho : dongyiming
* @data : 2017/6/7 0:51
*/
public class MultiCommonAdapter extends RecyclerView.Adapter<BaseViewHolder> {
private Conte... | 1,066 | 0.727955 | 0.714822 | 43 | 23.790697 | 27.664568 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.44186 | false | false | 4 |
9de83218d6956875bcf85e1ee52b33cd52bbdc72 | 17,334,488,047,183 | 0115ea981aa3b12b8373253f7dec74c16a8ce7ba | /src/main/java/com/coffee/study/course/ExerciseListBean.java | 757a49a2e5d7722dd6a27bd8b1aec9501f88bf01 | [] | no_license | gengancong/coffeeStart | https://github.com/gengancong/coffeeStart | b961fc41a483d9653b36a1afdbf01f9f2cde4671 | 88fa8ac4f82c99ada871e72d474eaa6882f9ef19 | refs/heads/master | 2021-01-18T23:25:44.192000 | 2016-07-25T06:27:00 | 2016-07-25T06:27:00 | 39,358,522 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.coffee.study.course;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 打印输出下列格式数据。
* ASF 2014-09-24 0.87684663
* ATS 2014-09-24 0.06359000
* AUD 2014-09-24 0.87630000
* BEF 2014-09-24 0.02169000
* BRL 2014-09-24 0.4174319... | UTF-8 | Java | 1,835 | java | ExerciseListBean.java | Java | [] | null | [] | package com.coffee.study.course;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 打印输出下列格式数据。
* ASF 2014-09-24 0.87684663
* ATS 2014-09-24 0.06359000
* AUD 2014-09-24 0.87630000
* BEF 2014-09-24 0.02169000
* BRL 2014-09-24 0.4174319... | 1,835 | 0.633756 | 0.566464 | 95 | 17.084211 | 16.280867 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.442105 | false | false | 4 |
b78de0fe5c22763381a535af44d90dd9c07e17b9 | 26,405,458,976,732 | 7d42e9cfa5d3602ef86e947a05354942666f9e08 | /src/usi/gui/structure/Widget.java | 5569e645091581acf169d20e92830290b5105ea0 | [
"MIT"
] | permissive | danydunk/Augusto | https://github.com/danydunk/Augusto | 9d449ac5ca983863f7a928c1a50f32d7e531740b | 38ea9d502f00adc318c7f8df6171fca80c098135 | refs/heads/master | 2020-07-05T05:03:59.700000 | 2017-08-21T15:13:21 | 2017-08-21T15:13:21 | 74,129,097 | 4 | 0 | null | false | 2017-01-25T08:45:38 | 2016-11-18T12:47:19 | 2016-11-18T13:02:06 | 2017-01-25T08:45:38 | 46,156 | 0 | 0 | 2 | Java | null | null | package src.usi.gui.structure;
import java.awt.Point;
import java.awt.Rectangle;
import java.util.ArrayList;
import java.util.List;
import src.usi.util.IDManager;
import com.rational.test.ft.object.interfaces.TestObject;
import com.rational.test.ft.vp.impl.TestDataText;
public abstract class Widget implements Compa... | UTF-8 | Java | 14,932 | java | Widget.java | Java | [] | null | [] | package src.usi.gui.structure;
import java.awt.Point;
import java.awt.Rectangle;
import java.util.ArrayList;
import java.util.List;
import src.usi.util.IDManager;
import com.rational.test.ft.object.interfaces.TestObject;
import com.rational.test.ft.vp.impl.TestDataText;
public abstract class Widget implements Compa... | 14,932 | 0.608157 | 0.605612 | 618 | 23.161812 | 23.640026 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.791262 | false | false | 4 |
944c5e831e48d668b69d480b4d403a4f0a26cca7 | 26,405,458,976,067 | fc726fec491b1a74b913fb5ff305eda372252c4f | /org/apache/axis/encoding/ser/ImageDataHandlerDeserializer.java | 8427b06fc2d760cb58c0b151555c4ef4694176df | [] | no_license | roman5566/ProjectFlashToolV0.01 | https://github.com/roman5566/ProjectFlashToolV0.01 | 4048b6b1ef9655cb98da5db08da2e8bb3c13830e | 2932248f79fe43335d0cf11242973a78a5e8efa2 | refs/heads/master | 2021-01-02T08:40:25.520000 | 2012-11-17T21:29:53 | 2012-11-17T21:29:53 | 10,467,476 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* */ package org.apache.axis.encoding.ser;
/* */
/* */ import java.awt.Image;
/* */ import java.io.InputStream;
/* */ import javax.activation.DataHandler;
/* */ import org.apache.axis.components.image.ImageIO;
/* */ import org.apache.axis.components.image.ImageIOFactory;
/* */ import org.apach... | UTF-8 | Java | 1,675 | java | ImageDataHandlerDeserializer.java | Java | [] | null | [] | /* */ package org.apache.axis.encoding.ser;
/* */
/* */ import java.awt.Image;
/* */ import java.io.InputStream;
/* */ import javax.activation.DataHandler;
/* */ import org.apache.axis.components.image.ImageIO;
/* */ import org.apache.axis.components.image.ImageIOFactory;
/* */ import org.apach... | 1,675 | 0.619105 | 0.607164 | 40 | 40.900002 | 31.352671 | 141 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 4 |
0cff2143336da0d4641c84b4e29c1214432f3504 | 13,683,765,852,696 | 78bedcafc21810f25b869829224a02ac46d91ce4 | /apm-collector/apm-collector-ui/src/main/java/org/skywalking/apm/collector/ui/dao/NodeMappingH2DAO.java | 53b330b5017a74a7319b44a1f5841d43b79904af | [
"Apache-2.0"
] | permissive | wu560130911/skywalking | https://github.com/wu560130911/skywalking | 7392df95498de83e3ac076e9e9533fbf9d201699 | a5b5440274231a39b6a3831087402d20ef5274d5 | refs/heads/master | 2021-07-20T22:39:49.048000 | 2017-10-26T07:46:20 | 2017-10-26T07:46:20 | 108,503,274 | 0 | 1 | null | true | 2017-10-27T05:32:10 | 2017-10-27T05:32:09 | 2017-10-27T05:22:28 | 2017-10-27T01:19:41 | 143,865 | 0 | 0 | 0 | null | false | null | /*
* Copyright 2017, OpenSkywalking Organization All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless re... | UTF-8 | Java | 3,606 | java | NodeMappingH2DAO.java | Java | [
{
"context": "nse.\n *\n * Project repository: https://github.com/OpenSkywalking/skywalking\n */\n\npackage org.skywalking.apm.collec",
"end": 688,
"score": 0.9911760091781616,
"start": 674,
"tag": "USERNAME",
"value": "OpenSkywalking"
},
{
"context": "r;\nimport org.slf4j.LoggerFact... | null | [] | /*
* Copyright 2017, OpenSkywalking Organization All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless re... | 3,606 | 0.685247 | 0.675541 | 76 | 46.447369 | 30.340347 | 144 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.815789 | false | false | 4 |
4e8be680872087d66210772772463a456fe991eb | 31,275,951,888,581 | 639ee0387b36624d53befc294e750557bbb46a13 | /app/src/main/java/com/lazaapp/ui/controller/activity/DownAppActivityUIController.java | 9bdd1fc6d100acd62b41efad5b495c7a91425970 | [] | no_license | lucduong/laza-android | https://github.com/lucduong/laza-android | 04db4efcfef40c38cd2561b2d1267887b00bf3f2 | b5c29c9728e8fd4031120268ffa9ee7db155135b | refs/heads/master | 2016-04-25T00:01:18.116000 | 2016-04-05T04:17:12 | 2016-04-05T04:17:12 | 53,176,447 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Copyright (c) 2016 E4U Co., Ltd.
* All rights reserved.
* This application was made by E4U
* and the accompanying materials are made
* available under the terms of Lazaapp.com (http://lazaapp.com)
* Contributors:
* E4U's members
* -> This file created by luc on 3/21/16
*/
package com.lazaapp.ui.controlle... | UTF-8 | Java | 2,622 | java | DownAppActivityUIController.java | Java | [
{
"context": "utors:\n * E4U's members\n * -> This file created by luc on 3/21/16\n */\npackage com.lazaapp.ui.controller.",
"end": 272,
"score": 0.9618799686431885,
"start": 269,
"tag": "USERNAME",
"value": "luc"
}
] | null | [] | /**
* Copyright (c) 2016 E4U Co., Ltd.
* All rights reserved.
* This application was made by E4U
* and the accompanying materials are made
* available under the terms of Lazaapp.com (http://lazaapp.com)
* Contributors:
* E4U's members
* -> This file created by luc on 3/21/16
*/
package com.lazaapp.ui.controlle... | 2,622 | 0.663226 | 0.658257 | 86 | 29.418604 | 20.138742 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.453488 | false | false | 4 |
5c957131fa89d3fce77d7f23d5ba51590fb47bc2 | 32,968,169,013,274 | a065eadb04450e6266ca51dfb12046feb5cb9efa | /beispiele/src/main/java/hackerschool/aachen/minecraftmod/MethodenBeispiel.java | 7c133227f9bfa71498c228c63df066960141dd63 | [
"Unlicense"
] | permissive | HackerSchool-AC/MinecraftModding | https://github.com/HackerSchool-AC/MinecraftModding | af638ea08df39186432a67aafcb76943857dfdee | a03e91b5f6e71637df8dd2060e4c5de889a65644 | refs/heads/master | 2020-12-24T19:37:17.952000 | 2016-05-21T13:19:14 | 2016-05-21T13:19:14 | 56,370,195 | 1 | 1 | null | false | 2016-04-28T03:53:00 | 2016-04-16T06:56:05 | 2016-04-16T06:56:05 | 2016-04-28T03:53:00 | 2,152 | 0 | 1 | 0 | null | null | null | package hackerschool.aachen.minecraftmod;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.PlayerEvent.PlayerLoggedInEvent;
public class MethodenBeispiel {
... | UTF-8 | Java | 930 | java | MethodenBeispiel.java | Java | [] | null | [] | package hackerschool.aachen.minecraftmod;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.PlayerEvent.PlayerLoggedInEvent;
public class MethodenBeispiel {
... | 930 | 0.73871 | 0.734409 | 26 | 34.76923 | 28.788763 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 4 |
5f82d0a90a254eff3706581d6e695452c12759a3 | 10,264,971,853,741 | a4f122fea98312472e00a87240a481b275eeef4e | /moodlet/app/src/main/java/com/cookandroid/moodlet/broadcast.java | fdc7f5cae8522998a4e02a4d00cb53ce298fda39 | [] | no_license | yeonii2/AppProgrammingClass | https://github.com/yeonii2/AppProgrammingClass | ac3b2e33876f77d5c00b152fbfe921d1f1a45b1c | 5f0c8bcfd54be2d0028634ac5f0c94b41fcf1bb2 | refs/heads/master | 2022-03-14T14:35:02.775000 | 2019-11-25T08:58:36 | 2019-11-25T08:58:36 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cookandroid.moodlet;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Build;
import an... | UTF-8 | Java | 1,866 | java | broadcast.java | Java | [] | null | [] | package com.cookandroid.moodlet;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Build;
import an... | 1,866 | 0.698775 | 0.695991 | 45 | 38.933334 | 29.491543 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.688889 | false | false | 4 |
dd010dd0d022dcd0eb18292aec215a831e0789d7 | 3,444,563,791,611 | f3dfc9dcfb7c4cbdb38ab851e3bb74a06871bf46 | /src/com/huiyee/interact/setting/dto/CashierDto.java | 5a63460ef2862ebcccee313bf2c8ade772f2182e | [] | no_license | yilaoban/hy_esite2.0 | https://github.com/yilaoban/hy_esite2.0 | 967f96daf28a0b7f99404398ef7ecee52ff3b97a | 7b5a36bf8b998140436c92ddd9200af7e382f831 | refs/heads/master | 2021-01-11T19:59:03.348000 | 2017-07-13T09:44:01 | 2017-07-13T09:44:01 | 79,436,860 | 3 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.huiyee.interact.setting.dto;
import java.util.List;
import com.huiyee.esite.dto.IDto;
import com.huiyee.esite.model.HyUser;
import com.huiyee.esite.model.OrderGoods;
import com.huiyee.esite.model.WxUser;
import com.huiyee.interact.setting.model.HyUserLevel;
import com.huiyee.interact.setting.mode... | UTF-8 | Java | 1,651 | java | CashierDto.java | Java | [] | null | [] | package com.huiyee.interact.setting.dto;
import java.util.List;
import com.huiyee.esite.dto.IDto;
import com.huiyee.esite.model.HyUser;
import com.huiyee.esite.model.OrderGoods;
import com.huiyee.esite.model.WxUser;
import com.huiyee.interact.setting.model.HyUserLevel;
import com.huiyee.interact.setting.mode... | 1,651 | 0.687462 | 0.687462 | 88 | 16.761364 | 16.603664 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.193182 | false | false | 4 |
3e58c928807d659516b1659dc750154760ead8fe | 30,193,620,129,690 | 82f959504f351440b2da4d29ccdeaea78a1f15a1 | /ecafeteria.core/src/main/java/eapli/ecafeteria/application/kitchen/KitchenAlertGenerationController.java | 51033f1fa0d791ca2e04deb03560a9c548851b4b | [] | no_license | HugoFernandes2343/EAPLI_2017-2018_2DL | https://github.com/HugoFernandes2343/EAPLI_2017-2018_2DL | 0bab9431de4f2667d46104de0fc867475fc03af9 | cb47a4cd086f4212439ad42300629b59277ec70c | refs/heads/master | 2023-02-26T09:07:10.260000 | 2021-02-06T15:39:20 | 2021-02-06T15:39:20 | 336,570,768 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package eapli.ecafeteria.application.kitchen;
import eapli.ecafeteria.domain.kitchen.MealPlanItem;
import eapli.ecafeteria.dom... | UTF-8 | Java | 3,520 | java | KitchenAlertGenerationController.java | Java | [
{
"context": "*;\r\nimport java.util.List;\r\n\r\n/**\r\n *\r\n * @author 1150425\r\n */\r\npublic class KitchenAlertGenerationControll",
"end": 488,
"score": 0.9964185357093811,
"start": 481,
"tag": "USERNAME",
"value": "1150425"
}
] | 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 eapli.ecafeteria.application.kitchen;
import eapli.ecafeteria.domain.kitchen.MealPlanItem;
import eapli.ecafeteria.dom... | 3,520 | 0.531818 | 0.52983 | 79 | 42.556961 | 35.696949 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.56962 | false | false | 4 |
8576ef246f4b14da63dc91442f73098383f084aa | 30,193,620,131,036 | b411f5e2702c64d7e4ae21c424b0c6f2348624ae | /src/mclamud/PlayerThread.java | 5e661585cd9cf57e20b3359d76e151abfe90ed44 | [] | no_license | Invictus252/JAVAmudREBUILD | https://github.com/Invictus252/JAVAmudREBUILD | d5239f87458382cf41ea2326a7ec0ec701a49726 | 49b0cff591be8d1112034719e5422ceeac7e59c9 | refs/heads/master | 2020-05-18T03:56:23.600000 | 2019-04-30T07:15:45 | 2019-04-30T07:15:45 | 184,159,873 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mclamud;
import Sorting.BubbleSort;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.Socket;
import java.util.NoSuchElementException;
import java.util.Scanner;
public class PlayerThread implements Runnable {
private final Socket psock;
private final Player player;
... | UTF-8 | Java | 13,848 | java | PlayerThread.java | Java | [
{
"context": "me);\n player.name = playerName;\n player.password ",
"end": 11638,
"score": 0.8267607688903809,
"start": 11628,
"tag": "NAME",
"value": "playerName"
},
{
"context": "\n player.... | null | [] | package mclamud;
import Sorting.BubbleSort;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.Socket;
import java.util.NoSuchElementException;
import java.util.Scanner;
public class PlayerThread implements Runnable {
private final Socket psock;
private final Player player;
... | 13,844 | 0.389515 | 0.384388 | 336 | 40.217262 | 21.156527 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.723214 | false | false | 4 |
7119d9117bb6c5cd5427dbceea92ff67efa174c6 | 31,336,081,431,220 | 94bdc11be2ee24b7e907d7d8b53189eb6821e931 | /src/br/com/atsinformatica/erp/entity/SenhaInstalacaoERPBean.java | 4d20507cb25bf35b54689f0eb0b1dfa8526645f9 | [] | no_license | Sandenberg/MidlewareJava | https://github.com/Sandenberg/MidlewareJava | 38d27be400bc0c05277b3c0b00df7adf56a784fc | a0a3b8adcf3062874cc441b0823e66fbf84596e8 | refs/heads/master | 2021-01-11T16:07:32.309000 | 2017-01-25T10:39:26 | 2017-01-25T10:39:26 | 80,009,644 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package br.com.atsinformatica.erp.entity;
/**
*
* @author AlexsanderPimenta
*/
public class SenhaInstalacaoERPBean {
private String codEmpresa;
private String senha;
private String codCliente;
/**
... | UTF-8 | Java | 1,107 | java | SenhaInstalacaoERPBean.java | Java | [
{
"context": ".com.atsinformatica.erp.entity;\n\n/**\n *\n * @author AlexsanderPimenta\n */\npublic class SenhaInstalacaoERPBean {\n pri",
"end": 178,
"score": 0.9991273283958435,
"start": 161,
"tag": "NAME",
"value": "AlexsanderPimenta"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package br.com.atsinformatica.erp.entity;
/**
*
* @author AlexsanderPimenta
*/
public class SenhaInstalacaoERPBean {
private String codEmpresa;
private String senha;
private String codCliente;
/**
... | 1,107 | 0.584463 | 0.584463 | 59 | 17.762712 | 16.341005 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.20339 | false | false | 4 |
3329c98b0d2daa64dae92e5d43d3c084b7156bfa | 31,336,081,430,050 | 09f628e21e711f4644729818fcd9c026ae422d7c | /src/main/java/exceptions/IncorrectPinsNumberException.java | 4dde41f1cc37e914ed8ca7a203a3842464a0a329 | [] | no_license | dan-piotrowski/bowling | https://github.com/dan-piotrowski/bowling | b5d4d84029ffebdc82802699c9f01a8fe65f265f | fc7c7156572194262cc8b9256a594fd60e9a21b4 | refs/heads/master | 2021-07-16T08:33:44.457000 | 2019-10-27T19:32:31 | 2019-10-27T19:32:31 | 217,905,105 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package exceptions;
public class IncorrectPinsNumberException extends Exception{
private int pinsLeft;
public IncorrectPinsNumberException(int availablePins) {
this.pinsLeft = availablePins;
}
public int getPinsLeft() {
return pinsLeft;
}
}
| UTF-8 | Java | 256 | java | IncorrectPinsNumberException.java | Java | [] | null | [] | package exceptions;
public class IncorrectPinsNumberException extends Exception{
private int pinsLeft;
public IncorrectPinsNumberException(int availablePins) {
this.pinsLeft = availablePins;
}
public int getPinsLeft() {
return pinsLeft;
}
}
| 256 | 0.777344 | 0.777344 | 14 | 17.285715 | 19.997959 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.071429 | false | false | 4 |
c378345d0baa6fcb152258f1a78392682eed87e2 | 15,367,393,021,711 | 1e1f132c88da71f11fcab6a1dec7d07bbc2115af | /src/com/kh/petner/hotel/model/service/HotelService.java | 94b1504cd0384edf4736a74bb5658bd500ee4ba4 | [] | no_license | bubbleasdf/SSSS | https://github.com/bubbleasdf/SSSS | d84bb90d9c70ebd8794ff5d772d308260963616b | 4a5bf01bed5bc922536fe5951040f0790c73314c | refs/heads/master | 2021-01-07T00:51:18.439000 | 2020-02-19T05:03:16 | 2020-02-19T05:03:16 | 241,531,368 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kh.petner.hotel.model.service;
import java.sql.Connection;
import java.util.ArrayList;
import com.kh.petner.hotel.controller.HotelBoardDbServlet;
import com.kh.petner.hotel.model.dao.HotelDao;
import com.kh.petner.hotel.model.vo.Hotel;
import com.kh.petner.hotel.model.vo.HotelKimsuninBoard;
import com.kh.... | UTF-8 | Java | 2,955 | java | HotelService.java | Java | [] | null | [] | package com.kh.petner.hotel.model.service;
import java.sql.Connection;
import java.util.ArrayList;
import com.kh.petner.hotel.controller.HotelBoardDbServlet;
import com.kh.petner.hotel.model.dao.HotelDao;
import com.kh.petner.hotel.model.vo.Hotel;
import com.kh.petner.hotel.model.vo.HotelKimsuninBoard;
import com.kh.... | 2,955 | 0.685554 | 0.684505 | 141 | 19.276596 | 22.783939 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.907801 | false | false | 4 |
8ba1fe670449b59d2f06971a3b3cf69cf4c117bd | 15,238,544,016,061 | 5e0b750e948f659249272c5d5bf4b6318dbf644f | /parent/engine/src/main/java/com/trabajo/jpa/MapLocationJPA.java | 7e724abf82671166d51c342a8e2f4607c87be69d | [] | no_license | daokemt/cog | https://github.com/daokemt/cog | 10482cda93ea86cc71104b11562585d6e6534752 | f39b4cbe74722974e5c8319cb27804dcab1cf60e | refs/heads/master | 2020-05-02T03:12:38.914000 | 2015-03-25T16:15:14 | 2015-03-25T16:15:14 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.trabajo.jpa;
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.ManyToOne;
import javax.persisten... | UTF-8 | Java | 2,063 | java | MapLocationJPA.java | Java | [] | null | [] | package com.trabajo.jpa;
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.ManyToOne;
import javax.persisten... | 2,063 | 0.747455 | 0.745516 | 89 | 22.179775 | 20.905115 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.258427 | false | false | 4 |
2e43592506cc3402b5149227fa79f1eb6cee3f92 | 15,238,544,014,163 | aff55c89be39bcadbfe70467c44446e5f81615c6 | /src/main/java/com/hammar/product/bo/ProductBOImpl.java | 9e639d1031c97bcd865aa0dcd35624dd00ca6b6f | [] | no_license | hammarpojken/MavenProjectModuleOne | https://github.com/hammarpojken/MavenProjectModuleOne | 31f8f1abe93e6dbd96d88e6a595406171878700c | 77697199b4b57f065a06255d0e8cc48f05e95c74 | refs/heads/master | 2020-04-07T20:16:23.341000 | 2018-11-22T11:40:24 | 2018-11-22T11:40:24 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hammar.product.bo;
import com.hammar.product.dao.ProductDAO;
import com.hammar.product.dto.Product;
public class ProductBOImpl implements ProdocutBO {
private ProductDAO dao;
@Override
public void create(Product product) {
dao.create(product);
}
@Override
public Product findProduct(int id) {
... | UTF-8 | Java | 493 | java | ProductBOImpl.java | Java | [] | null | [] | package com.hammar.product.bo;
import com.hammar.product.dao.ProductDAO;
import com.hammar.product.dto.Product;
public class ProductBOImpl implements ProdocutBO {
private ProductDAO dao;
@Override
public void create(Product product) {
dao.create(product);
}
@Override
public Product findProduct(int id) {
... | 493 | 0.728195 | 0.728195 | 30 | 15.433333 | 16.245375 | 50 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.966667 | false | false | 4 |
c45375e1b9fb457ee000cf4f3e90abaa0467633d | 18,141,941,904,601 | 02c16fabf0c6c71387da6bf0c5a1f4a02f4266b1 | /JPItvdn/src/ru/keys4words/lec008/L08_003_A.java | e026d148dc73b4ff6a546fe2fe03eedcf1d82a31 | [] | no_license | keys4words/SeriesExmpls | https://github.com/keys4words/SeriesExmpls | b9c8dcc0fc6655311eae843245841c73c635b187 | 3eee1cb68759899e1076ab7bb7632b07bebbeab2 | refs/heads/master | 2019-11-29T16:23:25.415000 | 2019-04-04T16:03:12 | 2019-04-04T16:03:12 | 100,692,225 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.keys4words.lec008;
import java.lang.annotation.*;
@Deprecated
//@MyAnno()
public class L08_003_A {
public static void print(){
System.out.println("A");
}
}
class B extends L08_003_A{
@Deprecated
//@Override
public static void print() {
System.out.println("B");
}
... | UTF-8 | Java | 903 | java | L08_003_A.java | Java | [] | null | [] | package ru.keys4words.lec008;
import java.lang.annotation.*;
@Deprecated
//@MyAnno()
public class L08_003_A {
public static void print(){
System.out.println("A");
}
}
class B extends L08_003_A{
@Deprecated
//@Override
public static void print() {
System.out.println("B");
}
... | 903 | 0.610188 | 0.575858 | 46 | 18.630434 | 12.886391 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.369565 | false | false | 4 |
e9f55621b61f5a3cf20281c13dcb044b761a44d1 | 21,732,534,569,393 | 602ee5a73a3730e40515a444de09fee97a526660 | /src/main/java/com/maqiao/was/tag/pictureOverlay/MQTagPictureSpecial_QRCODE.java | d464a472268f2bf52016ce6416ad6b81145a4c8d | [] | no_license | sluizin/GradleMQTag | https://github.com/sluizin/GradleMQTag | d445e1f594c06db872369a75353283cbcea9dc30 | 83fd6e402b52ebe23abd561ba176f530438beacb | refs/heads/master | 2021-01-20T01:05:53.476000 | 2020-08-07T10:07:53 | 2020-08-07T10:07:53 | 101,279,454 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package com.maqiao.was.tag.pictureOverlay;
/**
* @author Sunjian
* @version 1.0
* @since jdk1.7
*/
public class MQTagPictureSpecial_QRCODE extends MQTagPicture {
int spid = MQPOConst.ACC_NULL;
int size = MQPOConst.ACC_NULL;
String url = null;
int margin = MQPOConst.ACC_NULL;
int sty... | UTF-8 | Java | 2,030 | java | MQTagPictureSpecial_QRCODE.java | Java | [
{
"context": ".maqiao.was.tag.pictureOverlay;\r\n\r\n/**\r\n * @author Sunjian\r\n * @version 1.0\r\n * @since jdk1.7\r\n */\r\npublic c",
"end": 84,
"score": 0.998451828956604,
"start": 77,
"tag": "NAME",
"value": "Sunjian"
}
] | null | [] | /**
*
*/
package com.maqiao.was.tag.pictureOverlay;
/**
* @author Sunjian
* @version 1.0
* @since jdk1.7
*/
public class MQTagPictureSpecial_QRCODE extends MQTagPicture {
int spid = MQPOConst.ACC_NULL;
int size = MQPOConst.ACC_NULL;
String url = null;
int margin = MQPOConst.ACC_NULL;
int sty... | 2,030 | 0.664039 | 0.659113 | 96 | 19.145834 | 18.761652 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.5 | false | false | 4 |
091698cf1a107ed81b97b3c8902ae2d66e8d42ea | 26,663,157,006,800 | 86ad4efa4c093e9c0b07616b02fcebaccdfe89ad | /STrollPhoto/src/com/slightstudio/common/ImageUtils.java | 07e1550f8211f84a44ed23bfdc27ef59bbfea034 | [] | no_license | quyduc1412/strollphoto | https://github.com/quyduc1412/strollphoto | 310e3db122de252388c8df63d6178f59449b3733 | be201dba781adcea6906fdf8321709b82d09e931 | refs/heads/master | 2021-01-15T17:09:42.049000 | 2014-08-15T10:25:55 | 2014-08-15T10:25:55 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.slightstudio.common;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import android.content.ContentValues;
import android.content.Context... | UTF-8 | Java | 5,606 | java | ImageUtils.java | Java | [] | null | [] | package com.slightstudio.common;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import android.content.ContentValues;
import android.content.Context... | 5,606 | 0.705137 | 0.696575 | 193 | 28.046633 | 23.384882 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.430052 | false | false | 4 |
3c767558378001ae80abe8c1be1baaf15460c533 | 33,139,967,694,866 | bb2b2526b80585797476d70ac0cecfbe18e0f15f | /elasticsearch/src/main/java/org/lolobored/jira/elasticsearch/ElasticSearchServiceImpl.java | 6bfedbd50c3a1551d7370191c69cdc488cb2bec9 | [] | no_license | lolobored/jira-stats | https://github.com/lolobored/jira-stats | 825c116e9cf2d6ef590e50a01cfea93f473afdf1 | b2f5c58e6fc4287e3a9789c7d0d9adb12fb1b134 | refs/heads/master | 2020-03-10T20:04:25.619000 | 2019-07-06T08:17:48 | 2019-07-06T08:17:48 | 129,561,978 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.lolobored.jira.elasticsearch;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import org.lolobored.jira.elasticsearch.repository.IssueRepository;
import org.lolobored.jira.elasticsearch.rep... | UTF-8 | Java | 7,453 | java | ElasticSearchServiceImpl.java | Java | [] | null | [] | package org.lolobored.jira.elasticsearch;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import org.lolobored.jira.elasticsearch.repository.IssueRepository;
import org.lolobored.jira.elasticsearch.rep... | 7,453 | 0.766269 | 0.763585 | 182 | 39.95055 | 36.051746 | 138 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.065934 | false | false | 4 |
99eb70c0bfc6b6cd39cb7afc258d67024250c263 | 11,458,972,805,379 | 48e0b50b8ed54537f07cedb51bee870753c714de | /src/main/java/com/example/demo/service/ItdAlterService.java | 0054dfd79707ffd780bdf58f08a270143af9931f | [] | no_license | dalaoliu1/gogogogo | https://github.com/dalaoliu1/gogogogo | ba4d210991d538a6dad812a89a70a192e3c0f816 | a833443148c957d2f4ebe29eae4d586577003ce1 | refs/heads/master | 2020-09-25T12:13:01.829000 | 2020-01-03T16:28:33 | 2020-01-03T16:28:33 | 221,596,506 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.service;
import com.example.demo.model.SysAlter;
public interface ItdAlterService {
public int update(SysAlter sysalter);
}
| UTF-8 | Java | 163 | java | ItdAlterService.java | Java | [] | null | [] | package com.example.demo.service;
import com.example.demo.model.SysAlter;
public interface ItdAlterService {
public int update(SysAlter sysalter);
}
| 163 | 0.748466 | 0.748466 | 9 | 16.111111 | 17.872663 | 39 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 4 |
a48520183d2cdf011c5501d1b9aa12d09c0c4356 | 5,995,774,390,642 | 1ec73a5c02e356b83a7b867580a02b0803316f0a | /java/threads/JavaThreadDesign/ch2/PriorityDemo.java | 58ff3dc7ea63a7bf62e47262185cddf1934ca04c | [] | no_license | jxsd0084/JavaTrick | https://github.com/jxsd0084/JavaTrick | f2ee8ae77638b5b7654c3fcf9bceea0db4626a90 | 0bb835fdac3c2f6d1a29d1e6e479b553099ece35 | refs/heads/master | 2021-01-20T18:54:37.322000 | 2016-06-09T03:22:51 | 2016-06-09T03:22:51 | 60,308,161 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package threads.JavaThreadDesign.ch2;
public class PriorityDemo {
public static class HightPriority extends Thread {
static int count = 0;
public void run() {
while ( true ) {
synchronized ( PriorityDemo.class ) {
count++;
// System.out.println( "count -> " + count ); // 影响性能
if ( coun... | UTF-8 | Java | 1,212 | java | PriorityDemo.java | Java | [] | null | [] | package threads.JavaThreadDesign.ch2;
public class PriorityDemo {
public static class HightPriority extends Thread {
static int count = 0;
public void run() {
while ( true ) {
synchronized ( PriorityDemo.class ) {
count++;
// System.out.println( "count -> " + count ); // 影响性能
if ( coun... | 1,212 | 0.605128 | 0.588889 | 69 | 15.956522 | 19.063915 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.101449 | false | false | 4 |
c712c24fb4bc92017abc62a3a53887dceca5b5f6 | 8,650,064,179,870 | a3d1c4874e052309601aee24c7158658f0c910b6 | /src/main/java/com/khidi/manager/hbmwf/engine/domain/ext/EnumWfReceiverType.java | 9b515a41ae87d8b9b6d585c76510896d991fb138 | [] | no_license | pittillo/RHMS | https://github.com/pittillo/RHMS | dc4bf38456878c0234a702e6e42bf7f00a9ace1e | 7e4923f83d747811d4cc890afad4dbc78d5d0c20 | refs/heads/master | 2023-08-28T08:45:00.485000 | 2018-06-08T08:20:59 | 2018-06-08T08:20:59 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* @Title: EnumWfReceiverType.java
* @Package com.khidi.manager.hbm.engine.domain.ext
* @Description: TODO(用一句话描述该文件做什么)
* @author 王顺波
* @date 2017年11月22日 上午9:13:09
* @version V1.0
*/
package com.khidi.manager.hbmwf.engine.domain.ext;
/**
* @author Administrator
*
*/
// EM:人员 DEPT:部门 ROLE:角色 DEPTROL... | UTF-8 | Java | 439 | java | EnumWfReceiverType.java | Java | [
{
"context": "xt \n* @Description: TODO(用一句话描述该文件做什么) \n* @author 王顺波\n* @date 2017年11月22日 上午9:13:09 \n* @version V1.0 ",
"end": 143,
"score": 0.9988517165184021,
"start": 140,
"tag": "NAME",
"value": "王顺波"
}
] | null | [] | /**
* @Title: EnumWfReceiverType.java
* @Package com.khidi.manager.hbm.engine.domain.ext
* @Description: TODO(用一句话描述该文件做什么)
* @author 王顺波
* @date 2017年11月22日 上午9:13:09
* @version V1.0
*/
package com.khidi.manager.hbmwf.engine.domain.ext;
/**
* @author Administrator
*
*/
// EM:人员 DEPT:部门 ROLE:角色 DEPTROL... | 439 | 0.688654 | 0.649077 | 18 | 20.055555 | 17.053745 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.277778 | false | false | 4 |
c0de16cb2ba670926ae3345a57238dcf69b75217 | 28,552,942,634,660 | 32dae33d29e0522d4f801e2c4cd317a704c7b11b | /TMinstructorMS/src/main/java/com/edu/miu/cs544/tminstructor/service/TmAttendanceServiceImpl.java | e045bba0955d95d8026fe77f8b4929ab1c3ebd66 | [] | no_license | Tuvshintur/CS544_project | https://github.com/Tuvshintur/CS544_project | 499a419c2b6c19c45bd67e2332522fd9211c0f4f | ed050411e6c9c502764871950ab4b6663b1bf4c2 | refs/heads/master | 2023-08-29T23:09:58.967000 | 2020-09-27T03:15:11 | 2020-09-27T03:15:11 | 297,123,875 | 1 | 1 | null | false | 2020-09-22T07:33:17 | 2020-09-20T17:05:37 | 2020-09-22T03:12:24 | 2020-09-22T07:33:17 | 188 | 0 | 0 | 0 | Java | false | false | package com.edu.miu.cs544.tminstructor.service;
import com.edu.miu.cs544.tminstructor.dto.ListDTO;
import com.edu.miu.cs544.tminstructor.dto.ResponseDTO;
import com.edu.miu.cs544.tminstructor.model.TmAttendance;
import com.edu.miu.cs544.tminstructor.model.TmInstructor;
import com.edu.miu.cs544.tminstructor.repository.... | UTF-8 | Java | 3,142 | java | TmAttendanceServiceImpl.java | Java | [] | null | [] | package com.edu.miu.cs544.tminstructor.service;
import com.edu.miu.cs544.tminstructor.dto.ListDTO;
import com.edu.miu.cs544.tminstructor.dto.ResponseDTO;
import com.edu.miu.cs544.tminstructor.model.TmAttendance;
import com.edu.miu.cs544.tminstructor.model.TmInstructor;
import com.edu.miu.cs544.tminstructor.repository.... | 3,142 | 0.669955 | 0.663272 | 79 | 38.772152 | 36.698551 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.544304 | false | false | 4 |
68ed2fd0b650c3514c67a8d0394f139115ee6aaf | 17,300,128,317,321 | d2a0ef84bdbd35987f61f00d546d0dcc4c4c8ada | /APP/ECLIPSE_PROJECT/vendasebarganhas/project/src/br/com/barganhas/web/beans/AboutSiteBean.java | 9c121342ccc3affaf6f1b33f2972c729a01e68a9 | [] | no_license | rayu1988/svn-jeanbruno | https://github.com/rayu1988/svn-jeanbruno | afc608ad514d18b43894cfdb06d1c0123e1b0dce | e839587e0b56698625305e4cf172b0350d23bc41 | refs/heads/master | 2016-09-05T10:58:48.866000 | 2014-12-12T14:13:51 | 2014-12-12T14:13:51 | 38,338,785 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.barganhas.web.beans;
import java.util.List;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import javax.faces.model.DataModel;
import br.com.barganhas.business.entities.AboutSiteTO;
import br.com.barganhas.business.services.AboutSite;
import br.com.barganhas.comm... | UTF-8 | Java | 3,782 | java | AboutSiteBean.java | Java | [] | null | [] | package br.com.barganhas.web.beans;
import java.util.List;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import javax.faces.model.DataModel;
import br.com.barganhas.business.entities.AboutSiteTO;
import br.com.barganhas.business.services.AboutSite;
import br.com.barganhas.comm... | 3,782 | 0.69725 | 0.69725 | 141 | 24.822695 | 24.005697 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.262411 | false | false | 4 |
f9809819f538b365311b053c31f6f59806d47907 | 15,075,335,261,003 | 536440c9e0d0e41a9a2d338abd78de3cd43cae2f | /app/src/main/java/org/quuux/sandbox/AndroidGLRenderer.java | 29c5f41f3a6fe3642e1669b3026608d5c530c1b8 | [] | no_license | mdellavo/Sandbox | https://github.com/mdellavo/Sandbox | 01b0e1fabff55814199866dd10c917b489167e43 | a783fb5d8af4369c27791891a9acbfe0e6bb9b5b | refs/heads/master | 2021-08-09T11:31:27.181000 | 2018-09-10T01:55:21 | 2018-09-10T01:55:21 | 100,325,141 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.quuux.sandbox;
import android.annotation.TargetApi;
import android.graphics.Bitmap;
import android.opengl.GLES30;
import android.opengl.GLUtils;
import android.os.Build;
import org.quuux.opengl.lib.BufferType;
import org.quuux.opengl.lib.ShaderProgram;
import org.quuux.opengl.renderer.Renderer;
import org... | UTF-8 | Java | 15,458 | java | AndroidGLRenderer.java | Java | [] | null | [] | package org.quuux.sandbox;
import android.annotation.TargetApi;
import android.graphics.Bitmap;
import android.opengl.GLES30;
import android.opengl.GLUtils;
import android.os.Build;
import org.quuux.opengl.lib.BufferType;
import org.quuux.opengl.lib.ShaderProgram;
import org.quuux.opengl.renderer.Renderer;
import org... | 15,458 | 0.644003 | 0.630935 | 475 | 31.543158 | 26.965313 | 171 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.581053 | false | false | 4 |
13952301e2d73fec80d1d42bc6d7683cfa4e4197 | 12,756,052,916,643 | e012fcc3007130f86ce51e3d27936a30731e1c6e | /src/main/java/com/hydroyura/TechDocsSymbiosis/TestRestController.java | a1cd4c92270645f319b9160d5fcf99461dfc605c | [] | no_license | YuryKlimchuk/TechDocsSymbiosis | https://github.com/YuryKlimchuk/TechDocsSymbiosis | 53e59a78978f820b8c912966e16ca000850da79e | 47ff2d353aed9887674e65ef040052835547a4f8 | refs/heads/master | 2023-05-08T19:19:09.364000 | 2021-05-10T17:24:39 | 2021-05-10T17:24:39 | 340,139,600 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hydroyura.TechDocsSymbiosis;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframew... | UTF-8 | Java | 1,180 | java | TestRestController.java | Java | [] | null | [] | package com.hydroyura.TechDocsSymbiosis;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframew... | 1,180 | 0.751695 | 0.741525 | 51 | 22.137255 | 20.983671 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.411765 | false | false | 4 |
8db6096d5cb49a68e0f075b520d9392fb992b52f | 30,451,318,178,441 | 9dd0435a62c8866870c364b4e4b06eb7c8f1d610 | /tests/org.jboss.tools.teiid.ui.bot.test/src/org/jboss/tools/teiid/ui/bot/test/JDBCImportWizardTest.java | 259b1481050edb3a899d87ee69730ddadd91049f | [] | no_license | pleacu/jbosstools-integration-stack-tests | https://github.com/pleacu/jbosstools-integration-stack-tests | b636c7e7355dcb18328cf788ae8559e6eac1843f | 6f6c17f2f109ab2356f49d3aa4fc86c9b50e0779 | refs/heads/master | 2021-01-17T21:37:46.048000 | 2016-03-21T12:35:47 | 2016-03-21T12:35:47 | 21,135,204 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.jboss.tools.teiid.ui.bot.test;
import static org.junit.Assert.assertTrue;
import java.util.List;
import java.util.Properties;
import org.jboss.reddeer.junit.execution.annotation.RunIf;
import org.jboss.reddeer.junit.requirement.inject.InjectRequirement;
import org.jboss.reddeer.junit.runner.RedDeerSuite;... | UTF-8 | Java | 7,774 | java | JDBCImportWizardTest.java | Java | [
{
"context": "ational models from various sources\n * \n * @author lfabriko\n */\n@RunWith(RedDeerSuite.class)\n@TeiidServer(sta",
"end": 1408,
"score": 0.9977893233299255,
"start": 1400,
"tag": "USERNAME",
"value": "lfabriko"
}
] | null | [] | package org.jboss.tools.teiid.ui.bot.test;
import static org.junit.Assert.assertTrue;
import java.util.List;
import java.util.Properties;
import org.jboss.reddeer.junit.execution.annotation.RunIf;
import org.jboss.reddeer.junit.requirement.inject.InjectRequirement;
import org.jboss.reddeer.junit.runner.RedDeerSuite;... | 7,774 | 0.777721 | 0.755338 | 214 | 35.331776 | 33.626968 | 153 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.96729 | false | false | 4 |
9c9545c464db1f95bef4cf84d8894542247eea72 | 14,190,571,976,133 | 7cff868e7a1e9c2b5db2831692759783a9e7c4e7 | /Dist2_Cliente_Empresa/src/dist2_interface/ListaDeCurriculos.java | f8bbf9fc201e92cdf2554c87fc29b4bb77305580 | [] | no_license | callebmc/Distribuidos_2_Cliente | https://github.com/callebmc/Distribuidos_2_Cliente | 4178018f64777917c887d69b2d8ef66029c4b56a | 4a3414a3fcc77de5fa631a4b765aab2fb8695c0d | refs/heads/master | 2020-08-01T07:56:51.875000 | 2019-10-24T01:22:03 | 2019-10-24T01:22:03 | 210,921,651 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import dist2_interface.Curriculo;
public class ListaDeCurriculos implements Serializable {
private ArrayList<Curriculo> listaCurriculos;
public ListaDeCurriculos() {
this.listaCurriculos = new ArrayList();
}
// ... | UTF-8 | Java | 1,127 | java | ListaDeCurriculos.java | Java | [] | null | [] |
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import dist2_interface.Curriculo;
public class ListaDeCurriculos implements Serializable {
private ArrayList<Curriculo> listaCurriculos;
public ListaDeCurriculos() {
this.listaCurriculos = new ArrayList();
}
// ... | 1,127 | 0.640249 | 0.639359 | 38 | 28.526316 | 21.233955 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.394737 | false | false | 4 |
e63a0aee82bb04079e9c2a01b07a48586db03aa1 | 18,957,985,690,792 | 27757079877d6d2706ba84efdda7784c7a7afcaf | /src/com/hltgz/xht/util/SharedPreferenceManager.java | 2822428438eaa53d0207db86e7533e2a370dde78 | [] | no_license | justloveouyangjie/xinghuatong | https://github.com/justloveouyangjie/xinghuatong | c63c04050b078ba356c916565dbbbf41ddd2c46a | 0834abf252f9ef02143369dde93fe419c44811a5 | refs/heads/master | 2016-09-09T12:03:19.056000 | 2015-08-05T11:35:09 | 2015-08-05T11:35:09 | 40,241,748 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hltgz.xht.util;
import java.util.HashSet;
import java.util.Set;
import java.util.StringTokenizer;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Build;
/**
*
* @author 杨... | UTF-8 | Java | 4,213 | java | SharedPreferenceManager.java | Java | [
{
"context": "itor;\nimport android.os.Build;\n/**\n * \n * @author 杨秀峰\n * sharepreference管理\n */\npublic class SharedPrefe",
"end": 322,
"score": 0.9998337626457214,
"start": 319,
"tag": "NAME",
"value": "杨秀峰"
}
] | null | [] | package com.hltgz.xht.util;
import java.util.HashSet;
import java.util.Set;
import java.util.StringTokenizer;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Build;
/**
*
* @author 杨... | 4,213 | 0.684035 | 0.68237 | 174 | 23.155172 | 19.995232 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.287356 | false | false | 4 |
56d175f437aa4eed7348867e1a2c0b0c2e8dba58 | 558,345,761,571 | 3a47fc223617542824b818634c980a579b742d5a | /src/main/java/TaxStrategy/VatTax.java | 592f43d1afa6430249700ef866adbc24e984ce2e | [] | no_license | MichalFab/Strategy-design-pattern | https://github.com/MichalFab/Strategy-design-pattern | ae9b6493224585c7c08f82eb1991302847e950e1 | 732b657fff935f129011501f2e654038afde5500 | refs/heads/master | 2021-03-02T10:32:23.682000 | 2020-03-12T20:53:22 | 2020-03-12T20:53:22 | 245,860,885 | 3 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package TaxStrategy;
import java.math.BigDecimal;
public class VatTax implements Tax {
public BigDecimal calculate(Invoice invoice) {
return invoice.getCost()
.multiply(BigDecimal.valueOf(0.10));
}
}
| UTF-8 | Java | 234 | java | VatTax.java | Java | [] | null | [] | package TaxStrategy;
import java.math.BigDecimal;
public class VatTax implements Tax {
public BigDecimal calculate(Invoice invoice) {
return invoice.getCost()
.multiply(BigDecimal.valueOf(0.10));
}
}
| 234 | 0.679487 | 0.666667 | 10 | 22.4 | 19.277967 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 4 |
2327ff861382b5c1aa023b1f13d60e007cfc44af | 6,090,263,684,546 | e4b27021e4c0e2c4eacce98c6c6a72480817e1a6 | /app/src/main/java/com/androidcleanarchitecture/data/rest/models/GeoModel.java | e9919c4664f068cbd84252cfc6f50e016747787e | [] | no_license | Drake1804/AndroidCleanArchitecture | https://github.com/Drake1804/AndroidCleanArchitecture | 8e9f34a3a041e1a48ddb143b3804ed31c4802375 | 34d14dbbc18c85b1e3f7d06b201628e27d6ae39c | refs/heads/master | 2021-01-20T03:00:29.626000 | 2017-05-16T15:03:05 | 2017-05-16T15:03:05 | 89,476,519 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.androidcleanarchitecture.data.rest.models;
/**
* Created by Pavel.Shkaran on 4/26/2017.
*/
public class GeoModel {
public double lat;
public double lng;
public GeoModel() {
}
public GeoModel(double lat, double lng) {
this.lat = lat;
this.lng = lng;
}
}
| UTF-8 | Java | 313 | java | GeoModel.java | Java | [
{
"context": "narchitecture.data.rest.models;\n\n/**\n * Created by Pavel.Shkaran on 4/26/2017.\n */\n\npublic class GeoModel {\n\n p",
"end": 87,
"score": 0.9998701214790344,
"start": 74,
"tag": "NAME",
"value": "Pavel.Shkaran"
}
] | null | [] | package com.androidcleanarchitecture.data.rest.models;
/**
* Created by Pavel.Shkaran on 4/26/2017.
*/
public class GeoModel {
public double lat;
public double lng;
public GeoModel() {
}
public GeoModel(double lat, double lng) {
this.lat = lat;
this.lng = lng;
}
}
| 313 | 0.616613 | 0.594249 | 20 | 14.65 | 16.556797 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 4 |
f9ef194f0c03499a674f513dce75df17ab88b77d | 20,684,562,556,624 | 5f8cfd9132008e9f8fecdbce12d1d5615f3813ec | /lesson13/src/Main.java | 6184f8f12d3ee7966e95bbeb42a99d685ad95835 | [] | no_license | fvh1/androidCourses | https://github.com/fvh1/androidCourses | f0b434b7b3be7f734ef7f09c3a69075617c0ae1a | 3fcc7c8e43db9716c55542774cc8991a4a8c19d7 | refs/heads/master | 2020-04-12T04:53:44.984000 | 2015-10-21T15:57:18 | 2015-10-21T15:57:18 | 42,547,105 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import java.util.Scanner;
public class Main {
static class NewThread extends Thread {
@Override
public void run(){
for (int i=0; i<10;i++){
print10(i);
}
}
}
static class NewThreadS extends Thread {
@Override
public void run(){
print10s();
}
}
public static void main(String[] args)... | UTF-8 | Java | 1,403 | java | Main.java | Java | [] | null | [] |
import java.util.Scanner;
public class Main {
static class NewThread extends Thread {
@Override
public void run(){
for (int i=0; i<10;i++){
print10(i);
}
}
}
static class NewThreadS extends Thread {
@Override
public void run(){
print10s();
}
}
public static void main(String[] args)... | 1,403 | 0.600143 | 0.558803 | 59 | 22.762712 | 24.688114 | 150 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.79661 | false | false | 4 |
49abc556090d0cfdbd5bdaca621c4f198ea08ef4 | 8,607,114,485,432 | 0bef18967196c122ce378d5efadcdb5a6da88c73 | /src/main/java/com/voksel/electric/pc/service/UserAndPrivilegeService.java | 509b12f03f8005da211ed43907881d5dd2658d6b | [] | no_license | edsarp92/production-control | https://github.com/edsarp92/production-control | a756a433ee590e334b488d437e43e49736c3bef6 | f4d4aea9a830396289afe5a300e2aeef8f00e9d5 | refs/heads/master | 2021-01-19T05:58:18.904000 | 2016-08-21T16:15:10 | 2016-08-21T16:15:10 | 62,508,527 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.voksel.electric.pc.service;
import com.voksel.electric.pc.domain.Privilege;
import com.voksel.electric.pc.domain.entity.User;
import com.voksel.electric.pc.domain.entity.UserRole;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import java.util.List;
/**
* C... | UTF-8 | Java | 981 | java | UserAndPrivilegeService.java | Java | [
{
"context": "geable;\n\nimport java.util.List;\n\n/**\n * Created by edsarp on 8/20/16.\n */\npublic interface UserAndPrivilege",
"end": 336,
"score": 0.9996148943901062,
"start": 330,
"tag": "USERNAME",
"value": "edsarp"
}
] | null | [] | package com.voksel.electric.pc.service;
import com.voksel.electric.pc.domain.Privilege;
import com.voksel.electric.pc.domain.entity.User;
import com.voksel.electric.pc.domain.entity.UserRole;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import java.util.List;
/**
* C... | 981 | 0.788991 | 0.783894 | 34 | 27.852942 | 27.897009 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.470588 | false | false | 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.