blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 410 | content_id stringlengths 40 40 | detected_licenses listlengths 0 51 | license_type stringclasses 2
values | repo_name stringlengths 5 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 80 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 132
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 9.45M | extension stringclasses 28
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 352 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
97d017daa2be55f12e0b7b96218006dc57072058 | c1152de9d94c40ba49ab1898b4f896109f670c8c | /personal/src/arrays/MaxAvgSubArray.java | edb0e4b14be5dabae4c121ba226708fd0de5fbeb | [] | no_license | AmitLeo/javadatastructure | 15f8c36767a5cffe5beadfb1580ff284fc0fc8d3 | 34b87f74a3d63bd3748609e3e5441b55836e7d3f | refs/heads/master | 2016-09-01T13:11:44.998215 | 2015-11-21T13:45:20 | 2015-11-21T13:45:20 | 46,616,751 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,076 | java | package arrays;
/**
* Given an array with positive and negative numbers, find the maximum average subarray of given length.
*
* http://www.geeksforgeeks.org/find-maximum-average-subarray-of-k-length/
*
* @author amishash
*
*/
public class MaxAvgSubArray {
public void solution(int argArr[], int argLength) {... | [
"amitsharma_leo@yahoo.co.in"
] | amitsharma_leo@yahoo.co.in |
469ef4b8bcadbc81f053d77d287bf2f72debff33 | 9ab7abce5525e101482c64726d1a9717e640242c | /src/main/java/fr/ibformation/scenarryo_back/enums/RoleEnum.java | 897adc5c4a8463ac133ee7bde2a604ce37ed858a | [] | no_license | niamoR-dev/scenarryo_back_final | 4281e189cee2f6255d0bb53cbec688e79c8f195f | 2e99dd96058238e6a63fa72d4c5152dc7f960b77 | refs/heads/master | 2023-05-24T19:10:12.045367 | 2021-06-06T09:12:14 | 2021-06-06T09:12:14 | 370,742,614 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 154 | java | package fr.ibformation.scenarryo_back.enums;
public enum RoleEnum {
// roles attributed to users
ROLE_USER,
ROLE_MODERATOR,
ROLE_ADMIN
}
| [
"alexandre.segelle@hotmail.fr"
] | alexandre.segelle@hotmail.fr |
f23321c67db10683368d413d2b098a7478c60a17 | 783b9cfbd703f0cd03c2244a40010794b28f0e1c | /src/com/baseev/coding/array/PrintSpiral.java | 30abdf30a838f71bfdaf5b60501ddd593ca8d6a7 | [] | no_license | baseev/Utils | 44fe38fca32bd582f6f0fd8fdd89581830c628f6 | 1cdfa1e0ed1ce81ad31db80c6327d1719267ff1b | refs/heads/master | 2021-01-10T14:02:55.017976 | 2016-02-12T05:43:02 | 2016-02-12T05:43:02 | 48,009,656 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 912 | java | package com.baseev.coding.array;
public class PrintSpiral {
public static void print(int arr[][]) {
int m = 6;
int n = 3;
int i, k=0, l=0;
while(k<m && l<n) {
for(i=l;i<n;i++) {
System.out.println(arr[k][i]);
}
k++;
for (i = n; i < m; ++i)
{
System.out.println(arr[i][n-1])... | [
"sapnabaseev@gmail.com"
] | sapnabaseev@gmail.com |
e0682a79a4dd510cf0127b2c746fda0e11668599 | a58a08be16df5d1a361dc8b545ea69f14756f0a0 | /src/composite_pattern/used_pattern/Monitor.java | e27b1cec16430b302f5d05ecbd3b69b9cf914932 | [] | no_license | LeeSM0518/design-pattern | e0cadbdc067d3aef0c80dea80e3e5bc69e32baf0 | 4cdc6d23dfa25c58359fe7b80a849dd0affe647e | refs/heads/master | 2020-06-22T15:28:34.512321 | 2020-05-22T03:41:36 | 2020-05-22T03:41:36 | 197,737,384 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 349 | java | package composite_pattern.used_pattern;
public class Monitor extends ComputerDevice {
private int price;
private int power;
public Monitor(int price, int power) {
this.price = price;
this.power = power;
}
@Override
public int getPrice() {
return price;
}
@Override
public int getPower(... | [
"nalsm98@naver.com"
] | nalsm98@naver.com |
525f86e850b4b1e5daa557c8cee855f7e0d7bc88 | 6e204686f69a6077505b256369a9896b32a72de0 | /lab3/src/lab3/Task5.java | 63f234a139213de45be7888200283305a0e47dbc | [] | no_license | danakendybayeva/OOP2019 | 9a0c935f5bef422e43eaff1525ca991b6b1d157b | 8958af6de5353fe8ce29fdef6da9c7d29f3173a1 | refs/heads/master | 2020-09-05T01:33:57.184628 | 2019-12-06T06:31:06 | 2019-12-06T06:31:06 | 219,946,222 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,582 | java | package lab3;
import java.util.*;
public class Task5 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Vector<Object> v = new Vector<Object>();
Scanner sc = new Scanner(System.in);
Persons p = new Persons("dana", "dmis");
Student stu1 = new Student("first", "street1", ... | [
"danka.kent@gmail.com"
] | danka.kent@gmail.com |
131e27ce7e40298fb733b061fbd7d4b01102ee66 | 0ae20c5dad0c8e0dec0423aedcc48a57c24e4412 | /src/lecture1/jdbc1/UserDAO2.java | 499604a18326d64b2d16b882cdbf9ba920814b28 | [] | no_license | jejecrunch/JSP | fd88b148c7fdeea0a998b52a689fa7388391cb55 | c067e1b3703a4802d212e537ddb8939538749cca | refs/heads/master | 2020-05-15T06:39:30.576617 | 2019-04-28T14:17:19 | 2019-04-28T14:17:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,521 | java | package lecture1.jdbc1;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import lecture1.DB;
public class UserDAO2 {
public static User createUser(ResultSet resultSet) throws SQLExce... | [
"gkswlgp456@gmail.com"
] | gkswlgp456@gmail.com |
1dfa47d0f4d435ed508eab8fe166c59cba4ea050 | 6254347eaf4e96dc77e69820bef34df0eaf2d906 | /pdfsam-enhanced/pdfsam-merge/tags/V_0_4_9e/src/it/pdfsam/plugin/merge/model/MergeTableModel.java | b184af7ca61020315e3278df7d7f7ebe22b22848 | [] | no_license | winsonrich/pdfsam-v2 | 9044913b14ec2e0c33801a77fbbc696367a8f587 | 0c7cc6dfeee88d1660e30ed53c7d09d40bf986aa | refs/heads/master | 2020-04-02T16:20:17.751695 | 2018-12-07T14:52:22 | 2018-12-07T14:52:22 | 154,608,091 | 0 | 0 | null | 2018-10-25T04:03:03 | 2018-10-25T04:03:03 | null | UTF-8 | Java | false | false | 10,107 | java | /*
* Created on 03-Feb-2006
* Copyright (C) 2006 by Andrea Vacondio.
*
* This program is free software; you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation;
* either version 2 of the License.
* This program is distribu... | [
"torakiki@2703fb93-1e26-0410-8fff-b03f68e33ab9"
] | torakiki@2703fb93-1e26-0410-8fff-b03f68e33ab9 |
979c86aca9c896394a29d1293593f114ddd48185 | 7bcfce3f540da2553de9fa92de1c65791a838a0f | /ClassWork/CW1/src/main/java/person/Student.java | da7da8073ce8d32674b617bcefdb5aeaec9140cd | [
"MIT"
] | permissive | garawaa/Android-TexasHoldemPokerOnline | 541baee2be75e2563352a0f588a552ebe94de6ad | 2824c114d0194392e343733e744c82b5e87a4046 | refs/heads/main | 2023-06-24T00:15:33.936048 | 2021-07-25T10:33:35 | 2021-07-25T10:33:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,058 | java | package person;
/**
* @author Haim Adrian
* @since 18-Oct-20
*/
public class Student extends Person implements StudentIfc {
private String department = "";
private int year = 0;
public Student(String id, String name) {
super(id, name);
}
public Student(String id, String n... | [
"Haim.Adrian@quest.com"
] | Haim.Adrian@quest.com |
154e3641514d958668b799211cda76f8f6c69b8f | 247eb9943c8bad5743b0d182282749a686b8526d | /src/UI.java | 0180f50a9dc963aa9ef4118773fa0863469c1863 | [] | no_license | iMilchshake/RacetrackSolver | 341dde7c7a16e91c6eab06856e31d1a7a0323ea7 | 0c026e9eff0e0529234c4a8d5341eae3485e203d | refs/heads/master | 2020-08-15T17:06:29.176087 | 2019-10-30T12:41:43 | 2019-10-30T12:41:43 | 215,377,065 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,728 | java | //import com.sun.prism.GraphicsPipeline;
//import sun.java2d.loops.DrawLine;
import javax.swing.*;
import java.awt.*;
import java.util.ArrayList;
import java.util.Vector;
public class UI {
public static MyPanel panel;
public static void createAndShowGUI(Map map) {
System.out.println("Created GUI on ... | [
"Tobias20.3@hotmail.de"
] | Tobias20.3@hotmail.de |
ebd0af18387ba565d50ac2659a7a0eaaa5e5e81b | 316b58ef4b44d691bb82c14759a126b0a78b053f | /rest/com.paremus.examples.bookshelf.mongo/src/com/paremus/examples/bookshelf/mongo/MongoBookshelfComponent.java | 1eb31a8ab9a3763dfbddc6a1f679f8d266de420c | [
"Apache-2.0"
] | permissive | doviche/examples | 97f056c55a619dce0eef177cb1a28e00ab726dc7 | e5a93606a3c97711fb2202f8232911911cd31b2d | refs/heads/master | 2021-01-22T09:32:52.024371 | 2014-08-26T14:20:36 | 2014-08-26T14:24:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,860 | java | package com.paremus.examples.bookshelf.mongo;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import org.bndtools.service.endpoint.Endpoint;
import aQute.bnd.annotation.component.Activate;
import aQute.bnd.annotation.component.Component;
import aQute.bnd.annotation.component.Deactivate;
imp... | [
"njbartlett@gmail.com"
] | njbartlett@gmail.com |
a129edf3a2433db52464c76d77182e25e3edf0bb | 3da66e34b366ecd8093be989eaeeca5672dd6a5a | /server/src/main/java/com/weirdo/server/service/CacheItemService.java | 275fedcd29e99fc31dcd0e4d99212e2a34fa1abf | [] | no_license | MrclPaChong/SpringBootRedis | 90e6fd241b7edb0345ccafa06198d6dbeabc081e | 0610266f917b69faf1f21798c6001fc578a90734 | refs/heads/master | 2022-12-26T18:55:08.314401 | 2020-03-23T12:41:28 | 2020-03-23T12:41:28 | 248,198,515 | 0 | 0 | null | 2020-03-18T10:22:16 | 2020-03-18T10:17:06 | Java | UTF-8 | Java | false | false | 2,274 | java | package com.weirdo.server.service;
import com.weirdo.model.dao.ItemDao;
import com.weirdo.model.entity.Item;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.... | [
"dchenlei@yeah.net"
] | dchenlei@yeah.net |
1211b9611d2a8b119fad194426f83f794bc02c24 | fb2f1ed5521a6e94fe072468514b5016e88d2c35 | /domain/src/test/java/com/jbenitoc/domain/store/BulkPurchaseDiscountTest.java | fbe63ef7cf97c26ce9a96997d0f5c2ea28c8f3c4 | [] | no_license | beni0888/cabify-store-server | be4b5125726a902c9451c2eff75a77106b5a700f | d48e181cd9b704fe1056b788a71a807bd21e313c | refs/heads/master | 2021-10-25T23:35:11.722252 | 2019-04-07T23:29:12 | 2019-04-08T08:31:12 | 179,925,109 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,355 | java | package com.jbenitoc.domain.store;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import org.junit.jupiter.params.provider.ValueSource;
import java.math.BigDecimal;
import java.util.stream.Stream;
import st... | [
"beni0888@hotmail.com"
] | beni0888@hotmail.com |
3cb85b552d04bb33039de5ef30d46bc95854ca5f | dc6f85de5595ff1e0cf948e9e9042ec08067d601 | /src/kreis/tools/graphs/adjIterator.java | b46a9dd49969aa5c7b267f3700c8e000ff590a4a | [] | no_license | ruslankreis/kreisTools | d76847740dbec95e161b5798de0faa1847917f2d | 471efcf72d8a4fc9a6dc32a676af454fa9fca335 | refs/heads/master | 2021-01-01T19:25:43.076130 | 2013-02-07T10:29:35 | 2013-02-07T10:29:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 735 | java | package kreis.tools.graphs;
/**
* Created with IntelliJ IDEA.
* User: Pusher
* Date: 2/3/13
* Time: 1:17 PM
* To change this template use File | Settings | File Templates.
*/
public class adjIterator implements IadjIterator {
private DenseGraph G;
private int i;
private int v;
publ... | [
"forproplay@gmail.com"
] | forproplay@gmail.com |
9323cb8f1b1d5c18003c520b099bdf501616d10f | eff86a8c19f59876394355c6ec7804aa179671c4 | /src/com/mindtree/mce/validator/ScoreValidator.java | a7c11831ad5b31b73d37d5d37251d4ca9218ec61 | [] | no_license | chandu8260/Grade-Evaluation | b39572d6cdd38ada8a81bd640c7d7c04e3a71f63 | eebbff86cd29b2c58301ecaa9357ded1d2ccce81 | refs/heads/master | 2021-01-12T00:57:27.638400 | 2017-01-08T05:36:45 | 2017-01-08T05:39:01 | 78,323,605 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,504 | java | /**
*
*/
package com.mindtree.mce.validator;
import org.springframework.validation.Errors;
import org.springframework.validation.ValidationUtils;
import org.springframework.validation.Validator;
import com.mindtree.mce.vo.ScoreVo;
/**
* @author m1018211
*
*/
public class ScoreValidator implemen... | [
"CHANDU@192.168.2.11"
] | CHANDU@192.168.2.11 |
a727a1cc94aee842cd2f3400d59c4d10827d9858 | 1b50fe1118a908140b6ba844a876ed17ad026011 | /core/src/main/java/org/narrative/network/customizations/narrative/invoices/services/CreateWalletTransactionFromPaidInvoiceTaskBase.java | 1d208752e944aac56130c335be848f133a650d63 | [
"MIT"
] | permissive | jimador/narrative | a6df67a502a913a78cde1f809e6eb5df700d7ee4 | 84829f0178a0b34d4efc5b7dfa82a8929b5b06b5 | refs/heads/master | 2022-04-08T13:50:30.489862 | 2020-03-07T15:12:30 | 2020-03-07T15:12:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 713 | java | package org.narrative.network.customizations.narrative.invoices.services;
import org.narrative.network.core.narrative.wallet.WalletTransaction;
import org.narrative.network.customizations.narrative.invoices.Invoice;
import org.narrative.network.shared.tasktypes.AreaTaskImpl;
/**
* Date: 2019-05-20
* Time: 07:45
*
... | [
"brian@narrative.org"
] | brian@narrative.org |
2aaab4aefc9fe3ec6742496e54ae2a8c791b9ee2 | 3e0d77eedc400f6925ee8c75bf32f30486f70b50 | /hibernateapp-spring/src/main/java/com/techchefs/hibernateapp/hql/GetWithProjections.java | 996446552e613d24851ac124ead32bb63789ddb4 | [] | no_license | sanghante/ELF-06June19-TechChefs-SantoshG | 1c1349a1e4dcea33923dda73cdc7e7dbc54f48e6 | a13c01aa22e057dad1e39546a50af1be6ab78786 | refs/heads/master | 2023-01-10T05:58:52.183306 | 2019-08-14T13:26:12 | 2019-08-14T13:26:12 | 192,526,998 | 0 | 0 | null | 2023-01-04T07:13:13 | 2019-06-18T11:30:13 | Rich Text Format | UTF-8 | Java | false | false | 1,522 | java | package com.techchefs.hibernateapp.hql;
import java.util.List;
import org.hibernate.Criteria;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Projections;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.AbstractApplica... | [
"santhosh.ghante@yahoo.com"
] | santhosh.ghante@yahoo.com |
f6ca389499e234fa801dcf9f74b83091b8759c98 | 306394fc064edb1ac69a3e264be34579644622ed | /src/main/java/com/active/util/MyInterceptor.java | 445b47e84195151d6de322ab8b1fc89af1d1571b | [] | no_license | zacharytse/Active | 83cf0d3670bad99b568dbde275d65ab4cb74cc0d | 626791dfdc475d0620aa5706786389d0863b523f | refs/heads/master | 2022-01-30T22:14:49.464312 | 2019-05-18T10:18:38 | 2019-05-18T10:18:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,073 | java | package com.active.util;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
public class MyInterceptor implements HandlerInterceptor {
public void afterCompletion... | [
"2481086105@qq.com"
] | 2481086105@qq.com |
f6022a4776083d881db599b0df3ca222d3da8e56 | b6e0ead88e885c2c9a3bc0c364f415f928d476ab | /src/main/java/offer/UglyNumber.java | 232e5b54a3d5a9eca65dbd6a698febf430134a77 | [] | no_license | MrGeroge/Algorithm | eba30a1f2227366d59e6e92ab4c0879cb069a049 | eb1bd15191fb0ae4c8211aa37f89351270d1a256 | refs/heads/master | 2021-04-30T15:52:36.471599 | 2018-02-12T13:40:44 | 2018-02-12T13:40:44 | 121,250,947 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,476 | java | package offer;
/**
* Created by George on 2018/1/9.
*/
public class UglyNumber {//丑数:因子只含2或者3或者5
public static void main(String[] args){
UglyNumber un=new UglyNumber();
System.out.print(un.uglyNumOfIndex(1500));
}
public boolean isUgly(int num){
if(num<=0){
return fal... | [
"18202790149@163.com"
] | 18202790149@163.com |
7e8afd3025f605f4485915ff2036d5c489fcf3c3 | bbb5fbaa5d714331cbbc610bd86881ca6b366175 | /src/com/lee/aafour/ReverseNodesGroup.java | 7c59efbbc1fbcec2411ae57312c4a28b7b662c55 | [] | no_license | zhihzhang/leetcode | 9c99e9a9a12d6f5116c0db074beaa2b1cdd40675 | cfc92dd583e91bdc75556c112db1fcf51a8da03d | refs/heads/master | 2021-06-27T02:33:14.870846 | 2020-09-26T18:45:52 | 2020-09-26T18:45:52 | 138,515,096 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 766 | java | package com.lee.aafour;
import com.lee.common.ListNode;
public class ReverseNodesGroup {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
// Given this linked list: 1->2->3->4->5
// For k = 2, you should return: 2->1->4->3->5
// For k = 3, you should return: 3->2->1->4->5
publi... | [
"zhihzhang@ebay.com"
] | zhihzhang@ebay.com |
b4b36ed5cdc5eee1af1b6b3e6988e900608639cd | 14f8fdd4f4aaad8c210563da2b0ab9bc5b1b711e | /src/main/java/com/software/dao/WarehourseMapper.java | eab48482978fbccd8fd279ee83796092b7d43385 | [] | no_license | Tossnology/Distributed-SaleSystem | 557c042bd91972ddba3de2ce89183214192f34a7 | 1d7949ad22085873d46ef73ebf9fe92dbccebf1f | refs/heads/master | 2023-02-17T21:36:26.100419 | 2020-05-29T15:39:21 | 2020-05-29T15:39:21 | 327,778,559 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 524 | java | package com.software.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import com.software.domain.Warehourse;
@Mapper
public interface WarehourseMapper
{
int deleteByPrimaryKey(Warehourse record);
int insert(Warehourse record);
int insertSelective(Warehourse record);
Wareh... | [
"jjdjiang@qq.com"
] | jjdjiang@qq.com |
2eec16e5c85f450453508a0662ba811ac7fe81dc | 04091b1c5b3dab756981fe36533b89e194d4db50 | /permission/src/main/java/com/yanzhenjie/permission/target/Target.java | 8088461d870d75d79b3137c4dfa324554cf19d03 | [
"Apache-2.0"
] | permissive | hujinmeng/AndPermission | f00b3e480c996961d1a6a9d0124c8444aa41435e | a28f92f9925a35137ecc47cb73b40b64032630b5 | refs/heads/master | 2021-01-23T04:29:02.868165 | 2017-05-29T14:56:40 | 2017-05-29T14:56:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,077 | java | /*
* Copyright © Yan Zhenjie. 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 required by applicabl... | [
"smallajax@foxmail.com"
] | smallajax@foxmail.com |
e5bde28f051e27f707c7c3ae0f143a1440a6b6f9 | fc556a2869b21c035bcb91ddf4a1096aa995e3ef | /src/com/bradsproject/com/bradsproject/BradleyJewell/bMobs/Mob.java | 2029ab3098f4c3474ce3b8710eccf5e86654e18f | [] | no_license | dhulliath/bMobs | f5bdf91450c7197a61caa25d05968330652e6dd5 | ab43f0dc2cf0d5e399bc15a0c28e5a2f5de35d1c | refs/heads/master | 2021-01-18T07:41:06.163989 | 2011-05-20T10:47:57 | 2011-05-20T10:47:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 294 | java | package com.bradsproject.BradleyJewell.bMobs;
public class Mob
{
public final String type;
public boolean enabled = true;
public double probability = 1.0;
public boolean aggressive;
public boolean burn;
public int health = -1;
public Mob(String t)
{
type = t;
}
}
| [
"brad811@gmail.com"
] | brad811@gmail.com |
4cf6c8d5872d39659226ea2ff1dc8763d346b90d | d81da7a2801a4e6d01b589abed5d2890491ec15f | /WalletUser/app/src/main/java/com/tong/gao/walletuser/bean/request/RequestSellCoin.java | 0fb4d0718ec67e0910520871ae2bbe7c7988f66e | [] | no_license | JustinWuShiYuan/WalletUser2 | 20282d114969a0eeaf972207b9ab7ae76916dbe9 | db90890edb132e1bdadfb73339df698570d6b93f | refs/heads/master | 2020-04-18T21:40:30.731715 | 2019-03-13T09:10:42 | 2019-03-13T09:10:42 | 167,771,358 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,407 | java | package com.tong.gao.walletuser.bean.request;
import java.io.Serializable;
public class RequestSellCoin implements Serializable {
private String number;
private String amountType;
private String limitMaxAmount;
private String limitMinAmount;
private String fixedAmount;
private String price;
... | [
"justingaotong@gmail.com"
] | justingaotong@gmail.com |
414074d4a7effc7064d7e3370b6a06803887b185 | 1d295aefc3ab22a3f9309052a515b88a3fa196f7 | /src/aplicacionrectangulo2/Rectangulo.java | e60f5b58b452c34983bfcc08095a9f9de3fbf61b | [] | no_license | 19julio94/rectangulo | 7baecd853db2ab48692333a6749f7d9a0ce2ba6a | cc60cec4d9d7fe421e939d3787cc071aab09076c | refs/heads/master | 2021-01-13T00:36:48.082214 | 2015-10-15T07:42:39 | 2015-10-15T07:42:39 | 44,301,308 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 814 | java | package aplicacionrectangulo2;
public class Rectangulo {
private float base;
private float altura;
//constructores
public Rectangulo(){
}
public Rectangulo(float ba,float al){
base=ba;
altura= al;
}
//metodos de acceso
public void setBas... | [
"jpatriciodasilva@atanasoff03.danielcastelao.org"
] | jpatriciodasilva@atanasoff03.danielcastelao.org |
ac57c0954ac57d4334ec87f2f6d9da44af708640 | 59bc1623aef7b7c9dcfadf4a53528a2fa961d0db | /practice/Tree & Binary tree/PathWithSumK.java | 36d2e05c01a760d03511cd3e6f2154124b61e523 | [] | no_license | rahul6660357/Data-Structure-using-java | 20c06e07de680ea8c2d9f6382f5c34b3f08d13f9 | f1a6bcd08e7bc87e9ac8a38dd2ab9344732ed85c | refs/heads/master | 2020-07-21T05:41:36.466192 | 2020-02-25T11:57:59 | 2020-02-25T11:57:59 | 206,763,636 | 1 | 1 | null | 2019-10-22T09:46:14 | 2019-09-06T09:46:37 | Java | UTF-8 | Java | false | false | 1,903 | java | import java.util.Stack;
public class PathWithSumK{
public static void main(String[] args){
int arr[] = {5,3,2,6,1,4,8,7};
// int arr[] = {8,4,5,3};
Node root = new Node(arr[0]);
for(int i=1;i<arr.length;i++)
{
if(arr[i]<root.data) {
attachInLeft(r... | [
"aniketchanana6@gmail.com"
] | aniketchanana6@gmail.com |
3e772440cfb0cb7bcef902512c1adddf651c7b7f | 403255606d7bb8c9dc18e9be7b449dab9ec16f38 | /src/main/java/com/lovo/dao/IMessageDao.java | 563515abef9d26ee668669a92a458f23c5874c76 | [] | no_license | houmingsong/SpringMybatis | b185ee5d46140a69d0de85fe269b3bdd5ffecf83 | 0d336c4e422ef5d419e15bfbd2557ca025bfa859 | refs/heads/master | 2022-12-26T14:33:04.392327 | 2019-07-06T09:04:04 | 2019-07-06T09:04:04 | 195,519,503 | 0 | 0 | null | 2022-12-16T09:12:00 | 2019-07-06T09:03:03 | JavaScript | UTF-8 | Java | false | false | 454 | java | package com.lovo.dao;
import java.util.List;
import com.lovo.entity.MesEntity;
import com.lovo.entity.MessageEntity;
public interface IMessageDao {
public List<MessageEntity> show(int currentpage);
public int getTotalPage();
public List<MesEntity> show1(Integer id);
public List<MessageEntity... | [
"castle@192.168.1.111"
] | castle@192.168.1.111 |
73a20e33330267f0e69374e02ebb96a7e8def657 | 9b1393329db738c134968d610e4afc93b4bc280f | /终期答辩/文档/毕设代码/android_src/main/java/com/example/ui/LogUI.java | 5f558d80c7d176c99fc7a6459bcbed9b589f026c | [] | no_license | 785172550/myGraduation | a8b17bcbcc21d73100367c98947b13b9483d30a4 | 6e7a47db19aef86c3ad43a4f2eb29282782dbcdd | refs/heads/master | 2021-01-19T10:54:03.841133 | 2017-07-04T08:41:53 | 2017-07-04T08:41:53 | 87,912,180 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,996 | java | package com.example.ui;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.Butto... | [
"785172550@qq.com"
] | 785172550@qq.com |
007fde16c5912ba485afc3332b98d1e1a03db51c | 8cbdd9722383d9f60ff7a40e9a15209988f0ffca | /src/main/java/br/com/heltondoria/security/SecurityUtils.java | a8d764484b41ae278d394373bb6be0df88cf9f92 | [] | no_license | heltondoria/DemoApplication | 7316cf421f73a8e3d8075c6b91b2c11c04f26932 | 343ec4961a7eeb9892135995a762008ff171afed | refs/heads/master | 2021-12-24T13:42:17.117780 | 2019-05-11T22:28:39 | 2019-05-11T22:28:39 | 116,714,905 | 0 | 0 | null | 2021-12-15T13:04:11 | 2018-01-08T18:50:36 | Java | UTF-8 | Java | false | false | 2,491 | java | package br.com.heltondoria.security;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.UserDetails;
import java.util.Optional;
/**
* Utility class for Spring Security.
*/
pub... | [
"jhipster-bot@users.noreply.github.com"
] | jhipster-bot@users.noreply.github.com |
8ea12c1819ac518c9cf6e1d2f6804233ea35ae43 | c885ef92397be9d54b87741f01557f61d3f794f3 | /tests-without-trycatch/Gson-10/com.google.gson.internal.bind.ReflectiveTypeAdapterFactory/BBC-F0-opt-70/23/com/google/gson/internal/bind/ReflectiveTypeAdapterFactory_ESTest_scaffolding.java | e88f0d320cc681086556e0e7c780035c7eb808d8 | [
"CC-BY-4.0",
"MIT"
] | permissive | pderakhshanfar/EMSE-BBC-experiment | f60ac5f7664dd9a85f755a00a57ec12c7551e8c6 | fea1a92c2e7ba7080b8529e2052259c9b697bbda | refs/heads/main | 2022-11-25T00:39:58.983828 | 2022-04-12T16:04:26 | 2022-04-12T16:04:26 | 309,335,889 | 0 | 1 | null | 2021-11-05T11:18:43 | 2020-11-02T10:30:38 | null | UTF-8 | Java | false | false | 16,713 | java | /**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Sat Oct 23 07:26:26 GMT 2021
*/
package com.google.gson.internal.bind;
import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Before;
import org.jun... | [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
79ab9c256deee1878b631be0dfde3d792cc5d55b | 0175a417f4b12b80cc79edbcd5b7a83621ee97e5 | /flexodesktop/model/flexofoundation/src/main/java/org/openflexo/foundation/ie/widget/IEBlocWidget.java | fb1c6a40de008a285b0b26ff5c1c8b0994040308 | [] | no_license | agilebirds/openflexo | c1ea42996887a4a171e81ddbd55c7c1e857cbad0 | 0250fc1061e7ae86c9d51a6f385878df915db20b | refs/heads/master | 2022-08-06T05:42:04.617144 | 2013-05-24T13:15:58 | 2013-05-24T13:15:58 | 2,372,131 | 11 | 6 | null | 2022-07-06T19:59:55 | 2011-09-12T15:44:45 | Java | UTF-8 | Java | false | false | 10,019 | java | /*
* (c) Copyright 2010-2011 AgileBirds
*
* This file is part of OpenFlexo.
*
* OpenFlexo is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | [
"guillaume.polet@gmail.com"
] | guillaume.polet@gmail.com |
e5897b44b41d70bbf226f7281f86dfeb4be0feb4 | 97cb6bc51b070b074d4785e492ca3c185071b7c2 | /latke/src/main/java/org/b3log/latke/plugin/PluginStatus.java | 25f1ed2a4eb281c72888aa3a43bdc0b5f3ba8cdd | [
"Apache-2.0"
] | permissive | HeartBeat312/b3log-latke | 830fcc93146227e7e543d0270abe43421a5a85b6 | 94f4a33155924f2c43c015cfd839ce51e159da5e | refs/heads/master | 2021-01-17T21:56:56.452496 | 2013-05-30T05:25:31 | 2013-05-30T05:25:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 991 | java | /*
* Copyright (c) 2009, 2010, 2011, 2012, 2013, B3log Team
*
* 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 req... | [
"DL88250@gmail.com"
] | DL88250@gmail.com |
57840d9a762cbe4c147ae13fb69c4947ea4d0227 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/22/22_6deef2dffc0b06ec4384cfc46ffec679b64207b9/HoyaClient/22_6deef2dffc0b06ec4384cfc46ffec679b64207b9_HoyaClient_s.java | bf91a0c3070cc227b25e320b86d032d82a0a06ee | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 69,351 | java | /*
* 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"... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
752fcb0a7d14295ac654de787de1b91194211b3b | 8e1809924281c54bf01013fb7a4356f8874b85d5 | /Reactnative/src/androidTest/java/com/avl/reactnative/ExampleInstrumentedTest.java | 15477c4f059cb9b0c48b8420722c7c840411127d | [] | no_license | mackzheng/BriefBook | db3bca2f9ea52390dfe563e7add064e75fc3ce62 | 54b7f6615d71ce90ab630f584bfc4f0a030fa013 | refs/heads/master | 2020-04-05T17:24:44.636149 | 2019-04-07T05:16:33 | 2019-04-07T05:16:33 | 157,059,437 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 722 | java | package com.avl.reactnative;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android dev... | [
"zhengmack@gmail.com"
] | zhengmack@gmail.com |
0b3c854e0f430d68e3c7629142479920ee26a6e1 | 53d677a55e4ece8883526738f1c9d00fa6560ff7 | /com/tencent/mm/plugin/webview/ui/tools/WebViewUI$21.java | 251e8be54cb1de2935751154f5df65b247474dac | [] | no_license | 0jinxing/wechat-apk-source | 544c2d79bfc10261eb36389c1edfdf553d8f312a | f75eefd87e9b9ecf2f76fc6d48dbba8e24afcf3d | refs/heads/master | 2020-06-07T20:06:03.580028 | 2019-06-21T09:17:26 | 2019-06-21T09:17:26 | 193,069,132 | 9 | 4 | null | null | null | null | UTF-8 | Java | false | false | 839 | java | package com.tencent.mm.plugin.webview.ui.tools;
import android.view.MenuItem;
import android.view.MenuItem.OnMenuItemClickListener;
import com.tencent.matrix.trace.core.AppMethodBeat;
import com.tencent.mm.sdk.platformtools.ab;
final class WebViewUI$21
implements MenuItem.OnMenuItemClickListener
{
WebVi... | [
"172601673@qq.com"
] | 172601673@qq.com |
906a595b5dbbf55e2803673e42d602a623609ad5 | 5f0cbea5ec5752fd87c4bc190f5fc13fa349246c | /src/main/java/com/globo/globodns/client/exception/GloboDnsParseException.java | 32a0767c556c5fc6f7ac61214d1cfd285628ec20 | [
"Apache-2.0"
] | permissive | globocom/GloboDNS-Client | 0fa38d7fd66411895ebc9aa69c8752f934f02540 | 4f9b742bdc598c41299fcf92e8443ce419709618 | refs/heads/master | 2020-12-24T08:16:57.883182 | 2018-04-20T14:35:31 | 2018-04-20T14:35:31 | 18,079,486 | 3 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,163 | java | /*
* 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 u... | [
"lucas.castro@corp.globo.com"
] | lucas.castro@corp.globo.com |
79a59846014e47f6057c099ea20792dafdc13ce4 | c8eb5fc37993d00ea1e7ed9d19cd1fdfc07c7cea | /rest/src/main/java/org/acme/entities/Entity1365.java | ef5cc80c6600a224eb49686bcb4d8265d0c2eb60 | [] | no_license | goblinbr/quarkus-multimodule-test | 76ef284ecae73df0bde6a6aaae52a7c64b878167 | bc9a9aaa54d3dc3d3f051ec3f847322483e14370 | refs/heads/master | 2020-05-21T08:28:23.897539 | 2019-05-17T21:00:25 | 2019-05-17T21:00:25 | 185,981,408 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,669 | java | package org.acme.entities;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.Max;
import javax.validation.constraints.Min;
import javax.validation.constraints.Size;
import java.util.Objects;
@Entity
@Table... | [
"rodrigo.goblin@gmail.com"
] | rodrigo.goblin@gmail.com |
4f7fa033436bdcc7e90d858ac52bf2c5fa2cf967 | 1dcf2bd0aa2fabce5393d6836afd03890ff41860 | /src/main/java/com/pov/mappers/ApplianceMapper.java | b17d2f3d3bed139366e80fbdca6be7c14bb2c9c3 | [] | no_license | mustaphaMounsif/appliance_back | 4442a11cc8bcdaf29b10244f6a2650e10132e034 | 27aad0e4a4f12aa2d2573454070134ecb6e22738 | refs/heads/master | 2023-08-19T14:16:40.852246 | 2021-10-14T15:23:23 | 2021-10-14T15:23:23 | 412,009,668 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,475 | java | package com.pov.mappers;
import org.springframework.stereotype.Component;
import com.pov.dtos.ApplianceDto;
import com.pov.entities.Appliance;
import com.pov.entities.Type;
@Component
public class ApplianceMapper {
public ApplianceDto toDto(Appliance appliance,ApplianceDto applianceDto) {
if(applianceDto == ... | [
"mustaphamounsif@gmail.com"
] | mustaphamounsif@gmail.com |
cab34a8f2bb619d913bba7ec4bf566aad6b57c93 | ce7dbb895a37fbab059c228352679f8680a83cd7 | /src/main/java/leetcode/T46_Permute.java | 3d4050095de1e13d24461c57dcb9c25eb001a3df | [] | no_license | songxiaocang/algorithmpractice | 5fd3d04bc55f875575d972fab2a6d90182c26851 | bf8fed5952a721f64cb2c84787b51f5a76bb66c7 | refs/heads/master | 2020-05-18T12:40:06.357784 | 2020-04-06T08:45:04 | 2020-04-06T08:45:04 | 184,414,516 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,827 | java | package leetcode;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* @Author: Songxc
* @Date: 21:42 2019/7/28
* @Description: 全排列
* 给定一个没有重复数字的序列,返回其所有可能的全排列。
* <p>
* 示例:
* <p>
* 输入: [1,2,3]
* 输出:
* [
* [1,2,3],
* [1,3,2],
* [2,1,3],
* [2,3,1],
* [3,1,2],
* [3,2,1]
... | [
"1844367805@qq.com"
] | 1844367805@qq.com |
5189d6b03ca894cbdf6dd75c8925271e30f55c22 | d4dca92388920b64c03a112c2a6b94ca86a24326 | /src/main/java/cum/xiaro/trollhack/mixin/gui/MixinGuiScreen.java | b1db1ac416ed8f814cfad5bac4ede2b5e31dd703 | [] | no_license | IRunServers/TrollHack | 75f3b772128350a8564154e541420e0d4e1bdfa8 | 2945079bd3cf49dffce96c882b06402a155dc89d | refs/heads/master | 2023-09-04T16:24:35.020541 | 2021-10-31T19:54:43 | 2021-10-31T19:54:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,483 | java | package cum.xiaro.trollhack.mixin.gui;
import cum.xiaro.trollhack.module.modules.render.MapPreview;
import cum.xiaro.trollhack.module.modules.render.ShulkerPreview;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.item.ItemMap;
import net.minecraft.item.ItemShulkerBox;
import net.minecraft.item.ItemStac... | [
"62033805+Xiaro@users.noreply.github.com"
] | 62033805+Xiaro@users.noreply.github.com |
b8f06c3274e033803dca2968fa257da3fa3def87 | a7ad1a4d3368e82aac336887de4a56ec2631fb6b | /src/main/java/com/auctions/model/Products.java | 3e3307e56c6a8cb0ae3b95629527e7f83bced4fc | [] | no_license | rst1502/AuctionsApi | a72248b33ad147aeef0eb5de0eff975993daa636 | db91885e2c9bcfd67ef6d6ab7a1042cc6948e409 | refs/heads/master | 2020-12-02T05:25:21.549150 | 2017-07-11T18:51:24 | 2017-07-11T18:51:24 | 96,903,373 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,663 | java | package com.auctions.model;
import com.auctions.utils.DomainKeyGenerator;
import javax.persistence.*;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Date;
/**
* Created by tsamuriwo on 7/10/17.
*/
@Entity(name="products")
public class Products {
@Id
private Long id;
@Versio... | [
"tafadzwa.samuriwo@econet.co.zw"
] | tafadzwa.samuriwo@econet.co.zw |
075398ec814eb865871141e61727e3054eec6ac6 | 1d9248f611beda2eb8d449f0559a2151e308f13f | /src/main/java/com/leetcode/example/string/_43_MultiplyStrings.java | 69bd9d77b6df55c25a0a3db13b84840bdeb77725 | [] | no_license | gogagubi/Leetcode-Java | ac6e6bb57f0ffa97344b1b4e9d92f068fb805f56 | ac45d4b02f5b5c3da419075246e447101e4d0ef7 | refs/heads/master | 2023-06-07T02:14:31.221632 | 2021-06-28T15:34:02 | 2021-06-28T15:34:02 | 318,897,869 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,463 | java | package com.leetcode.example.string;
public class _43_MultiplyStrings {
public static void main(String[] args) {
if (false) {
_43_MultiplyStrings c = new _43_MultiplyStrings();
String num1 = "3";
String num2 = "2";
System.out.println("Multiplication result =... | [
"gogagubi@gmail.com"
] | gogagubi@gmail.com |
5486a828452d18232e3185295421cfc5f3d466e6 | 42d0f1f4a7a9609a758e4ce3c6b74e4d4c82ccc8 | /mydb_bot/src/main/java/ru/home/mydb_bot/botapi/handlers/callback/query/QueryForGetData.java | 6b253024fe6157f9a54a0b4c5181a220b3ec03f5 | [] | no_license | chudu13/first-bot | b05919ebff1f48b00caaa0eedba12c274819b7cb | 5a78e1684f29ad7bf4d1c78e034fcec978b57e1c | refs/heads/master | 2022-12-24T22:34:29.191993 | 2020-09-27T18:31:15 | 2020-09-27T18:31:15 | 293,656,139 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,865 | java | package ru.home.mydb_bot.botapi.handlers.callback.query;
import org.springframework.stereotype.Component;
import org.telegram.telegrambots.meta.api.methods.send.SendMessage;
import org.telegram.telegrambots.meta.api.objects.CallbackQuery;
import ru.home.mydb_bot.botapi.BotState;
import ru.home.mydb_bot.botapi.handlers... | [
"nadirmusaev13@gmail.com"
] | nadirmusaev13@gmail.com |
9f2978cb746f73e82b945b3b51bb86c62caad874 | 365fe62c71115c38325bc6cde9c1da797bf759c3 | /src/thread/concurrent/c_001/T.java | a4fa2fb04ef2c8647cc81d3c15bf96eef63c54f2 | [] | no_license | stevewang41/JavaTest | 96770d06ba0fc85fb9325e1d576ae358227d5015 | 85eff7963c9a3d4d0245b0ed2c8c0d8da9ceb3bb | refs/heads/master | 2021-07-16T03:25:18.349977 | 2017-10-20T13:03:41 | 2017-10-20T13:03:41 | 107,678,399 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 487 | java | package thread.concurrent.c_001;
/**
* Created by wangshiyi on 17/8/22.
* <p>
* synchronized关键字
* 对某个对象加锁
*
* @author mashibing
*/
public class T {
private int count = 10;
private Object o = new Object();
public void m() {
synchronized (o) { // 任何线程要执行下面的代码,必须先拿到o的锁
count--;
... | [
"wangshiyi@baidu.com"
] | wangshiyi@baidu.com |
6a3501d8c7e3f7814d9907fac21952849bf38e38 | 0826bfaa69b4e27b780e4053bb8dc1a9c368f85a | /src/main/java/top/aprilyolies/miaosha/vo/OrderDetailVo.java | 3e524e5c70ac16055724f12d0b8dec547420742e | [] | no_license | AprilYoLies/miaosha | 286aca29ab15df069988237daf55bb146e5f1eb7 | c7c14afc0356dc6faa0f9f4bb45adbaaa9d9607f | refs/heads/master | 2022-12-29T06:47:59.717570 | 2019-08-29T06:47:26 | 2019-08-29T06:47:26 | 201,009,971 | 0 | 0 | null | 2022-12-16T09:21:10 | 2019-08-07T08:44:07 | Java | UTF-8 | Java | false | false | 396 | java | package top.aprilyolies.miaosha.vo;
import top.aprilyolies.miaosha.domain.OrderInfo;
public class OrderDetailVo {
private GoodsVo goods;
private OrderInfo order;
public GoodsVo getGoods() {
return goods;
}
public void setGoods(GoodsVo goods) {
this.goods = goods;
}
public OrderInfo getOrder() {
return or... | [
"863821569@qq.com"
] | 863821569@qq.com |
1ca47598ce4ec713782ae9ff494b263e54d7788a | 026f1ef37e17abb5156d3998d8ab0e4daf7ab36f | /src/adapter/GradeBook.java | 2ad7b224b13b88df9e71fd29dbe0eeb690f5288b | [] | no_license | eneakllomollari/Student-Database-Project | 6bc51fcff6498fac83512be8ffef7b8105578803 | 78a0d0c02eae0e6a1af2d5e21e10f71d798952c7 | refs/heads/master | 2020-03-09T20:00:55.099933 | 2018-04-10T17:40:28 | 2018-04-10T17:40:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 101 | java | package adapter;
public class GradeBook extends CreatePrint implements Creatable, Printable {
} | [
"eneakllomollari@gmail.com"
] | eneakllomollari@gmail.com |
d5f1ccac7b921f941817721b7fa56e73cb3d73e6 | 9bad2d1e523acbd0af1d61b0573051ae0f35235f | /TopCoder/src/old/FoxAndDoraemon.java | 073acb40240b972656d0656a8c8fb4b1311bf715 | [] | no_license | rogerfgm/JAVA_PC | 7b6821e12925d7586aa34f87995e250b7b29acc9 | 850575329b2e578f12ac9dc22b4532fc7d016712 | refs/heads/master | 2021-01-15T10:13:34.258197 | 2016-08-26T08:15:06 | 2016-08-26T08:15:06 | 11,860,567 | 1 | 0 | null | 2016-08-26T08:15:06 | 2013-08-03T08:45:43 | Java | UTF-8 | Java | false | false | 1,237 | java | package old;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
public class FoxAndDoraemon {
int[] wc = null;
int spC = 0;
int[][] dp = null;
public int minTime(int[] workCost, int splitCost){
spC = splitCost;
Arrays.sort(workCost);
wc = new int[workCost.le... | [
"daisuke@lenovo-PC.(none)"
] | daisuke@lenovo-PC.(none) |
aa9b372bb6d9c8fc32034b065871ea8686add802 | 14a102623dc6eee0e491dc94b5f146093fba900e | /src/main/java/m2/miage/m2gestioncours/exception/GeneralErreurException.java | dc5b904e466ffc1648f52697d0e05f5b8bc22478 | [] | no_license | DucTrongVo/M2GestionCours | ebf8023d7ee446be9b1ce6df141b0daa6efac78b | 07762820c3953a4284b95770ef128bcfe3a54e9f | refs/heads/master | 2023-05-24T05:44:07.335310 | 2021-06-15T09:57:52 | 2021-06-15T09:57:52 | 346,033,872 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 386 | java | package m2.miage.m2gestioncours.exception;
public class GeneralErreurException extends Exception{
private static final long serialVersionUID = 35928888650679218L;
public GeneralErreurException() {
String s = "Une erreur est survenue. Veuillez contactez notre développeur pour plus d'informaiton!";
... | [
"duc-trong.vo@toulouse.miage.fr"
] | duc-trong.vo@toulouse.miage.fr |
f2ac2ad25675ed2cdea998dce0b8e4b711b3a2a2 | f8c3888a947f8d857f1a8dd2f31377b0ba73dc89 | /app/src/main/java/com/example/vasua/digital_diary/FinalizeMeeting.java | a38afa74774e6cbd6475470bbc2cb8af01edc59a | [] | no_license | VasuMhashakhetri/DigitalDiary2 | dfae9ac5e09c9b8df2f3051d89f6a0cfcd15543b | ab98aa4f78676c97f6113d3d2052518551356e58 | refs/heads/master | 2021-05-05T18:16:13.015722 | 2018-01-15T19:59:01 | 2018-01-15T19:59:01 | 117,589,506 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 359 | java | package com.example.vasua.digital_diary;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class FinalizeMeeting extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layo... | [
"vasuapril22@gmail.com"
] | vasuapril22@gmail.com |
da6cfbf3a213562f179e19f0c5f4147a29aff033 | 58fc326ca008e242636d3d3c2259cb7e8472121e | /app/src/androidTest/java/com/fidanoglu/malatafus/ExampleInstrumentedTest.java | 11264fa033e39b01e5470ba4a6263195028b0d20 | [] | no_license | Armanfidan/malafatus | d847c8831feba04df1191d34dfd2b053b8d5f247 | 2d2007cc55209b464496b47c3fb13e4c9044c265 | refs/heads/master | 2023-03-16T01:21:16.424462 | 2021-03-07T21:19:38 | 2021-03-07T21:19:38 | 314,324,695 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 717 | java | package com.fidanoglu.malafatus;
import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
... | [
"armanfidanoglu@gmail.com"
] | armanfidanoglu@gmail.com |
6035e9bcfecd067af755946c130cd2a8e2fbaa33 | e1b834dab61004ddf1d6aa774b6a2206b5e87258 | /support/src/main/java/com/christianbahl/basekit/support/activity/CBAppCompatActivityDelegate.java | 8b3a277a4ce95eb49798d0772f670758bd473e92 | [
"Apache-2.0"
] | permissive | Bodo1981/BaseKit | 7e882ece8d61765fe003fdc6354215f3e7927936 | 87ebe0ca010b79edce1b60b1c72a828c4c9cdbf6 | refs/heads/master | 2016-09-14T00:12:32.564526 | 2016-04-26T13:52:15 | 2016-04-26T13:52:15 | 56,670,537 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,231 | java | package com.christianbahl.basekit.support.activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.os.PersistableBundle;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import com.christianbahl.basekit.common... | [
"christian@tickaroo.com"
] | christian@tickaroo.com |
20b920aa9dcb45b39f5ff5991637b07d27569696 | 626b714d50ca57066c075f2ae80de841f528ce2b | /src/main/java/com/vts/elendservice/config/SecurityConfiguration.java | 332cefd1711fed81b497d86825cfedd0eab05e87 | [] | no_license | dinhtrung90/elend-service | 4486f9a5f915681146b5bfc534ce6997a2b3f7a2 | 8e7b89cda1e304b4950bd0f021a785f5e571cab1 | refs/heads/main | 2023-04-26T13:51:48.739436 | 2021-05-05T01:28:35 | 2021-05-05T01:28:35 | 364,431,386 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,923 | java | package com.vts.elendservice.config;
import com.vts.elendservice.security.*;
import com.vts.elendservice.security.SecurityUtils;
import com.vts.elendservice.security.oauth2.AudienceValidator;
import com.vts.elendservice.security.oauth2.JwtGrantedAuthorityConverter;
import java.util.*;
import org.springframework.beans.... | [
"jhipster-bot@jhipster.tech"
] | jhipster-bot@jhipster.tech |
89e293b7a94aaafdbaebf2cac1a23422c84d188c | 56817b88c57ce35f147414c5992f12209bb62489 | /app/src/main/java/com/chi/marchoncitadel/Player.java | 29411be73cc074a9e07997dea56acd8fd161be73 | [] | no_license | Chiinozland/MarchonCitadel-ver1.3 | 2d95a961f8552538555d8feb27be57edb6bd5cf8 | 5baa1d1393d1c55acfd02d032ef8971d61dc78a9 | refs/heads/master | 2020-04-01T04:07:51.061384 | 2018-10-15T07:55:07 | 2018-10-15T07:55:07 | 152,850,915 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,718 | java | package com.chi.marchoncitadel;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Point;
import android.graphics.Rect;
public class Player implements GameObject{
//Bitmap to ... | [
"amayiyy@gmail.com"
] | amayiyy@gmail.com |
c1b3510cb75da92af8a28f7d7861ae4b559282f3 | 48ce166c189524ab56a77dd8f4b72bb422da03aa | /app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/cardview/R.java | 94698da3fe147358bb2a23e88ce2628a980a73d9 | [] | no_license | hvillalba/salvapy-app | e2b4f6528b5219e5bfeb8ef3ab368a0b85330e78 | 30ce7752537b3e577e7bbfbfa73c11248dc7027a | refs/heads/master | 2020-07-01T09:40:19.563186 | 2019-08-07T21:27:20 | 2019-08-07T21:27:20 | 200,762,294 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,185 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package androidx.cardview;
public final class R {
private R() {}
public static final class attr {
private attr() {}
... | [
"alfredovillalba460@hotmail.com"
] | alfredovillalba460@hotmail.com |
d93ec643eee2f30a8f6ea5590202adbdf4517bde | 5229a89e8795e979a50380a0ae49cc5c4362c980 | /src/test/java/by/matrosov/taxipark/FindFakeDriversTest.java | 7a03fab4d40c85fc701785cc948c11d9758f698c | [] | no_license | piyz/taxi-park-on-java | f3c860b0b46885d71fbabcd421c0ddf6f1797c40 | 34facb37a62889aaee2e91f0966c4400abad728c | refs/heads/master | 2020-05-25T15:11:57.593428 | 2019-05-30T19:29:13 | 2019-05-30T19:29:13 | 187,861,919 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,250 | java | package by.matrosov.taxipark;
import by.matrosov.taxipark.model.Driver;
import by.matrosov.taxipark.model.Trip;
import org.junit.After;
import org.junit.Assert;
import org.junit.Test;
import java.util.*;
public class FindFakeDriversTest extends TaxiParkUtilImpl {
@After
public void clearLists(){
dr... | [
"matrosovs2008@yandex.ru"
] | matrosovs2008@yandex.ru |
3979fd78c6c5bde5c81b05178880ea7f3ed666a2 | 5df29e6eee69c99aa0002547f3c7dd7d085d1ac6 | /src/main/java/cn/gson/oasys/model/dao/mealdao/MealItemDao.java | 0ed0f6f31aa9611154dabfdeed58ab28fc8862d4 | [
"MIT"
] | permissive | raynoldfeng/oasys | 43dbf2bcd24295662bff8341b038a2f74abc457e | ca498d14685eea1d017aca3f709d0f348555110e | refs/heads/master | 2022-07-15T21:35:45.603049 | 2020-03-25T11:41:11 | 2020-03-25T11:41:11 | 249,337,594 | 0 | 0 | MIT | 2022-06-17T03:02:46 | 2020-03-23T04:44:24 | JavaScript | UTF-8 | Java | false | false | 647 | java | package cn.gson.oasys.model.dao.mealdao;
import cn.gson.oasys.model.entity.meal.MealItem;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;... | [
"raynoldfeng@outlook.com"
] | raynoldfeng@outlook.com |
6f8e148a326f972b8ce2acc4cf2ac1bb3009e159 | e31d9fbb1eb3c70b15a8181cf0c0904821ab68e7 | /Emulab/Quasi/cryptop2pvoting/src/protocol/communication/CRYPTO_PARTIAL_TALLY_MSG.java | b67eeb478851a160b1ca56ddcd63139c2ac75672 | [] | no_license | harkous/decentralized-voting | c789ef4f0a388d4773e087a5792f227255313f49 | 0f847f9d9cbdae9ddcf04323095e74f4abed2d02 | refs/heads/master | 2021-01-10T11:38:15.775499 | 2011-07-17T19:49:50 | 2011-07-17T19:49:50 | 36,497,053 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 854 | java | package protocol.communication;
import protocol.communication.Message;
import runtime.executor.E_CryptoNodeID;
//import OldVoting.Vote;
import java.math.BigInteger;
public class CRYPTO_PARTIAL_TALLY_MSG extends Message {
private static final long serialVersionUID = 1L;
private BigInteger tally;
// private... | [
"hamza.harkous@1b0ac59f-443c-9a03-9de1-560a821f9832"
] | hamza.harkous@1b0ac59f-443c-9a03-9de1-560a821f9832 |
939ca30f6dc536e10b144e6481a839df44be7aa2 | 4b0bf4787e89bcae7e4759bde6d7f3ab2c81f849 | /aliyun-java-sdk-imm/src/main/java/com/aliyuncs/imm/model/v20200930/DetectImageCarsResponse.java | 0a9dbc137bdbbd8afb0c72270f3110a7be44fe55 | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-java-sdk | a263fa08e261f12d45586d1b3ad8a6609bba0e91 | e19239808ad2298d32dda77db29a6d809e4f7add | refs/heads/master | 2023-09-03T12:28:09.765286 | 2023-09-01T09:03:00 | 2023-09-01T09:03:00 | 39,555,898 | 1,542 | 1,317 | NOASSERTION | 2023-09-14T07:27:05 | 2015-07-23T08:41:13 | Java | UTF-8 | Java | false | false | 5,002 | java | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed u... | [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
232a2524cef888d6b21960b572f54d075da338d7 | cf6ffb645f1d6fa5837beddd135749f4c1879056 | /src/main/java/com/aokai/hospital/po/Carstation.java | f2f0e1c8b5237a6ad63d39fdc4243fffda57ad71 | [] | no_license | KevinAo1997/hospital | ff74605a9ac1edc1712588b7000c418af5622293 | d2ffaa22786625a8d5ea18c5de8005d07b2c2810 | refs/heads/master | 2022-07-17T03:27:30.688862 | 2020-04-05T08:45:08 | 2020-04-05T08:45:08 | 253,187,960 | 6 | 2 | null | 2022-06-21T03:08:51 | 2020-04-05T08:25:14 | Java | UTF-8 | Java | false | false | 2,549 | java | package com.aokai.hospital.po;
import javax.persistence.*;
@Table(name = "carstation")
public class Carstation {
@Id
@Column(name = "c_id")
private Integer cId;
@Column(name = "c_name")
private String cName;
@Column(name = "c_location")
private String cLocation;
@Column(name = "c_de... | [
"imaokai@163.com"
] | imaokai@163.com |
9e0d75a8c5e5a862cf5571ee4ab25c0f3b4bf0ad | 8e425de009ddadaefc3dd61b9084c0434e5fe0c7 | /src/main/java/com/training/collection/StudentFruit.java | e285ef24cdc6268a0a51e978a7ba6eb2d2397d21 | [] | no_license | AkashBorgalli/Collection-Assignments | cc621dbc7e1c6eb6fe996678ec6ee3f486dc50d1 | ee2c3ede6c7a8b72c34b0c9438bf768770da3e0c | refs/heads/master | 2021-07-21T01:53:15.617995 | 2019-11-22T08:43:50 | 2019-11-22T08:43:50 | 223,360,478 | 0 | 0 | null | 2020-10-13T17:39:54 | 2019-11-22T08:41:24 | Java | UTF-8 | Java | false | false | 1,627 | java | package com.training.collection;
public class StudentFruit implements Comparable<StudentFruit> {
private String name;
private String favFruit;
public StudentFruit(String name, String favFruit) {
super();
this.name = name;
this.favFruit = favFruit;
}
/**
* @return the name
*/
public String getName() {
... | [
"akash.borgalli@capgemini.com"
] | akash.borgalli@capgemini.com |
53f3669c17ee75ed7d3ceacd0692c704ad6b3bd3 | ef8de5da49854e745490766edc7bb1c58d09bfdc | /chapter05/chapter05.01/src/test/java/io/baselogic/springsecurity/service/UserContextTests.java | 4c53d8a940fba9eb26afb174a4ef52713af595e5 | [
"BSD-2-Clause"
] | permissive | fossabot/spring_security_course | e1e9a4d372adad206d4d305a7710234bbe7903d7 | a81f82a054e85ce2a5376aed27806a4ff933f7cc | refs/heads/master | 2021-03-15T00:03:23.893632 | 2020-03-12T10:16:51 | 2020-03-12T10:16:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,017 | java | package io.baselogic.springsecurity.service;
import io.baselogic.springsecurity.dao.TestUtils;
import io.baselogic.springsecurity.domain.AppUser;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.s... | [
"mickknutson@gmail.com"
] | mickknutson@gmail.com |
8d08c9e2d251a8031cb71d32a25a972c3033dc5f | b7c694df75e0bc79b7cfdda03fe3256fa6da9d95 | /src/main/java/pl/sdacademy/java14poz/sklep/Main.java | 0ed027152bb6618a6ec9249f56f68106ba034f79 | [
"MIT"
] | permissive | p-derezinski/java14 | f76119a390a3925af23813d71879d728aa342a65 | 5ed23fcd78eeb349028ac6e03a01f757599ceed5 | refs/heads/master | 2020-04-08T04:45:13.383225 | 2018-12-15T13:54:43 | 2018-12-15T13:54:43 | 159,030,417 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,489 | java | package pl.sdacademy.java14poz.sklep;
import pl.sdacademy.java14poz.obiekty.Kanapka;
public class Main {
public static void main(String[] args) {
User user1 = new User("Jan", "Kowalski", 25);
Kanapka kanapka5 = new Kanapka("szynka, ser, jalapeno", 3);
System.out.println(kanapka5); // to ... | [
"p.derezinski@gmail.com"
] | p.derezinski@gmail.com |
869c830b9eb9b8919d56219d81633d511cbe3d0a | 3d41214bec391b1775ac14debee5606a8302917d | /CodingBootcamp/src/test/java/com/CodingBootCamp/MeetingServiceTest.java | c83a49ce93be69efd4deb9352dfd86c3ce79e3b4 | [] | no_license | adarshkcc/codingbootcamp_backend | 61deed7523416688e53bee4abd58cac9a29d76db | 3ddddeb19169292300b3af25d5c15ccdbf95a303 | refs/heads/main | 2023-06-04T16:58:45.732621 | 2021-06-26T04:59:52 | 2021-06-26T04:59:52 | 380,412,542 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,973 | java | package com.CodingBootCamp;
import java.time.LocalDate;
import java.time.LocalTime;
import javax.transaction.Transactional;
import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
im... | [
"rajlovesskfc@gmail.com"
] | rajlovesskfc@gmail.com |
1bcd73e21e90b2992b739083a025f092fdadae5e | 4e105beb47dad7047067e7703217630163ecc2e2 | /src/main/java/pet/taskplanner/dao/UserDAO.java | fa8f323b3a8c4a4bda3fc3e0c219f765a3f42ff4 | [
"Apache-2.0"
] | permissive | Ielay/pet-task-planner | 57f6ca9fdf5e016881481b182114ecdf0d619bf3 | f83103c89677ad28653822d1e59c89f59f9f50f8 | refs/heads/master | 2023-03-03T16:20:25.234687 | 2021-02-07T21:47:27 | 2021-02-07T21:47:27 | 334,746,838 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 480 | java | package pet.taskplanner.dao;
import org.jetbrains.annotations.Nullable;
import pet.taskplanner.entity.User;
import java.sql.SQLException;
/**
* @author lelay
* @since 01.02.2021
*/
public interface UserDAO {
/**
* @return true if user was saved
*/
boolean createUser(User newUser) throws SQLExce... | [
"ielay@yandex.ru"
] | ielay@yandex.ru |
d1fdd2476c8f493d485dfefedca2aa00a5725b16 | be73270af6be0a811bca4f1710dc6a038e4a8fd2 | /crash-reproduction-moho/results/XRENDERING-418-38-28-NSGA_II-LineCoverage:ExceptionType:StackTraceSimilarity/org/xwiki/wysiwyg/server/filter/ConversionFilter_ESTest.java | 15f02f83eec6f3f2706458cb685945b98b14e2ed | [] | no_license | STAMP-project/Botsing-multi-objectivization-using-helper-objectives-application | cf118b23ecb87a8bf59643e42f7556b521d1f754 | 3bb39683f9c343b8ec94890a00b8f260d158dfe3 | refs/heads/master | 2022-07-29T14:44:00.774547 | 2020-08-10T15:14:49 | 2020-08-10T15:14:49 | 285,804,495 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 570 | java | /*
* This file was automatically generated by EvoSuite
* Mon Apr 06 03:15:12 UTC 2020
*/
package org.xwiki.wysiwyg.server.filter;
import org.junit.Test;
import static org.junit.Assert.*;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;
@RunWi... | [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
9f1f782e918b7d03a19bf48c5539f0d015e355e6 | 62252fa3bffece092c2467354c0f232cbc1c6857 | /producer/src/main/java/com/cris/producer/bean/Contact.java | 57ffb9eae205146ce98162ad9cec6680a98a3933 | [] | no_license | sinkibo/china-unicom | 61cafdadb4c2e01276bfee844fbbf237eca06186 | e46a46a2d1d549515391322a38bcbc4a2528de5c | refs/heads/master | 2020-06-12T16:21:24.502040 | 2018-12-09T11:30:00 | 2018-12-09T11:30:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 745 | java | package com.cris.bean;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
/**
* 通讯录联系人对象
*
* @author cris
* @version 1.0
**/
@Data
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
public class Contact implements Val<String> ... | [
"17623887386@163.com"
] | 17623887386@163.com |
8e5f87523201a445b4c4ded6e330551b0303bf30 | a30d884c768928e2f406fad999471c8369c4dc0d | /src/main/java/실전예제/Item.java | d4529a605326b7b7a591b6399074d571ee8b4593 | [] | no_license | 0stein/JPA-STUDY | bc82c2d63a7ad197e4c92b0a04ebe0c2d057a67b | 6edfff5b551e22f77d0d353a6da04e81bf51d3a3 | refs/heads/master | 2023-01-05T20:10:26.670734 | 2020-11-10T16:49:10 | 2020-11-10T16:49:10 | 311,681,199 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 784 | java | package ½ÇÀü¿¹Á¦;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
public class Item {
@Id @GeneratedValue
@Column(name = "ITEM_ID")
private Long id;
private String name;
private int price;
private int stockQuantity... | [
"aad336645@gmail.com"
] | aad336645@gmail.com |
07d5c59b3c707494258c180bb1ac6673b658b75a | bbab9caee718e1cdd11fed37ca8f8e5778c08a05 | /app/src/main/java/cc/eevee/turbo/ui/base/BaseDialogFragment.java | 494e4c5c23d833b62be15798d6a32f6d045a8cde | [
"Apache-2.0"
] | permissive | joinAero/DroidTurbo | 5a728141aea6cdc6e01fd09e675c457836d82c82 | 921a6cc250301e6d873063c5a9e6128fb19fd71f | refs/heads/master | 2020-04-07T04:08:57.041960 | 2018-07-30T07:06:01 | 2018-07-30T07:06:01 | 48,672,302 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 139 | java | package cc.eevee.turbo.ui.base;
import android.support.v4.app.DialogFragment;
public class BaseDialogFragment extends DialogFragment {
}
| [
"join.aero@gmail.com"
] | join.aero@gmail.com |
310887793da36128477bb8320d627c94587769d1 | 0094b5d10888b72c9d0a3b0b27072e412140ee64 | /src/main/java/com/jeeplus/modules/travelorder/entity/TravelOrder.java | 12f8cd4aa868b7bea73a2d35eeb4b8cb6403efdf | [] | no_license | konglingjuanyi/IVMS | cf4c93c4f5a96bb889cedc28fdff533af4e89f12 | 1cf90d2d597fc3d922aa48d978201f99c2e6ecd4 | refs/heads/master | 2021-01-16T00:09:00.532371 | 2016-04-08T02:47:23 | 2016-04-08T02:47:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,833 | java | /**
* Copyright © 2015-2020 <a href="--版权信息--">JeePlus</a> All rights reserved.
*/
package com.jeeplus.modules.travelorder.entity;
import org.hibernate.validator.constraints.Length;
import com.jeeplus.common.persistence.DataEntity;
import com.jeeplus.common.utils.excel.annotation.ExcelField;
import com.jeeplus... | [
"295896027@qq.com"
] | 295896027@qq.com |
aeea920e23af6d5cf4d0c6ae396d9de016774f54 | 6c1f66bc05824c191c071aa57fc4ec018f63929c | /src/ListaEncadeada.java | 4c2484f3963b90b4f12eb4d78c70dd62eaa9af07 | [] | no_license | LeviSilvaz99/Estrutura-de-Dados- | 83a11406e07336a7e8d259b87181e4410c7e6810 | 5aa74c58c782a94196dcc1384e07d1f520c0c86f | refs/heads/master | 2022-12-12T22:39:44.199687 | 2020-09-01T14:35:27 | 2020-09-01T14:35:27 | 292,013,573 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 410 | java | public class ListaEncadeada {
private int elemento;
private ListaEncadeada proximo;
public void setElemento(int elemento){
this.elemento = elemento;
}
public int getElemento(){
return this.elemento;
}
public void setProximo(ListaEncadeada proximo){
this.proximo = pro... | [
"57275766+LeviSilvaz99@users.noreply.github.com"
] | 57275766+LeviSilvaz99@users.noreply.github.com |
d2f09a5b0be8c81080a5c8e7b158b5f6fd04c25f | c3cc65d1a5dadcfb1636385ebe881928f9128f7f | /app/src/androidTest/java/com/scy/android/xjd_scyintership/ExampleInstrumentedTest.java | 1997cff998bf867183645b27174c19213806d8e0 | [] | no_license | scygh/xjd_scyintership | 65c868e538bb6a7e50f1d0a46bbc879340fce5e1 | 7f6ce4fcb4648f963db05e551493da23c69fe146 | refs/heads/master | 2020-05-28T08:58:48.201725 | 2019-05-28T03:42:51 | 2019-05-28T03:42:51 | 188,948,863 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 748 | java | package com.scy.android.xjd_scyintership;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on a... | [
"1797484636@qq.com"
] | 1797484636@qq.com |
55a17bd63531c7087748eb770ef05c2985ad3a0a | a422de59c29d077c512d66b538ff17d179cc077a | /hsxt/hsxt-tc/hsxt-tc-batchService/src/main/java/com/gy/hsxt/tc/batch/runnable/callback/DataHandler4bsgpBS.java | 319a5dd68a4ee3c4d807cf97cf58cfe250ba914e | [] | no_license | liveqmock/hsxt | c554e4ebfd891e4cc3d57e920d8a79ecc020b4dd | 40bb7a1fe5c22cb5b4f1d700e5d16371a3a74c04 | refs/heads/master | 2020-03-28T14:09:31.939168 | 2018-09-12T10:20:46 | 2018-09-12T10:20:46 | 148,461,898 | 0 | 0 | null | 2018-09-12T10:19:11 | 2018-09-12T10:19:10 | null | UTF-8 | Java | false | false | 2,052 | java | /*
* Copyright (c) 2015-2018 SHENZHEN GUIYI SCIENCE AND TECHNOLOGY DEVELOP CO., LTD. All rights reserved.
*
* 注意:本内容仅限于深圳市归一科技研发有限公司内部传阅,禁止外泄以及用于其他的商业目的
*/
/*
* Copyright (c) 2015-2018 SHENZHEN GUIYI SCIENCE AND TECHNOLOGY DEVELOP CO., LTD. All rights reserved.
*
* 注意:本内容仅限于深圳市归一科技研发有限公司内部传阅,禁止外泄以及用于其他的商业目的
*... | [
"864201042@qq.com"
] | 864201042@qq.com |
885d92ad900b91c800fac06ff07b5c4796123311 | d4af7dca9e0fc10f0ab8b4aa3710b1511c2960a5 | /app/src/main/java/com/example/zeeshan/bibliotecasqlite/Utilidades/Utilidades.java | 97127b6eea47bd6219de357475d5d80aae71173b | [] | no_license | ZeshanWD/BibliotecaSQLite | c49c51f645fdae6b7a8a26938ea6405a0f12a0d1 | b2c5981c8db2ca57ff5ed30a57ef6c1aec698388 | refs/heads/master | 2021-04-29T14:48:39.286393 | 2018-02-22T19:41:42 | 2018-02-22T19:41:42 | 121,782,736 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 763 | java | package com.example.zeeshan.bibliotecasqlite.Utilidades;
/**
* Created by zeeshan on 24/01/2018.
*/
public class Utilidades {
// Constantes de campos de la tabla
public static final String TABLA_LIBROS = "libros";
public static final String CAMPO_ID = "_id";
public static final String CAMPO_CODIGO ... | [
"zeeshan9choudhary@gmail.com"
] | zeeshan9choudhary@gmail.com |
06c83955280022215964ec6fd22612b63a45ff58 | 683fd12ef87df36cf63bc3446f91bb71fe3723e7 | /IntJoukkoSovellus/src/test/java/ohtu/intjoukkosovellus/IntJoukkoKaksiparametrisellaKonstruktorillaTest.java | 3fe8a3c302b9a01b7332ca6b09d1dee66f3d7ba6 | [] | no_license | moversti/jocular-octo-wookie | cdc151eb974a50196da63a674bdca493b08f3af3 | 9a0bd7c34dc3eaa73279580ca8855abd9a952cc1 | refs/heads/master | 2021-01-10T06:12:13.360253 | 2015-10-09T06:51:39 | 2015-10-09T06:51:39 | 43,884,219 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 290 | java | package ohtu.intjoukkosovellus;
import org.junit.Before;
public class IntJoukkoKaksiparametrisellaKonstruktorillaTest extends IntJoukkoTest {
@Before
public void setUp() {
joukko = new IntJoukko(4, 2);
joukko.lisaa(10);
joukko.lisaa(3);
}
}
| [
"mikko.oversti@helsinki.fi"
] | mikko.oversti@helsinki.fi |
6f2b444d792d950edd8e55e1a46931a229abe463 | 3b127fe37872f89351d1c8689f96b2f5102e91a3 | /ReportCard/app/src/main/java/com/example/smuh4/reportcard/ui.java | 788d03d92c7394b3f8fd76f65405fc2804ea2346 | [] | no_license | zeeshanahmed1/nano | 030f799152e874b098384a6fe415befa963c3fe7 | f55aa28bd300ef6e281e5d84a3395f188564566f | refs/heads/master | 2020-12-31T03:15:37.701997 | 2016-09-18T10:43:16 | 2016-09-18T10:43:16 | 68,514,911 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 329 | java | package com.example.smuh4.reportcard;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class ui extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ui);... | [
"zeeshan ahmed"
] | zeeshan ahmed |
977aaa29888bd857948d8a1fe961981f5048ca91 | 8b6081d7fe115bb7c0438160d8893b4c57a62f70 | /src/main/java/com/store/dao/ProductsuborderlinkMapper.java | 00f2cd778db708a55ab77a5db8e7de5edbbc3abe | [] | no_license | aikuangyong/store | 947d4488e71c9888b5b6dec934f3bf739b74dc49 | 3c9ba6c89caa13f3eec10296043067250c834c46 | refs/heads/master | 2023-04-06T05:33:37.630258 | 2021-04-02T03:12:11 | 2021-04-02T03:12:11 | 353,893,081 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 682 | java | package com.store.dao;
import com.store.model.ProductsuborderlinkModel;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository("productsuborderlinkDao")
public interface ProductsuborderlinkMapper {
public List<ProductsuborderlinkModel> getList(ProductsuborderlinkModel model);
... | [
"15016726180@139.com"
] | 15016726180@139.com |
4a0dc73f5baf218e9a873f28cee052b8bf7aa510 | 11ebccff85b719be419654dea410561cb1b5552f | /javaProgramming/src/ch18/exam18/client/ClientExample.java | 86440b7bc2ce4b935cbd90b768359a30c8593516 | [] | no_license | parkhyuntae12/MyRepository | f93433032933324280ef98ed2e3c5455ba2a54ea | bb09eb08c81f66922d3a3157037319579ee20179 | refs/heads/master | 2020-12-03T10:19:32.432964 | 2016-12-12T01:44:51 | 2016-12-12T01:44:51 | 66,317,335 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 1,467 | java | package ch18.exam18.client;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintStream;
import java.io.Reader;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.net.Sock... | [
"Administrator@COM-PC"
] | Administrator@COM-PC |
7f52b15d3e671c1bfda3a0291b244a42915937dc | 6eff6d5a38a09886d3a851f93d88c1e1a507d5b3 | /src/com/keer/core/bean/model/EditorChildHidden.java | 010f267004598562dbc899aadd48ee2d6338fdfa | [] | no_license | KenySee/Ext4JXC | 95b7eef76f77584e71c1defa25e0cc2410834e29 | acaa3d022e05a345af5371e96657446572558506 | refs/heads/master | 2021-08-22T13:41:03.478153 | 2017-11-30T09:50:53 | 2017-11-30T09:50:53 | 103,358,881 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,489 | java | package com.keer.core.bean.model;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.Entity;
import net.sf.json.JSONObject;
import com.keer.core.annotation.Description;
@Entity
@Description(Name="集合隐藏列",Group="Keer.widget.field.CollectionColumn",Desc="widget-field-collectioncolumn")
@Suppr... | [
"KenySee@126.com"
] | KenySee@126.com |
ddde201ceca799f414223ad10c61c9d360cc821c | b5365904737296ec5cb06c090aa82fdfd14ff512 | /com/google/android/gms/internal/bs.java | 024d1d40d38575affa95b9d0259174c04c9f028a | [] | no_license | Ravinther/alarmclock | 80b8a2206c4309aae4481724c7f1dd03d5638023 | 3ba5aee4e0c10487ec67bb238a2a06a0a3b182b8 | refs/heads/master | 2021-01-19T02:33:57.314201 | 2016-08-11T16:27:54 | 2016-08-11T16:27:54 | 65,484,422 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,122 | java | package com.google.android.gms.internal;
import android.os.Binder;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import com.mopub.mobileads.C2625R;
import com.mopub.mobileads.util.Base64;
public interface bs extends IInterface {
/* renamed from: com.google.android.gms.interna... | [
"m.ravinther@yahoo.com"
] | m.ravinther@yahoo.com |
03c1e122096a8228151d6b642377475aea26bfba | 4d8c843b1bedeb22f04d47d8a1943232a6f95319 | /src/main/java/com/mobei/Application.java | 48f702186cf5e146402db356988abbbe36be6b76 | [] | no_license | langying/shop-h5 | 9a60b58e4d30a159b582006ce78e9ff604b7da82 | bb94b61f0ebdbfef49787d8ee709c7ac3f5fa6ce | refs/heads/master | 2022-07-24T05:36:24.082634 | 2020-03-02T07:21:08 | 2020-03-02T07:21:08 | 244,305,098 | 0 | 0 | null | 2022-06-17T02:57:56 | 2020-03-02T07:16:29 | Java | UTF-8 | Java | false | false | 1,094 | java | package com.mobei;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.Banner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframewor... | [
"465192597@qq.com"
] | 465192597@qq.com |
fae68076b08cafe825b405996584df539a0e7ba9 | e7e497b20442a4220296dea1550091a457df5a38 | /java_workplace/renren_web_framework/lab/wsep/lwb/trunk/src/lwb/test/servlet/ReadTestServlet.java | affdffa2d0ee508cbd9b00edcfa77aed89c1d884 | [] | no_license | gunner14/old_rr_code | cf17a2dedf8dfcdcf441d49139adaadc770c0eea | bb047dc88fa7243ded61d840af0f8bad22d68dee | refs/heads/master | 2021-01-17T18:23:28.154228 | 2013-12-02T23:45:33 | 2013-12-02T23:45:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 594 | java | package lwb.test.servlet;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class ReadTestServlet extends BaseTestServlet {
private static final long serialVersionUID = 1L;
@Override
protected vo... | [
"liyong19861014@gmail.com"
] | liyong19861014@gmail.com |
ad62d6ca48ca8d4556da954418f324760e0c1d1f | cd67d5140bfeed455118699cebd2b7322d17c119 | /patient - android_app/app/src/main/java/com/example/vinid/KhamBenh.java | 566cc2faace802b4d301077af56cab76e8945f75 | [] | no_license | niku98/hackathon | 86d0240bb1c8302faefe4fc921b88e3964c7d573 | b320e146f98ad9d6eaa1f7f909ecdd54f00958a7 | refs/heads/master | 2023-01-22T16:47:39.040743 | 2019-09-08T10:09:36 | 2019-09-08T10:09:36 | 206,798,596 | 0 | 0 | null | 2023-01-04T09:23:41 | 2019-09-06T13:21:56 | CSS | UTF-8 | Java | false | false | 9,351 | java | package com.example.vinid;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.NotificationCompat;
import androidx.core.app.NotificationManagerCompat;
import android.app.NotificationManager;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
... | [
"phammanh.1221998@gmail.com"
] | phammanh.1221998@gmail.com |
ed5971ab0bb4086bd0fa0a369b265c319e8abf3e | 19989ad71f45ee2e1d182183a78a93530acc49b7 | /Java Web/Spring MVC/Thymeleaf and Controllers/residentevil/src/main/java/org/softuni/residentevil/domain/model/service/VirusServiceModel.java | dc0fc0c3173451abaad5537ce4d24c9d9b88c6e8 | [] | no_license | goldenEAGL3/SoftUni | b811c070192e317492acc113d80443e58570f2d4 | ba60411d4deea3d999af20ea10be9c015b899c4a | refs/heads/master | 2023-08-09T10:04:45.414043 | 2020-03-21T18:45:44 | 2020-03-21T18:45:44 | 175,472,191 | 0 | 2 | null | 2023-07-21T17:50:00 | 2019-03-13T17:54:34 | Java | UTF-8 | Java | false | false | 2,918 | java | package org.softuni.residentevil.domain.model.service;
import org.softuni.residentevil.domain.entity.enums.Creator;
import org.softuni.residentevil.domain.entity.enums.Magnitude;
import org.softuni.residentevil.domain.entity.enums.Mutation;
import java.time.LocalDate;
import java.util.List;
public class VirusService... | [
"48495509+goldenEAGL3@users.noreply.github.com"
] | 48495509+goldenEAGL3@users.noreply.github.com |
4b3ea7619d33dc9c9de428a811a4985cff2106b4 | 56a5ea2bda09483e16ff1471465d66c118a89167 | /app/src/main/java/com/example/application/main/hangzhou/jike/LikeClickView.java | 5fcd933d156ccc464a9ed6e025d6d9924455c494 | [] | no_license | Allen3C/Application | c09ea2bc0da3bbe013121e0a2896d7eab31f8ed3 | f8c3c73d24b3b3d2f8c4fbe9bfea10c75615d6b6 | refs/heads/master | 2022-11-11T22:15:42.922863 | 2020-07-05T17:10:11 | 2020-07-05T17:10:11 | 255,252,033 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,233 | java | package com.example.application.main.hangzhou.jike;
import android.animation.ObjectAnimator;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import... | [
"allen3c@163.com"
] | allen3c@163.com |
3a12cc77fd8af4a838f1988265e10d0a07ebae2a | fb0db16df93a5d732fe0f755b59b01742179bed5 | /src/main/java/org/jboss/remoting3/remote/RemoteConnectionProvider.java | 5577540c49df963d06ac5c77bcf907176359dcdf | [] | no_license | fl4via/jboss-remoting-temp | a4bee7152af872b8a82b67ee7bb12818cff23337 | cc6a5e3591ba7c13776d238a08fa8b399d1db97c | refs/heads/master | 2021-01-15T18:08:41.677358 | 2011-06-20T14:33:14 | 2011-06-20T14:33:14 | 1,920,835 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 10,958 | java | /*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* unde... | [
"flavia.rainone@jboss.com"
] | flavia.rainone@jboss.com |
dc76024cf7638ce7b42edb52c1609800d264ae9a | 13c2d3db2d49c40c74c2e6420a9cd89377f1c934 | /program_data/JavaProgramData/93/1242.java | af30c9f33370535fab837d05f0970dbd79888c9a | [
"MIT"
] | permissive | qiuchili/ggnn_graph_classification | c2090fefe11f8bf650e734442eb96996a54dc112 | 291ff02404555511b94a4f477c6974ebd62dcf44 | refs/heads/master | 2021-10-18T14:54:26.154367 | 2018-10-21T23:34:14 | 2018-10-21T23:34:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,384 | java | package <missing>;
public class GlobalMembers
{
//********************************
//*?????3?5?7???? **
//*?????? 1300012861 **
//*???2013.9.26 **
//********************************
public static int Main()
{
int n;
int a;
int b;
int c;
n = Integer.parseInt(ConsoleInput.readToWhiteSpace(true));
a... | [
"y.yu@open.ac.uk"
] | y.yu@open.ac.uk |
2d0b487608aa2fd6007c00e3ed16e611a7324922 | e577bdfd71df9ebb3ae70a839f75661b5748a6ff | /src/WorkerWithFiles.java | 2a83031b4b65be1e8140815a80fde5333ca5d427 | [] | no_license | Privod123/FileCount | 729ab3a52854bbbce129392258ac6feba9c0fbf1 | 9bd54a2e348e9b1d26cd480c6519acffe7d79d51 | refs/heads/master | 2020-12-09T17:30:03.195512 | 2020-01-12T12:29:51 | 2020-01-12T12:29:51 | 233,370,834 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,737 | java | import java.io.File;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Scanner;
public class WorkerWithFiles {
private String pathNameFolder;
private Map<String,Integer> countFileMap = new HashMap<>();
public void setNameFolder(String pathNameFolder) {
this.p... | [
"spas24@mail.ru"
] | spas24@mail.ru |
f07221236e1a0fb78a2db1aa35226f8806efc404 | 22a13ca1fd3d0d462dfdc87ee505f6ea99437c33 | /saml/src/main/java/com/fed/saml/sp/protocol/authn/handlers/SAMLNameID.java | 6634518a1709e405cdb9efcaf7630c6b8b3d26b3 | [] | no_license | vovtz/opensaml | 9faf446409e47ac20af54cae00571bc1f425248a | 19e46492b83e7eab72ae7901fbc46c08f2a2084a | refs/heads/master | 2020-03-21T13:24:31.391378 | 2016-07-05T15:32:46 | 2016-07-05T15:32:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,214 | java | package com.fed.saml.sp.protocol.authn.handlers;
import org.opensaml.saml2.core.Assertion;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class SAMLNameID {
private static Logger logger = LoggerFactory.getLogger(SAMLNameID.class);
private Assertion assertion;
public SAMLNameID(Asser... | [
"ganeshsivam@ganesh.mac.com"
] | ganeshsivam@ganesh.mac.com |
23990c95608d188d89365b5907ec1e3aa269be3f | b8bd4438f7d000cb7af3d7d433f9d5e1dcb60ae1 | /pdfbox/src/main/java/org/apache/pdfbox/pdmodel/interactive/annotation/PDAnnotationWidget.java | 8425e9b9fa7aef41163de02fecc008f8952fe5ad | [
"Apache-2.0",
"LicenseRef-scancode-unknown",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"APAFML",
"Adobe-Glyph",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | balabit-deps/balabit-os-7-libpdfbox-java | 32dacbfbb1658e1152e48e6d4d09c907122ebcf0 | 3ba7c1c0f139bcbd09292e695b1195e0cda61046 | refs/heads/master | 2021-06-07T16:05:20.916694 | 2019-04-18T11:15:26 | 2019-04-18T11:15:26 | 158,242,475 | 0 | 0 | Apache-2.0 | 2021-04-26T18:40:17 | 2018-11-19T15:01:22 | Java | UTF-8 | Java | false | false | 8,134 | java | /*
* 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 ... | [
"testbot@balabit.com"
] | testbot@balabit.com |
072bae2aca9ae92ae1dcd35af8e9e304f4e7173f | 40598439bba47003c9401a1cf76b5e2f6ba87f91 | /Answer_2.java | e83702706c7ae4bb97dcf9dcd2669530dbfc9a36 | [] | no_license | Hervnzig/caesar-cipher-decryption-bruteforce | 6acd95b3dbcbd40f588aaedf1a534f8c8ff517f1 | 73b3b091456d47ce616a52dfca6d17b1919a9aac | refs/heads/master | 2022-12-28T11:58:11.538567 | 2020-10-11T23:05:19 | 2020-10-11T23:05:19 | 303,193,207 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,838 | java | package com.company;
public class Answer_2 {
public static void main(String[] args) {
String text = "We alescuwmtbel uoi ha coryld choti lnaiem t, iplr!eyfpe";
int key = 3;
System.out.println(decryption(text, key));
}
public static String decryption(String text, int key) {
... | [
"hervnzig1@gmail.com"
] | hervnzig1@gmail.com |
1667697b21becd5377126cad8c671b739f9f65e6 | 7f47b4d95a6a179fcf1da5588401749cd6af6f76 | /app/src/main/java/com/app/mathpix_sample/evaluator/base/Module.java | 7b901d24d73f2d764da3d05a27c26805ba2f6d4f | [] | no_license | yishuinanfeng/ScanCalculator | 0aabbae5aba8c6cf45a43e05cd8131ecfe4f210d | 2af6885a30838f28274d11012b4f2aa6220297ba | refs/heads/master | 2020-04-02T02:34:22.130569 | 2018-11-21T09:25:23 | 2018-11-21T09:25:23 | 153,916,784 | 29 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,223 | java | /*
* Copyright (C) 2018 Duy Tran Le
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distri... | [
"yanxiaxue@qq.com"
] | yanxiaxue@qq.com |
b1f52465a07ee226ea97a917fc9713019399c86d | 3edcb6151077f690662fae5b984611bccfc4303a | /03章/src/sample/Sample03_03.java | ac6b1eab13acc9c4f77aa6e347d3f310c438f47e | [] | no_license | hisamatsunaoki/javaExecise | 555da6df210078155b139395209d1ed7497bfa10 | db86caae23814cc4e2327606f57caa8b717e2e65 | refs/heads/master | 2020-05-04T06:44:22.766856 | 2019-04-04T05:01:37 | 2019-04-04T05:01:37 | 179,012,463 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 151 | java | package sample;
public class Sample03_03 {
public static void main(String[] args) {
System.out.println('あ');
System.out.println('\u3042');
}
}
| [
"49182806+hisamatsunaoki@users.noreply.github.com"
] | 49182806+hisamatsunaoki@users.noreply.github.com |
152cab28a85b759c34ac795239ecf99057d5bf8a | aabf54d408c4ea23ba0c1589278d71d24b6d9c73 | /src/Basics/InvokeChromeBrowser.java | 3a54eb67359d7e60bd9b7207828f2d8140a30197 | [] | no_license | bavishwanath/Selenium | e8693519cdb78d13be49cf2aaae6d75052b75b8b | 261f0b2872ec01872ffdc8a8aa02f89b924f8333 | refs/heads/master | 2022-01-10T18:55:50.101785 | 2020-12-31T08:35:08 | 2020-12-31T08:35:08 | 235,743,189 | 0 | 0 | null | 2022-01-04T16:49:28 | 2020-01-23T07:16:36 | HTML | UTF-8 | Java | false | false | 2,356 | java | package Basics;
import java.io.File;
import java.nio.file.Files;
import java.time.Duration;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Set;
import javax.swing.text.html.HTMLDocument.Iterator;
import org.apache.commons.collections4.FactoryUtils;
import org.openqa.selenium.By;
import or... | [
"vananda@altimetrik.com"
] | vananda@altimetrik.com |
c0fc458d0682fc87df64040a50acef1b25afb875 | c8dbe78b2b6b708d0c1bfee826de3737da8098b4 | /auth-backend/auth-web/src/main/java/club/raveland/auth/web/config/AuthProperties.java | 988fcb464c03d01e6df81c593f4ac7b841de5bff | [] | no_license | shoy160/spear-auth | 074e639b41038215bf4f50a84e017d0fc49fee06 | b59948ea9ce6bd3a55dd60ad6be8e5a561443af1 | refs/heads/master | 2023-08-18T22:19:12.011578 | 2021-10-20T10:34:59 | 2021-10-20T10:35:30 | 419,286,743 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 702 | java | package club.raveland.auth.web.config;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Component;
/**
* @author shay
* @date 2021/2/24
*/
@Gette... | [
"shoy160@qq.com"
] | shoy160@qq.com |
1df2b606b6662fcf3dc44bf95ea252d827a6d153 | f186b8dd78fe24da82469cb3739296baaba67168 | /app/src/main/java/com/example/alsdu/lab21/NewActivity.java | c01f506b7caffb70e3245a17ea1db676b1610aef | [] | no_license | MinyeongKim/Mobile_Lab2-1 | 191988e10a677e0c2de84008058aad4b9355c139 | 66766470281a24e46661903dbbdab7af1c769d15 | refs/heads/master | 2020-03-09T09:46:30.858826 | 2018-04-09T05:47:43 | 2018-04-09T05:47:43 | 128,720,645 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,030 | java | package com.example.alsdu.lab21;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.content.Intent;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class NewActivity extends AppCompatActivity {
@Override
protected void onCreat... | [
"alsdud3221@gmail.com"
] | alsdud3221@gmail.com |
7dd866490e82821dcddee701ea8447d812d9799f | fefcb9d9e74b0a25fd66c179037de4ee8722136f | /server/DAO.java | 7e057c055ed6634a26974b61488b47a047c14264 | [] | no_license | MirandaYates/SquadUp | b24708a655bdee1204833847e28c34e3fdc11aa0 | 00962fa5f280f6121508c3c8c02c33b03843096f | refs/heads/master | 2021-01-20T09:41:24.394789 | 2017-03-05T16:54:04 | 2017-03-05T16:54:04 | 83,926,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,251 | java | import java.sql.*;
import java.util.ArrayList;
public class DAO{
private static final String DB_URL = "jdbc:mysql://localhost/squadup?useSSL=false";
private static final String USERNAME = "root";
private static final String PASSWORD = "Ryczak13!";
public DAO(){
}
/*
* connects to the database; if successful... | [
"brentryczak@gmail.com"
] | brentryczak@gmail.com |
e9c7ac31a0dd42dffedd8de44bbbaf78b531ca90 | 7ffc545e01e9da65ba0dc19040cacafcf8113331 | /app/src/main/java/com/example/psing/sherlocked2/TaskContract.java | 5f2d13b396114a7fc3a3abbc07003b17baa216c3 | [] | no_license | psinghal20/iamSherlocked | bbc786064da03cbb4d75bf0753998f5087cf3dea | 94fd9e8ceb0c34b23da1b85b4ae16140e1c033be | refs/heads/master | 2021-01-13T16:40:21.841965 | 2017-01-08T17:27:49 | 2017-01-08T17:27:49 | 77,913,157 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 848 | java | package com.example.psing.sherlocked2;
import android.provider.BaseColumns;
/**
* Created by psing on 20-12-2016.
*/
public class TaskContract {
public static final String DB_NAME = "com.aziflaj.todolist.db";
public static final int DB_VERSION = 1;
public class TaskEntry implements BaseColumns {
... | [
"psinghal20@gmail.com"
] | psinghal20@gmail.com |
3625ec5e20dc14c3894960eae6db1ce9725fa059 | b8d9dde79a95171d59197bfca840fc11ed82a3da | /spring-boot-nosql-redis/src/main/java/com/mmc/boot/system/redis/controller/TotalController.java | 13cf093e2e232e3feb258346a77f933bfe037a95 | [] | no_license | gaowei0115/spring-boot-system | ca61896425cbf506da29ec340ee4904949120961 | 6b9537ba9a8adfd508ecc0a96e0a0d4a53ec17c7 | refs/heads/master | 2021-06-15T15:14:34.377807 | 2018-12-27T03:33:25 | 2018-12-27T03:33:25 | 95,783,286 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,156 | java | package com.mmc.boot.system.redis.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import redis.clients.jedis.JedisCluster... | [
"gao_wei0115@sina.com"
] | gao_wei0115@sina.com |
30a06f18e808c64b3afd69a86d4851483e95478f | 74e1f9f42ef667f7cdec0f616a7581433debf834 | /week/src/main/java/com/hsl/cn/common/utils/WeekUtils.java | c640ddc6348abdac3fb9e7a8b8c8ab2dd4838ff7 | [] | no_license | hansonglitester/myapplication | fe1d57e13c927b5bafe32e9ccfb591fa918680f9 | e1ad4cadb7f42bcd7d7908ce0efc3f1ea7a09b45 | refs/heads/master | 2022-06-24T12:24:03.522023 | 2019-09-12T10:55:37 | 2019-09-12T10:55:37 | 191,287,310 | 0 | 0 | null | 2022-06-17T02:30:39 | 2019-06-11T03:30:41 | Java | UTF-8 | Java | false | false | 3,430 | java | package com.hsl.cn.common.utils;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
public class WeekUtils {
/**
* 指定日期,获取是当前时间是的第几周
* @param Date date
* @return
*/
publi... | [
"2275057986@qq.com"
] | 2275057986@qq.com |
e2c51c62a30fceac40b358aa446233b21a3efe75 | 949d21d5e1b9172178619c94f066c0051c5b09a1 | /app/src/main/java/com/example/android/projectquizapp/MainActivity.java | 6e70e9dcfe13a034f7cf58e0f51eeddb8ee66467 | [] | no_license | BogdanPosa/P3GoogleABND | 924f2b4cf26440a8f7c77f0a543a05a4e2af79a1 | f614ef4255547bbb09ca1563eaba8ffcdf49ccc0 | refs/heads/master | 2021-09-10T11:13:18.768129 | 2018-03-25T10:57:38 | 2018-03-25T10:57:38 | 120,183,206 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,825 | java | package com.example.android.projectquizapp;
import android.content.Context;
import android.support.v7.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.Toast;
public class Ma... | [
"posa.bogdan@yahoo.ro"
] | posa.bogdan@yahoo.ro |
95b00be8d1242c8f2f5bd23dff4db0b142f0ca5d | 9e7571ba65865c646956fe6124e0f01d6b481ce4 | /src/main/java/com/teahyuk/payment/ap/domain/entity/CardCompany.java | d9e4966d15aaaf978c47b24733abe647c962d022 | [] | no_license | teahyuk/Payment-ap-server-exam | 91ae123127a33a6980b0b2f916cb9780cf2f6153 | ec45b25ddc7265cc199630abca3c4712d578a752 | refs/heads/master | 2023-02-01T21:04:48.600851 | 2020-12-15T03:00:50 | 2020-12-15T03:00:50 | 275,169,139 | 0 | 0 | null | 2020-12-15T03:03:55 | 2020-06-26T14:00:01 | Java | UTF-8 | Java | false | false | 681 | java | package com.teahyuk.payment.ap.domain.entity;
import com.teahyuk.payment.ap.domain.vo.uid.Uid;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Index;
import javax.persist... | [
"jtaeh57@gmail.com"
] | jtaeh57@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.