blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 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 689M ⌀ | 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 131
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 32
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 313 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d904b01b868788424f0f4316728dd485ba973afd | 3b99672285cdd97878910bed7a2e188dd29ff065 | /PalindromeNumber.java | d50ce8966d443ee703cca5319a0531a965c52b21 | [] | no_license | mohdshahbazmirza/DSA | ccd47e58d3dd53832dfc0d756ba30e257ea8a2c3 | 64e4a43e45d47cfa2837ccc8f8e7b365f262d778 | refs/heads/master | 2023-08-10T18:55:18.643181 | 2021-09-27T18:24:31 | 2021-09-27T18:24:31 | 378,571,982 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 270 | java | class Solution {
public boolean isPalindrome(int x) {
int sum=0;
if(x<0)
return false;
String s=new String(x+"");
StringBuilder sb=new StringBuilder(s);
sb.reverse();
return sb.toString().equals(s);
}
} | [
"officialshahbaz98@gmail.com"
] | officialshahbaz98@gmail.com |
e88d78cc1575d580bd442c4876f67b845cfb2faf | 6a220af1fcc9a1c7e6ddda68c1fd1f4a65558eda | /UUM_2/src/main/java/main.java | 7620f456c2232396f8db4d86527c015165b2433a | [] | no_license | bishajitchakraborty/University_Management_System | d47e06118f86e074cf72f2968d835ecb4e8a1d14 | 4a7a576dc438d75249b36b2741da4efebcc746b5 | refs/heads/master | 2023-06-07T03:29:55.380956 | 2021-07-02T18:58:38 | 2021-07-02T18:58:38 | 382,245,713 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 813 | java | import Bean.*;
import DAO.CampusDAO;
import DAO.CourseDAO;
import DAO.ProgrammeDAO;
import DAO.UserDAO;
import Helper.factoryProvider;
import Table.CourseTable;
import org.hibernate.Cache;
import org.hibernate.Session;
import org.hibernate.Transaction;
import javax.xml.crypto.Data;
import java.time.LocalDate;
import j... | [
"2018000000010@seu.edu.bd"
] | 2018000000010@seu.edu.bd |
2b3914b3da3975ccd88c8ced305653de88d3c91f | 25b98cf5850ac7ee99e27328ea44f5dedf7b0ccd | /business/src/main/java/com/neuedu/config/RedisAspect.java | b45db5116dd44957663182424615526006ce1ebf | [] | no_license | sanyepiaoxue/fy2020 | 186ae944e21c10bc75cc2da64d3512b4c0bd289a | 7663a91c4321f3409996a649b04d1a91aa86483b | refs/heads/master | 2022-12-11T12:49:42.213532 | 2020-03-11T03:50:35 | 2020-03-11T03:50:35 | 240,021,608 | 0 | 0 | null | 2022-05-20T21:28:31 | 2020-02-12T13:37:46 | Java | UTF-8 | Java | false | false | 2,120 | java | package com.neuedu.config;
import com.google.gson.Gson;
import com.neuedu.common.RedisApi;
import com.neuedu.common.ServerResponse;
import com.neuedu.utils.MD5Utils;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lan... | [
"1490477430@qq.com"
] | 1490477430@qq.com |
992da0f742fc95baa0d5899dfdd3611c74e34712 | 6fc1240c9ae2a7b3d8eead384668e1f4b58d47da | /assignments/criollok/unit2/HW09FarmSystem/HW09FarmSystem/src/ec/espe/edu/farm/model/FarmAnimal.java | 96bf91a54b3c7abd584392028e26bf9cae0c1d6d | [] | no_license | elascano/ESPE202105-OOP-TC-3730 | 38028e870d4de004cbbdf82fc5f8578126f8ca32 | 4275a03d410cf6f1929b1794301823e990fa0ef4 | refs/heads/main | 2023-08-09T13:24:26.898865 | 2021-09-13T17:08:10 | 2021-09-13T17:08:10 | 371,089,640 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,740 | java | /*
* 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 ec.espe.edu.farm.model;
import java.util.Calendar;
import java.util.Date;
/**
*
* @author Kevin Criollo BetaSoftwareTech ESPE... | [
"kevincriollo2997_@hotmail.com"
] | kevincriollo2997_@hotmail.com |
e158312e76eacad90beac9435b10dd5be1d94bbd | d4061b0169186b36adb13a19a5ce72aa2e2c7572 | /cloudhystrix/eureka-consumer-ribbon-hystrix/src/main/java/com/cloud/spring/eurekaconsumerribbonhystrix/ConsumerService.java | 4946c94c943622d0c23d9f0e0a111ba6f48fd41c | [] | no_license | chaochaoGT/cloud-hystrix | 56a7aa8e40a8c136d5a16cba5580bde98634bf8a | bb09b1e303751319e434dcffed9fa0f80b48f4bf | refs/heads/master | 2020-03-27T19:30:54.586727 | 2018-09-01T11:32:35 | 2018-09-01T11:32:35 | 146,994,056 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 673 | java | package com.cloud.spring.eurekaconsumerribbonhystrix;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
@Service
public class ConsumerS... | [
"952904879@qq.com"
] | 952904879@qq.com |
457526532bc6e10bb60b5106c173d421f3a4cfbb | f47cc9a62fd1adc63147fac81fcea02c40efb189 | /source/jaxme-jm/src/main/java/org/apache/ws/jaxme/impl/JMSAXMixedElementParser.java | 447af98a3cad5f15a99da9f82e7360865f166110 | [
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | sisbell/jaxme | d0ac8959776372ec3e604fd19c6c05ef2fd11a41 | 2429182048ae672cbadc734ac8983fdd99bbeb76 | refs/heads/master | 2021-01-19T15:30:09.964605 | 2012-07-10T09:09:36 | 2012-07-10T09:09:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,219 | java | /*
* Copyright 2006 The Apache Software Foundation
*
* 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... | [
"jochen.wiedmann@softwareag.com"
] | jochen.wiedmann@softwareag.com |
e310ac0561e08d5a177f0eae0d562eb48b70f7b5 | fba814aacefab242237a82eb377563c5be4b875f | /app/src/main/java/me/kimhieu/yummy/ecommerceproject/login/LoginActivity.java | ae159b6d1d79ab21f296aa3fa311c4bd5d1ba7a8 | [] | no_license | nhatsinh92/yummy-ecommerce | a0fc5f07c952fe9ef5590ef3ab5423c57afef361 | aae478867eabb86a730f24249a180609613395ba | refs/heads/master | 2021-01-09T20:04:37.947781 | 2016-06-25T08:53:55 | 2016-06-25T08:53:55 | 60,360,444 | 0 | 0 | null | 2016-06-25T08:53:56 | 2016-06-03T16:01:13 | Java | UTF-8 | Java | false | false | 2,848 | java | package me.kimhieu.yummy.ecommerceproject.login;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.support.v4.content.LocalBroadcastManager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bund... | [
"nhatsinh93@gmail.com"
] | nhatsinh93@gmail.com |
9834f88b6f2fa6b9f151ef7225bb4c6ad0fc8371 | 8e5435288c133a86d45f7c715b5aab2373009090 | /JavaHandbook/src/main/java/org/arunsiddharth/DynamicProgramming/ShortestPossibleSupersequence.java | 946560b300d91deadb7d393c2854355550983505 | [] | no_license | arunsiddharth/Whisper | db1414d7dfc2b7ba4e1cbcb9701aaed5a67681e1 | 2966255eb37902e213f075695a2fef5c6604b964 | refs/heads/main | 2023-05-05T17:52:13.002400 | 2021-05-27T16:03:06 | 2021-05-27T16:03:06 | 324,918,625 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 153 | java | package org.arunsiddharth.DynamicProgramming;
public class ShortestPossibleSupersequence {
public static void main(String[] args){
}
}
| [
"arunsiddharth@SilverEagle.local"
] | arunsiddharth@SilverEagle.local |
853ee794873af9fd05ffd0eb1d53b224bdc0808d | aef9a95106eaf24b85104f4536d20cf7341506a6 | /src/main/java/br/com/bianeck/creational/abstractfactory/caso4/EnginolaCPU.java | 1e9f4bb89d76078cc9c235b8b460f88e783dcdb2 | [
"MIT"
] | permissive | JElvisBL/designpatternstutorial | a3b4952af57998e83b8743ac5797be1fd8027184 | 3e5f92d4cc2f8ae098b66c73236e7a8498932d5a | refs/heads/master | 2022-04-22T09:19:19.415037 | 2020-01-22T01:42:36 | 2020-01-22T01:42:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 98 | java | package br.com.bianeck.creational.abstractfactory.caso4;
public class EnginolaCPU extends CPU{
}
| [
"thiagobianeck@gmail.com"
] | thiagobianeck@gmail.com |
2369396762f3e2ecdf5bf9aafdaa37e3813b0990 | 26e0472d936798b7d812d6e6cc5ba22ea7877f1f | /src/main/java/org/demo/model/Person.java | 3d82c845ca09cbe8a043a1a1bd012abf0c600869 | [] | no_license | cnduffield/demo-web-service | 44812b72297230f75f208958907d75b16b82f38f | 6e5c3b76a9ed89f2c6cb99d67f77eef8736ee55c | refs/heads/master | 2021-01-19T17:57:36.556139 | 2017-08-22T20:07:45 | 2017-08-22T20:07:45 | 101,101,850 | 0 | 0 | null | 2017-08-22T19:54:05 | 2017-08-22T19:54:05 | null | UTF-8 | Java | false | false | 855 | java | package org.demo.model;
import org.springframework.data.annotation.Id;
public class Person {
private String id;
private String firstName;
private String lastName;
private String governmentId;
private String email;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstNam... | [
"jeremy.pulcifer@ally.com"
] | jeremy.pulcifer@ally.com |
a5698c63586d688360bef11ee4eb540324f72168 | 1c0df66bdc53d84aea6f7aa1f0183cf6f8392ab1 | /temp/src/minecraft/net/minecraft/client/gui/GuiDisconnected.java | 0970f1de6bb4be03eb5dfb9a93b6583fff16a3b8 | [] | no_license | yuwenyong/Minecraft-1.9-MCP | 9b7be179db0d7edeb74865b1a78d5203a5f75d08 | bc89baf1fd0b5d422478619e7aba01c0b23bd405 | refs/heads/master | 2022-05-23T00:52:00.345068 | 2016-03-11T21:47:32 | 2016-03-11T21:47:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,253 | java | package net.minecraft.client.gui;
import java.io.IOException;
import java.util.List;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.client.resources.I18n;
import net.minecraft.util.text.ITextComponent;
public class GuiDisconnected extends GuiScreen {
priv... | [
"jholley373@yahoo.com"
] | jholley373@yahoo.com |
f0cf97995650dfe586c75626441900a2bdef3acb | 8af1164bac943cef64e41bae312223c3c0e38114 | /results-java/JetBrains--kotlin/087eec45211fa3ba37cb6c49eb35589517e849ba/before/KotlinGotoTestGenerated.java | e6dd38063e09b602b65269712d7af51d9271121b | [] | no_license | fracz/refactor-extractor | 3ae45c97cc63f26d5cb8b92003b12f74cc9973a9 | dd5e82bfcc376e74a99e18c2bf54c95676914272 | refs/heads/master | 2021-01-19T06:50:08.211003 | 2018-11-30T13:00:57 | 2018-11-30T13:00:57 | 87,353,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,158 | java | /*
* Copyright 2010-2014 JetBrains s.r.o.
*
* 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 agre... | [
"fraczwojciech@gmail.com"
] | fraczwojciech@gmail.com |
7b8b92da044169f120d6b752e1f2c882d5c43993 | e171b00da70670df9c13f1bacd6e5e12f12462a5 | /final project report/3rd Increment/BowlPredictorA/gen/com/umkc/bigdata/boulpredictora/BuildConfig.java | 5ae9e21729c3299577a5bb5c69bf455b45a2d931 | [] | no_license | tmrhc/Big-Data-Analytic-s-and-Apps-Project | 6922920ef43edcedf114fef18a295f1f11bf9924 | b3d10de19254a6817a7d60ca4290f23d981281df | refs/heads/master | 2016-09-05T13:49:53.730433 | 2014-08-01T06:29:21 | 2014-08-01T06:29:21 | 21,059,989 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 173 | java | /** Automatically generated file. DO NOT MODIFY */
package com.umkc.bigdata.boulpredictora;
public final class BuildConfig {
public final static boolean DEBUG = true;
} | [
"tmrhc@mail.umkc.edu"
] | tmrhc@mail.umkc.edu |
fe795ea939358a597014d1e35bd9d701bb502f49 | dc81649732414dee4d552a240b25cb3d055799b1 | /src/test/java/org/assertj/core/api/atomic/longarray/AtomicLongArrayAssert_containsExactly_Test.java | 6ee23098997036ee9bea72e1086fe3bba9031000 | [
"Apache-2.0"
] | permissive | darkliang/assertj-core | e40de697a5ac19db7a652178963a523dfe6f89ff | 4a25dab7b99f292d158dc8118ac84dc7b4933731 | refs/heads/integration | 2021-05-16T23:22:49.013854 | 2020-05-31T12:36:31 | 2020-05-31T12:36:31 | 250,513,505 | 1 | 0 | Apache-2.0 | 2020-06-02T09:25:54 | 2020-03-27T11:11:36 | Java | UTF-8 | Java | false | false | 1,225 | 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 under t... | [
"joel.costigliola@gmail.com"
] | joel.costigliola@gmail.com |
6c5f0c2f9063ba855201272e53247a363452e61c | b8437fca14c8803cd3ac24340aff6169b433ae3c | /MMS_Vendetta/src/main/java/com/mms/activity/RegisterActivity.java | 6bb01490a3f28b6ddb5130c15f514a5134a9e2ee | [] | no_license | blu3-b1rd/mms_vendetta | d1ce6caa951e5e24c022f3d62c2eab7a2ccbb74f | 374d04fd1c231d3317f7614d97fa30d0e0b610c0 | refs/heads/master | 2021-05-28T00:41:52.434627 | 2014-04-25T02:34:39 | 2014-04-25T02:34:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,836 | java | package com.mms.activity;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
import android.app.DatePickerDialog;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.View;
import androi... | [
"jmendez.garmendia@gmail.com"
] | jmendez.garmendia@gmail.com |
23c91fa9cfb4213a203c7bcdb2cffbc48d9fb4b8 | b82e0c665953aa5605a9d030a4410ad121005ba9 | /MobileCourse/src/com/assignment/mobilecourse/AssignmentAdd.java | bb3cfd6c56bef890f90b101c8a6dcd6065f44b28 | [] | no_license | JWilson9/Android-Development | cc003b4935d1ea3834ee42fbd0a8a1c05815f537 | 063133d1fcb6176f967eb5f46541d037465f428a | refs/heads/master | 2021-01-12T05:02:36.596988 | 2017-01-02T12:26:07 | 2017-01-02T12:26:07 | 77,831,688 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,847 | java | /*
*TITLE: MOBILE COURSE
*
*Author: James Wilson DT211/3 Kevin Street
*
*All work is done by James Wilson, and owned by James Wilson
*
*Designed, programmed, and tested by James Wilson
*
*CopyRight of James Wilson
*
*27/11/14
*
*/
package com.assignment.mobilecourse;
import android.app.A... | [
"noreply@github.com"
] | JWilson9.noreply@github.com |
8eaf60a507c20f200cc9256266792191a3a330ac | b38e87295ab6e2cdf004dec2a2e5042f230ba47f | /src/steganography/MyDialog.java | 98501e65a0073669b3499a1c84af27ceb5122fc1 | [] | no_license | abhijeet-adarsh/Steganography | d102c9688659662b89c2dcdbba43af5be405cd58 | 67f360a13377ed983bbd729094fd8df5dc8db7ac | refs/heads/master | 2021-03-13T00:06:23.705839 | 2011-02-04T08:45:42 | 2011-02-04T08:45:42 | 1,325,884 | 19 | 10 | null | null | null | null | UTF-8 | Java | false | false | 1,309 | java | package steganography;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JScrollP... | [
"abhijeet.adarsh@gmail.com"
] | abhijeet.adarsh@gmail.com |
d5da1b457ada9dd741184849e61a9a45bc56a77b | 23822c88d81cf23b5ccaed4cdf2cd43962c83120 | /common/src/main/java/org/common/Observer.java | 9217357d04845752348efd487ab0ff48ab0567d9 | [] | no_license | guzfernandez/miRMIApp | 762795931e14f9b491255068614c156b54c92715 | ad4c7a641f83f6cd9ed2e3ce77d5d3c119e90a4c | refs/heads/master | 2020-06-11T07:44:26.693276 | 2016-12-13T19:27:05 | 2016-12-13T19:27:05 | 75,730,746 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,213 | java | package org.common;
import java.io.Serializable;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.List;
public interface Observer extends Remote, Serializable{
public void mostrarJugadores() throws RemoteException;
public void actualizarTimer(int segundo) throws RemoteException;
public voi... | [
"guzfernandez97@gmail.com"
] | guzfernandez97@gmail.com |
fc25342ed61b5a7c07017884fe0fb91f3f760a17 | b77a4d5bd23a3f69e90e5e01508fbc3687a432f5 | /weblogger-business/src/main/java/org/apache/roller/weblogger/business/search/IndexManager.java | d7df4445ed11033e44f234a145c1f83708b0ae0d | [
"Apache-2.0",
"LicenseRef-scancode-jdom",
"BSD-3-Clause"
] | permissive | JavaQualitasCorpus/roller-5.0.1 | 59abb7cbd8389c47b27e0a341a3746dacfd2df88 | 08e7be2b36b148a2e293948e3664177953b83124 | refs/heads/master | 2023-08-13T19:29:24.333161 | 2020-05-29T15:53:22 | 2020-05-29T15:53:22 | 167,005,068 | 0 | 1 | NOASSERTION | 2022-07-08T19:05:18 | 2019-01-22T14:09:12 | HTML | UTF-8 | Java | false | false | 2,793 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* 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... | [
"taibi@sonar-scheduler.rd.tut.fi"
] | taibi@sonar-scheduler.rd.tut.fi |
593b0550142e5b836e892fced8ff5c8ba5bba09d | 991c05764cfdac7aaf9330e86fb418bbca4553ac | /src/fsw/DataPntStr.java | 4753779ef46db3c48b772af043f3e4d2b1695c4d | [] | no_license | govtmirror/CARE | b57ff7094376d4cf1c550cd59a5d0cd402a4778f | 5635af22ebb6c0aaa5303c5a95c3784f38021150 | refs/heads/master | 2021-01-12T07:47:11.076769 | 2015-09-26T12:47:28 | 2015-09-26T12:47:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,747 | java | package fsw;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import ccsds.CcsdsTlmPkt;
/**
* Provide a base class for all raw data to string conversions.
*
* TODO - Resolve byte flip issue either here or in network classes.
*
* @author David McComas
*/
public abstract class DataPntStr {
static final... | [
"david.c.mccomas@nasa.gov"
] | david.c.mccomas@nasa.gov |
c71a208024f96242d153ecb0bd58c7ad2067b199 | 8758de583eb4da2500194044f9158820a6c5aefa | /app/src/main/java/com/example/administrator/ditu/SMSBroadcastReceiver.java | 4a897b4451980740e29fc61afee8e0664d9bfb0d | [] | no_license | baotiange/btgditu | acac900e3c4c576cd8d1b9751d59f8318744a000 | d9de8556a1596292e07452078c95cad5651ca09e | refs/heads/master | 2020-02-26T16:50:14.376906 | 2016-10-21T10:22:39 | 2016-10-21T10:22:39 | 71,555,138 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,534 | java | package com.example.administrator.ditu;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.telephony.SmsMessage;
import android.util.Log;
import com.baidu.location.BDLocation;
import ja... | [
"550752654@qq.com"
] | 550752654@qq.com |
44279fde0db50052cecccde4bc7da9b93ddde3cb | b4c47b649e6e8b5fc48eed12fbfebeead32abc08 | /android/util/SparseArray.java | 94ded90a74a79bcc8154d91e34358813e46df1db | [] | no_license | neetavarkala/miui_framework_clover | 300a2b435330b928ac96714ca9efab507ef01533 | 2670fd5d0ddb62f5e537f3e89648d86d946bd6bc | refs/heads/master | 2022-01-16T09:24:02.202222 | 2018-09-01T13:39:50 | 2018-09-01T13:39:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,061 | java | // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3)
package android.util;
import com.android.internal.util.ArrayUtils;
import com.android.internal.util.GrowingArrayUtils;
import libcore.util.EmptyArray;
// Ref... | [
"hosigumayuugi@gmail.com"
] | hosigumayuugi@gmail.com |
f3a6d113bca5a28e6b87aaf04fb566a3a1accddc | 3588d2cb552ee19d6610564251048b479bb32b52 | /sp-basedata/src/main/java/com/jiangshun/sp/basedata/extend/HandleResult.java | c5d619c799d99238c355354e6b41b3bc77026047 | [] | no_license | l8r/spsystem | 93d2e8d907473038abf78bd4ded020d600b7ee7e | 63ad75a1c6156e8906c86d801d6d467d3c3437b1 | refs/heads/master | 2021-04-03T08:57:15.535846 | 2018-10-22T06:59:25 | 2018-10-22T06:59:25 | 124,766,005 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 783 | java | package com.jiangshun.sp.basedata.extend;
public class HandleResult<T> {
private String status;
private T data;
private String msg;
public T getData() {
return data;
}
public void setData(T data) {
this.data = data;
}
public HandleResult() {
this.status = "200";
}
public HandleResult(String cod... | [
"l8r_127@126.com"
] | l8r_127@126.com |
f35603bf73460dda4a181c540f6a6404b2e32369 | f747b7a762339777dc68a0d8d5602c67d62c2721 | /src/main/java/com/timerchina/spider/dao/GetJSONResult.java | 7324b28e803ea4c23e81c723e8a43ffe245ec2f8 | [] | no_license | cc8848/spider-2 | 1774c084ed5435dc06547c70dec49967b3d27828 | 83112948f45d3b7d2092f3c29a3ae7cd3b6f138e | refs/heads/master | 2021-06-09T04:17:17.860667 | 2017-01-10T04:40:00 | 2017-01-10T04:40:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 493 | java | package com.timerchina.spider.dao;
import net.sf.json.JSONArray;
import com.timerchina.spider.bean.SpiderResult;
import com.timerchina.spider.dao.SpiderCrawlerResultDao;
/**
* 返回JSON格式的结果
* @author jason.lin@timerchina.com
* @time 2014-7-18 上午09:51:13
*/
public class GetJSONResult implements SpiderCrawlerResultD... | [
"jason.lin@timerfchina.com"
] | jason.lin@timerfchina.com |
bff29e57bcbfcc91a9086e5ad2f0acc1f201cfda | 6f93b780cbbf740dcda17fdcb5f718f98df0ccc9 | /app/src/main/java/com/teamdonut/eatto/ui/UserDetailDialog.java | bd0e57285565b265ba032b37515be71be8121845 | [] | no_license | boostcampth/boostcamp3_D | f925d1ad325acd018288337dbcece514922d269e | 1512b0081a9e65c5f5a44b45ecc31265b573740e | refs/heads/develop | 2021-07-01T02:15:08.308410 | 2020-09-21T04:42:43 | 2020-09-21T04:42:43 | 166,049,968 | 5 | 6 | null | 2019-10-14T16:11:10 | 2019-01-16T14:03:03 | Java | UTF-8 | Java | false | false | 1,282 | java | package com.teamdonut.eatto.ui;
import android.app.Dialog;
import android.graphics.drawable.ColorDrawable;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.data... | [
"34717634+ro0opf@users.noreply.github.com"
] | 34717634+ro0opf@users.noreply.github.com |
12ca4350d41f9e2a4873015ee9d810e8151f31fe | ef830bb18e1f432122e1c9523d4c807c9ef077a5 | /src/main/java/com/taobao/api/request/QimenItemsTagQueryRequest.java | c925581a155dee010c01768016cfa62a91f7757c | [] | no_license | daiyuok/TopSecuritySdk | bb424c5808bd103079cbbbfcb56689a73259a24d | 8ac8eb48b88158a741c820a940564fd0b876e9db | refs/heads/master | 2021-01-22T06:49:05.025064 | 2017-03-01T06:19:42 | 2017-03-01T06:19:42 | 81,789,925 | 2 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,339 | java | package com.taobao.api.request;
import com.taobao.api.internal.util.RequestCheckUtils;
import java.util.Map;
import com.taobao.api.ApiRuleException;
import com.taobao.api.BaseTaobaoRequest;
import com.taobao.api.internal.util.TaobaoHashMap;
import com.taobao.api.response.QimenItemsTagQueryResponse;
/**
* TOP API:... | [
"daixinyu@shopex.cn"
] | daixinyu@shopex.cn |
a77aaacee454f092ef9c457b7983f7eff7c6aa13 | a4874952a63a252023a2a1aeffb8eefd650e9e65 | /app/src/main/java/com/example/lojacelular/data/network/model/RepositoryMenuPrincipal.java | bb89bb4f7abfb6eadbfc9870b9a164a677b8ed1d | [] | no_license | luizFelipeBarbosaCode/lojaCelular | fb02a8d27f249c66d5c7849dc9eb24c9dd36c56f | 9e02dc175b04530868c98208897bf423986013bd | refs/heads/master | 2022-12-18T08:55:24.351164 | 2020-09-19T16:20:54 | 2020-09-19T16:20:54 | 296,905,910 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 921 | java | package com.example.lojacelular.data.network.model;
import com.example.lojacelular.R;
import com.example.lojacelular.ui.MenuPrincipal.CelularesClass;
import java.util.ArrayList;
public class RepositoryMenuPrincipal
{
// metodo que é chamado na camada Presenter onde fica responsavel pela criação da tabela de cel... | [
"lipebarbosa429@gmail.com"
] | lipebarbosa429@gmail.com |
5830370b930f60acded4da45ce496258bcb20641 | fee1b269233dab9b9bda4b738d48299d72e8a024 | /src/main/java/com/tranjt/mortgageplan/MortgagePlanApplication.java | 1771b289309c0d219fa68c4bb003ae820b36d62e | [] | no_license | tranjt/mortgage-plan | 0cacaabbbd30c194d1d69e0fdbb5c849376658e0 | 56aafe954e9ff15874c536e9b8617d0b89ad4564 | refs/heads/master | 2023-09-03T20:47:58.076205 | 2021-11-14T22:38:52 | 2021-11-14T22:38:52 | 426,768,759 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 329 | java | package com.tranjt.mortgageplan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MortgagePlanApplication {
public static void main(String[] args) {
SpringApplication.run(MortgagePlanApplication.class, args... | [
"tranjt80@gmail.com"
] | tranjt80@gmail.com |
e05e57ebf0747fd02746e7f3a7952ab952b3c00f | 8c73f38ec4426598b69712c09117febe921612d7 | /src/org/sosy_lab/cpachecker/util/CFATraversal.java | 7ac23a8e0ef3df64b31e167a3dd166d11bd3106c | [
"Apache-2.0"
] | permissive | TommesDee/cpachecker | 7c07f97f0d6493e8e1c37395ac290baa21149245 | 63c4d3aa409cf5e3ef942ae532c2baa7a355a825 | refs/heads/master | 2021-01-17T05:33:54.675253 | 2014-03-03T21:43:00 | 2014-03-03T21:43:00 | 14,956,754 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 17,502 | java | /*
* CPAchecker is a tool for configurable software verification.
* This file is part of CPAchecker.
*
* Copyright (C) 2007-2012 Dirk Beyer
* 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... | [
"seratho@gmail.com"
] | seratho@gmail.com |
5f5a524063b332936bb023319ff29f51ce290ea6 | 459eef3edd22a5ddf20fc8e8d77d594d74e53bb0 | /TP-AD_Common/TP-AD_Common/src/beans/MercaderiaBean.java | cda2d6528e2dfb74e00bc4c4bc8bc761fb650e9c | [] | no_license | SebastianSz84/MisProyectos | 1337056541afce268575249a3a5de1e8cbba45cd | 74e4be4871309b89c99a924ebfa86d77ddc30f62 | refs/heads/master | 2020-04-14T14:49:50.152632 | 2015-12-21T17:32:43 | 2015-12-21T17:32:43 | 36,565,005 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,749 | java | package beans;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public abstract class MercaderiaBean implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
protected int idMercaderia;
protected float alto;
protected float ancho;
protected float... | [
"sebastiansz@gmail.com"
] | sebastiansz@gmail.com |
df877d015e896157c2004404d2f5b6497df3f8ba | 46a2e8aecb290b264a9897df12e83d8e48574844 | /src/com/zhao/contorller/SstudentServlet.java | 78a5b9a9c26e6a47ff192d8880fde3ceec727c8b | [] | no_license | zhaoxianghui/Repository1 | 7ce57c81bcea0303054efd81fc68846d916dd5d5 | 7a47668531b453c3442a802668eef3ca86c70bc1 | refs/heads/master | 2020-09-21T08:38:20.799220 | 2016-09-06T07:31:43 | 2016-09-06T07:31:43 | 67,481,791 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,237 | java | package com.zhao.contorller;
import java.io.IOException;
import java.util.Date;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.zhao.entity.Student;
import com.... | [
"991475356@qq.com"
] | 991475356@qq.com |
d73f28d0836ca467a6338e8537a94fc943491b38 | 2d843beee836ac01790023bc467db65ab308d41f | /app/src/main/java/com/betall/app/fragment/RootFragment.java | 41990536b847c04fad20cc97f3a9de8197ad4641 | [] | no_license | ZJEdward/Betall | e5e052d03d14a4e9347572b24b13952c701daadb | 4e9573e9dfc104408fdfaf7d8cdef47ca63e40b6 | refs/heads/master | 2020-03-13T19:01:12.931623 | 2018-04-27T04:36:52 | 2018-04-27T04:36:52 | 131,245,975 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,459 | java | package com.betall.app.fragment;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.content.ContextCompat;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import com.betall.app.R;
impor... | [
"zhongj@bitbays.com"
] | zhongj@bitbays.com |
f902a1a03695749c0b7f66176aac9ab667657fd0 | 9da217a135799afb8faaa3fb5aa3ac15efc202f9 | /src/Autor.java | ce16e58ae759e2bd6ff74bcda8687437a68fe91f | [] | no_license | Dinius10/jejejejejejejeje | a8b97b69998099886692e6d829efbbf4914533a3 | 45a39f6c880056eeb1887e20a9dc279c40b83cfe | refs/heads/master | 2022-12-05T02:25:25.029645 | 2020-08-29T06:12:35 | 2020-08-29T06:12:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 460 | java | import java.util.List;
public class Autor {
//ATRIBUTOS
String nombre;
List<Titulo> titulos;
//metodo constructor por defecto
public Autor(){
}
//sobrecarga de constructores
public Autor(String nombre) {
this.nombre = nombre;
}
//sobrecarga de constr... | [
"noreply@github.com"
] | Dinius10.noreply@github.com |
2152fc25527838391ec19c407094219a7769e1b6 | 76d408a52cde51ebb55826c0a7df434d4242f934 | /Projet_Bhary_Ayman/src/projet/bahry/Joueur.java | 461b49681dcd82e14c3f4b912e605babea187fc0 | [] | no_license | hugobossss/bhary | a8b6e734ff1c64afa24567a6f1b9200fde1ec62e | 5e3c1433f238da5ffecfdbf98552a2bf0db0c4d2 | refs/heads/master | 2020-05-06T13:20:09.372668 | 2019-05-09T14:25:42 | 2019-05-09T14:25:42 | 180,128,649 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 493 | java | /*
* 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 projet.bahry;
import java.util.ArrayList;
/**
*
* @author adahbi
*/
public class Joueur {
private String CouleurJ... | [
"wangyikai2333@gmail.com"
] | wangyikai2333@gmail.com |
e0ebf467ad74a12b952a4f9bdfd11e510a9058f3 | 88ab401009bfd6f518a12cd5b50f886d367efed5 | /gen/com/facebook/android/R.java | 53cd9096aa275849c134e722a6aff1eac0606843 | [] | no_license | pratiknaik/dc-go-home | 1e71de0cfeebfec9d7f26c5e2aea135a453c1ae8 | 5c20e5a3decbff52091b18811a472962b502632c | refs/heads/master | 2021-01-19T17:47:48.221821 | 2013-09-07T20:27:06 | 2013-09-07T20:27:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,426 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.facebook.android;
public final class R {
public static final class id {
public static final int com_facebook_picker_title =... | [
"pratik@justchalo.com"
] | pratik@justchalo.com |
e89d333f1049a26a44a4e75eb91cc08f16a356bf | 3b53c1ff0d5d1b1089e0bfadeb0b3e29067d5653 | /src/com/mahdi/service/dao/UserDao.java | 2acb3c6475c2d167a55597f320890e915fc83eab | [] | no_license | Mahdihp/TestJavaEEServlet | 5956109e9009382e804685e6f9da1a925c3a8795 | 0d2ef5809ec57dfe3bfc8e0286d5cf004ab414d3 | refs/heads/master | 2020-03-25T07:04:06.884689 | 2018-08-04T17:15:42 | 2018-08-04T17:15:42 | 143,539,532 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,444 | java | package com.mahdi.service.dao;
import com.mahdi.service.model.DaoException;
import com.mahdi.service.model.Entity;
import com.mahdi.service.model.UserEntity;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
public class UserDao extends Dao {
public UserDao() throws Exc... | [
"mahdihp.devsc@hotmail.com"
] | mahdihp.devsc@hotmail.com |
132714b68653a02a4895feb4e9ff56d58e96d9b7 | 40c3043e0bb2aac174006644aefb33a792e8f5bb | /app/src/main/java/com/lazy2b/app/interfaces/ICameraOptHandler.java | fd9c27c3fc5f0abf93d8d0e4936e0da076369be2 | [
"Apache-2.0"
] | permissive | lazy2b/LazyDemo | a26a2626a89e5708766d3d5c9a0a9e68abade80f | 58b8af71c9aaacaba8789387efaa356219ca6d3b | refs/heads/master | 2021-01-20T20:47:46.286603 | 2017-02-16T06:36:15 | 2017-02-16T06:36:15 | 64,460,906 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 505 | java | /**
* 项目名:Lazy2b
* 包 名:com.lazy2b.app.interfaces
* 文件名:ICameraOptHandler.java
* 创 建:2016年6月21日下午4:10:13
* Copyright © 2016, GDQL All Rights Reserved.
*/
package com.lazy2b.app.interfaces;
/**
* 类名: ICameraOptHandler <br/>
* 描述: TODO. <br/>
* 功能: TODO. <br/>
*
* @author E-mail:Administrator
... | [
"jack.lin@qq.com"
] | jack.lin@qq.com |
c7dc009660f64e70a178d08dd0b5e95ccc8d2940 | b7534fd757c8a35676bc78d197f0536f957c9452 | /src/GPA.java | 0473d36d4dfdbf29c6527ab3b0977156a161ce28 | [] | no_license | NathanCarbee/GPA-Calculator | ad305dacf9540b0875579b3f579563b1c0405da0 | f4ad843badafe0ea98619fd55a9c2864ece00fbc | refs/heads/master | 2020-12-24T19:04:30.625337 | 2016-05-13T11:59:24 | 2016-05-13T11:59:24 | 58,735,906 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,451 | java | import java.util.Scanner;
public class GPA {
public static void main(String[] args) {
//Number of classes
int a = 1;
double b = .5;
int c;
int d;
String newLine = System.getProperty("line.separator");
Scanner in = new Scanner(System.in);
//1 credit(s)
System.out.print("Number of full year cl... | [
"nathan.carbee@kearsarge.org"
] | nathan.carbee@kearsarge.org |
e0ed4cc6da6d566b870e56cfd3b3c701d5427485 | 498b329209ac6b048876d33c229be694416c0fe0 | /HealthCareInternetPortal/src/main/java/edu/neu/model/Useraccount.java | caf27fe4903c7b8c48e37fe7c5ce3fee5b0afa68 | [] | no_license | dasarianudeep/healthcareinternet | af6ff393d54a8afdd20443bb1673413a035c43cb | e34651df25a6eccffb52837266a0addc6e930723 | refs/heads/master | 2021-01-10T12:48:57.305949 | 2016-03-15T18:00:45 | 2016-03-15T18:00:45 | 50,638,059 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,779 | java | package edu.neu.model;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.OneToOne;
import javax.validation.Valid;
import javax.validation.constraints.Pattern;
import javax.va... | [
"anudeepdasari99@gmail.com"
] | anudeepdasari99@gmail.com |
ec66d7e8ecfefe34442bfb075f6c6b935574f81a | ae3cd9373278feab2a296237973a358b1dca9b94 | /src/main/java/cn/succy/alarm/mq/AlarmMessageQueue.java | ea845771eb5c6ef170a685801309bdb2754172e9 | [] | no_license | Succy/lg-alarm-sb | 28511b96c82515527edbea8f11863fc4efdd562f | 1c99c1b05f5ca2298d4d90ddab931e77ce42be07 | refs/heads/master | 2020-04-07T13:21:24.624255 | 2018-03-22T09:47:58 | 2018-03-22T09:47:58 | 124,215,386 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,025 | java | package cn.succy.alarm.mq;
import cn.hutool.log.Log;
import cn.hutool.log.LogFactory;
import cn.succy.alarm.entity.SysConf;
import cn.succy.alarm.util.SysConfHelper;
import cn.succy.alarm.util.TemplateModel;
import lombok.extern.slf4j.Slf4j;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Linke... | [
"succygsx@sina.com"
] | succygsx@sina.com |
fb41bc458bce1a8f02b7e6b0af9b52704b55f134 | fb7d7b587ffc0ff0b86cfa46940149cf5e4663c8 | /sfs-server/src/test/java/org/sfs/integration/java/func/PutObject.java | addd5d014818e24d056ef5845f7c4c8cc417b635 | [
"Apache-2.0"
] | permissive | pitchpoint-solutions/sfs | 9c9d231118d7bf37c9d5672d070a527a1435f3e9 | d62387f494b369c819e03e5dc9e97b39a9fc85b0 | refs/heads/master | 2022-11-11T22:48:48.868752 | 2019-12-13T18:32:07 | 2019-12-13T18:32:07 | 69,255,078 | 94 | 14 | Apache-2.0 | 2022-10-04T23:43:10 | 2016-09-26T13:53:44 | Java | UTF-8 | Java | false | false | 4,289 | java | /*
* Copyright 2016 The Simple File Server Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicabl... | [
"dainius.rygelis@pitchpointsolutions.com"
] | dainius.rygelis@pitchpointsolutions.com |
9b37e314371ec3cebe14252b885c3b5ddfb89abf | 752b8db6d6b430aca9d9637c6227e0aef4a9e54b | /src/main/java/roo/ph/repository/AuthorRepositoryCustom.java | 02cf9c75edd8a139af71c7e479c3093cb53f33c6 | [] | no_license | dkubrakov/ph1 | 892a24e2f2dfbfe42243234fb0cf46421216f8aa | 53ceb5395e963c2c9b71509b05d6b325ffa9e896 | refs/heads/master | 2020-04-12T17:00:47.576049 | 2018-12-20T21:59:19 | 2018-12-20T21:59:19 | 162,631,616 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 323 | java | package roo.ph.repository;
import org.springframework.roo.addon.layers.repository.jpa.annotations.RooJpaRepositoryCustom;
import roo.ph.domain.Author;
/**
* = AuthorRepositoryCustom
TODO Auto-generated class documentation
*
*/
@RooJpaRepositoryCustom(entity = Author.class)
public interface AuthorRepositoryCustom {... | [
"J.Rayushkin@gmail.com"
] | J.Rayushkin@gmail.com |
c57728dbd7d61965167328120b9a096ace1327cb | 3a198be08e3a70b92a9d7450e44dfbc197963726 | /src/org/artcccj/leetcode/link/ListNode.java | c7a21f3c67c50265573a7fa50355cb726e1317b9 | [] | no_license | artcccj/leetcode | 324cfcb89377e68990934a06e7d293694c253469 | 8a728b5a0b4148cad6470d5336ab86540c538335 | refs/heads/main | 2023-04-04T23:02:07.736682 | 2021-04-19T21:22:40 | 2021-04-19T21:22:40 | 356,785,196 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 595 | java | package org.artcccj.leetcode.link;
import java.util.ArrayList;
import java.util.List;
public class ListNode {
int val;
ListNode next;
public ListNode() {
}
public ListNode(int val) {
this.val = val;
}
public ListNode(int val, ListNode next) {
this.val = val;
this... | [
"932108465@qq.com"
] | 932108465@qq.com |
d49bbeeab9cf1e083c076f098887562f0c2e82ad | ceeea83e2553c0ffef73bb8d3dc784477e066531 | /e-Finance/src/com/svs/finance/dao/impl/C_VoucherPurchasesDAOImpl.java | 649719281827c28b860a87146060172da111f1ae | [
"Apache-2.0"
] | permissive | anupammaiti/ERP | 99bf67f9335a2fea96e525a82866810875bc8695 | 8c124deb41c4945c7cd55cc331b021eae4100c62 | refs/heads/master | 2020-08-13T19:30:59.922232 | 2019-10-09T17:04:58 | 2019-10-09T17:04:58 | 215,025,440 | 1 | 0 | Apache-2.0 | 2019-10-14T11:26:11 | 2019-10-14T11:26:10 | null | UTF-8 | Java | false | false | 1,084 | java | package com.svs.finance.dao.impl;
import java.util.List;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.hibernate3.HibernateTemplate;
import com.svs.finance.bean.VocherPurchaseBean;
import com.svs.financ... | [
"rrkravikiranrrk@gmail.com"
] | rrkravikiranrrk@gmail.com |
e28a6b2da1752227df6d9bc465135268b2e27bbf | 1eebb2025068fe1c51ed3cc5bf1deb0e5e49e5f6 | /march-concurrent/src/main/java/com/abin/lee/march/svr/concurrent/lru/LruShootCache.java | 84d93aac36eb6edc19c0c558021481e6856b78ee | [
"MIT"
] | permissive | zondahuman/march-svr | 7febd6a0884d57ea2d08bb2d56fec394659353fe | 9e12d6549fd8ad122cbc2e02390ad1af57c42f70 | refs/heads/master | 2021-01-01T16:47:01.154468 | 2018-05-18T08:48:53 | 2018-05-18T08:48:53 | 97,918,739 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,104 | java | package com.abin.lee.march.svr.concurrent.lru;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
/**
* Created by abin on 2018/1/18 23:19.
* march-svr
* com.abin.lee.march.svr.concurrent.lru
* https://www.cnblogs.com/liuyang0/p/6664586.html
*/
public class LruShootCache<K, V> {
priv... | [
"zondahuman@gmail.com"
] | zondahuman@gmail.com |
3f1e0c007b184ac419feb322bce899b4d90b1470 | 9f4e7bde6f53364af80d9b66d194b431e82c050c | /feign-demo1/src/main/java/com/dayong/demo/feign/config/FeignConfiguration.java | b4ffd7901a82d015aa9de99af77c52f75cef856f | [] | no_license | dayongchan/feign-invoke | cc78594b2e78b09e07f6da7c94d8ae077883b4c3 | 2de98ea53aaac97b1e4be41b19e26cf962d2842a | refs/heads/main | 2023-04-18T04:28:37.975026 | 2021-04-29T11:47:24 | 2021-04-29T11:47:24 | 362,790,220 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,317 | java | package com.dayong.demo.feign.config;
import com.alibaba.fastjson.JSON;
import com.dayong.demo.feign.common.Result;
import feign.Response;
import feign.Util;
import feign.codec.ErrorDecoder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;
import org.springfr... | [
"dayong@huohaoyun.cn"
] | dayong@huohaoyun.cn |
e654de5dc9141961dbceee8b70965975e32c3e42 | 2e6a112bfe9cdb05cbb213acefa025141ed7c543 | /src/main/java/weka/attributeSelection/RerankingSearch.java | fdd4cac1f9edc32c4749f841b2300bd0fbdcef79 | [] | no_license | UCLM-SIMD/FastFeatureSelection | 3271cdc4166a903a2e674c39cc80ffc524872f58 | 018e2999c6cd7ee7fe0364f1049ba02a1f184b8b | refs/heads/master | 2021-01-08T20:25:57.825856 | 2020-02-21T12:24:38 | 2020-02-21T12:24:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 31,222 | java | package weka.attributeSelection;
import weka.core.Attribute;
import weka.core.Instance;
import weka.core.Instances;
import weka.core.Option;
import weka.core.OptionHandler;
import weka.core.Tag;
import weka.core.Utils;
import weka.core.SelectedTag;
import weka.core.Capabilities.Capability;
import weka.filters.Filter;
... | [
"Pablo.Bermejo@.uclm.es"
] | Pablo.Bermejo@.uclm.es |
26938c6a6dcf56a99b79235be8cd571078a6ad42 | 17be20ba82b8106958311cc5aca7fb84814f17d8 | /server/src/test/java/org/eurekastreams/server/action/execution/stream/StoreStreamHashTagsForActivityStrategyImplTest.java | 93c8fc5b1bf0fab012edf8543ea53cb9ce5973c4 | [] | no_license | chrisdugan/eurekastreams | dbeeafb3806f593168b1d14bf3479b7f7ca1371a | 72aa50a594c99aba72cae9f37b9d03b139e80728 | refs/heads/master | 2021-01-20T21:34:41.746276 | 2011-05-13T14:45:53 | 2011-05-13T14:45:53 | 1,743,693 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,284 | java | /*
* Copyright (c) 2010 Lockheed Martin Corporation
*
* 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 applica... | [
"w.blake.caldwell@lmco.com"
] | w.blake.caldwell@lmco.com |
2b098bb04c60c738ef6b311ebe42db939f1cad5c | 32243efd4e27d6078972753b00bcd4795ee858c7 | /client/system_common/src/main/java/com/msj/goods/service/IntegralService.java | 50719fbda47260bcc1e6470914ca70175d4332f3 | [] | no_license | sunli7758521/blue_client | 296b20cde31f09457de98d842fcd5f21901785e4 | b507bf35e71d5c16299cfd403c1f9ccf5f5e7029 | refs/heads/master | 2022-12-26T04:31:24.903615 | 2019-06-04T04:59:04 | 2019-06-04T05:00:10 | 189,973,261 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 811 | java | package com.msj.goods.service;
import com.baomidou.mybatisplus.service.IService;
import com.github.pagehelper.PageInfo;
import com.msj.goods.entity.Integral;
import com.msj.goods.entity.SysUser;
import java.util.Map;
/**
* <p>
* 积分表 服务类
* </p>
*
* @author sun li
* @since 2018-11-05
*/
public interface Integra... | [
"sun18833424134@163.com"
] | sun18833424134@163.com |
98a4af2f79024543ea5b5e08848a794056e1501d | 99f09827d3b88119b1fba0154017f6f110a6a7ac | /bee_bpm/src/org/beeblos/bpm/core/error/WStepAlreadyLockedException.java | 3ed2bf6018e963d6b1718a07559a79eccc580905 | [] | no_license | ndubikin/beeblos | 70854e9eb827f8313deedd06ab8aff34ed022891 | 21ebe41b86618c679b1fb76d5e6cb7de257565ce | refs/heads/master | 2022-09-05T13:27:30.942138 | 2022-08-11T20:47:38 | 2022-08-11T20:47:38 | 98,414,952 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 672 | java | /**
*
*/
package org.beeblos.bpm.core.error;
/**
* @author Roger
*
*/
public class WStepAlreadyLockedException extends Exception {
/**
*
*/
private static final long serialVersionUID = 24652353247973549L;
/**
*
*/
public WStepAlreadyLockedException() {
}
/**
* @par... | [
"ndubikin@2fb576a0-0bdd-42ec-9e08-7f43f70b2762"
] | ndubikin@2fb576a0-0bdd-42ec-9e08-7f43f70b2762 |
023672e195114207e11487849c5397de3c0dd737 | 02fee85faee7988be1deb99a9979a3b7e7d9e8e9 | /src/com/codecool/webPractice/MyHandler.java | 5bbb3b496cd44c75d47424f05a15b6194a341717 | [] | no_license | CodecoolBP20173/java-ee-webroute-adamGrob | 729a30593a51e6960f59fc3c13eae81f21e7cca6 | fc9037d9e4c7ba968cac236793f447b279c1e0c5 | refs/heads/master | 2020-03-18T09:48:03.922095 | 2018-05-27T19:46:20 | 2018-05-27T19:46:20 | 134,580,636 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,409 | java | package com.codecool.webPractice;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
class MyHandler implements HttpHandler {
priv... | [
"ad4mgr0b@gmail.com"
] | ad4mgr0b@gmail.com |
4b3ed85f87c8586ff76b952fda02ed1fce3b3f18 | 229a97e1b53dcb845d8891540bf467299b4d4f0f | /FAQ/src/main/java/peri/fun/service/IUserMemberService.java | 03a04d179278c55d6f88517577f79134c061f7fa | [] | no_license | helloBosom/FAQ_Version1.0 | 3811a9aad1d9828d30572ec4a23cc548257eaae6 | d9167d3e081ebbd26d2825dda9c0620e4790f0de | refs/heads/master | 2021-04-26T21:48:26.932153 | 2018-04-11T10:20:05 | 2018-04-11T10:20:05 | 124,161,111 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 367 | java | package peri.fun.service;
import peri.fun.model.User;
import peri.fun.model.UserMember;
import java.util.List;
public interface IUserMemberService {
public boolean addUser(UserMember user);
public List<UserMember> query();
public boolean lock(String USERID);
public boolean deblock(String USERID);
... | [
"13572186526@163.com"
] | 13572186526@163.com |
1725dfb639d42349fcbcd3893a6073f55bcd0c3a | 8a42a738c736163dcc470f13f716d6f6070ad5e2 | /app/src/main/java/com/example/easyshop/ui/home/HomeFragment.java | 739e1cb0759b3a8dcde50afa3fc5911d10994ab5 | [] | no_license | Meitalbuzi/EasyShop | 2af9f0e9b0d3b0f8d98fe834cde39323b4f8469a | 5d1a554efae3a7165f34b8d139f31063ff238c7a | refs/heads/master | 2022-12-02T09:01:09.545485 | 2020-08-20T10:33:39 | 2020-08-20T10:33:39 | 288,957,487 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,154 | java | package com.example.easyshop.ui.home;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.l... | [
"meitalbeneliyahu@gmail.com"
] | meitalbeneliyahu@gmail.com |
d6598c5396ee2a7e7ccea2b58fcda85df4908346 | ffd02054cac47c2cd088e35ca47ab16c01d85354 | /VendorApp/src/main/java/org/srh/vipapp/hbm/hql/VendorBranchQuery.java | e2aaa97e440cf66a7934247ea2932430c1a65fd0 | [] | no_license | SRH-SDP-2018-Oct/sdpoctober2018-projects-group2-vendors-integration-platform | 8a2afc932ae950964c2edd6fc6e626dfc3437234 | 63c306043d91d7f585c760cd38e4a4871032b5b7 | refs/heads/master | 2020-04-08T12:50:03.090737 | 2018-12-18T12:46:41 | 2018-12-18T12:46:41 | 159,363,530 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 422 | java | package org.srh.vipapp.hbm.hql;
public final class VendorBranchQuery {
private VendorBranchQuery() {}
public static final String GET_ALL_VENDOR_BRANCHES_$P1 = "vendorId";
public static final String GET_ALL_VENDOR_BRANCHES_$N = "GET_ALL_VENDOR_BRANCHES";
public static final String GET_ALL_VENDOR_BRANCHES_... | [
"Vivek@172.21.150.92"
] | Vivek@172.21.150.92 |
acea6f505535c141facc1548a65ce2fd50980019 | d7fdc952e7646702378c7a24f7b6226f42d2d7f3 | /model/src/main/java/org/openo/sdno/model/servicemodel/common/enumeration/LabelModeType.java | 7e2c731f5662d70f79a3d1e4ab760c868dcfbe4c | [
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | open-o/sdno-l2vpn | df93643444e6eac91e4b1eda3f160cdd179a37fc | 9ef15a96fde6e2528ace968e19ea33b77b628e27 | refs/heads/master | 2021-01-19T13:12:45.758963 | 2017-03-20T07:30:11 | 2017-03-20T07:30:11 | 88,072,289 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,651 | java | /*
* Copyright 2016 Huawei Technologies Co., Ltd.
*
* 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... | [
"zhaozhongchao@huawei.com"
] | zhaozhongchao@huawei.com |
f4a9dac416300c912e9bae369080f1a1897ad06a | 7d5b4d687057fd689d4d53eb559fae1f45d91ab0 | /yiran-admin/src/main/java/com/yiran/web/controller/member/MemberTrBankAccountController.java | 2b4186499dd53c9e30e5ad606689df86e9161456 | [
"Apache-2.0"
] | permissive | jackCode1991/myStore | 7d805a75a520c7111319db76073ecddbf60c318a | 01bd39233b8da8838905b509484162f35cf4bef2 | refs/heads/master | 2022-11-21T16:28:29.140184 | 2020-01-17T07:21:31 | 2020-01-17T07:21:31 | 234,493,429 | 1 | 1 | Apache-2.0 | 2022-11-16T07:36:31 | 2020-01-17T07:18:19 | Java | UTF-8 | Java | false | false | 4,307 | java | package com.yiran.web.controller.member;
import java.util.List;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.anno... | [
"80002510@sf-express.com"
] | 80002510@sf-express.com |
6a6e3e9a108b895a7905246af235a04134f109b7 | 18b20a45faa4cf43242077e9554c0d7d42667fc2 | /HelicoBacterMod/build/tmp/expandedArchives/forge-1.14.4-28.1.0_mapped_snapshot_20190719-1.14.3-sources.jar_db075387fe30fb93ccdc311746149f9d/net/minecraft/world/gen/feature/EndGatewayFeature.java | 82a6c1d71deffa85800b039e65d2d1dce1086a75 | [] | no_license | qrhlhplhp/HelicoBacterMod | 2cbe1f0c055fd5fdf97dad484393bf8be32204ae | 0452eb9610cd70f942162d5b23141b6bf524b285 | refs/heads/master | 2022-07-28T16:06:03.183484 | 2021-03-20T11:01:38 | 2021-03-20T11:01:38 | 347,618,857 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,348 | java | package net.minecraft.world.gen.feature;
import com.mojang.datafixers.Dynamic;
import java.util.Random;
import java.util.function.Function;
import net.minecraft.block.Blocks;
import net.minecraft.tileentity.EndGatewayTileEntity;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.math.BlockPo... | [
"rubickraft169@gmail.com"
] | rubickraft169@gmail.com |
d0f74d50f7c8644cabf61ff0ff0803074af2b14b | 62937f2f15ecac7a15c796538ed9c221f2346740 | /HW6/test/src/edu/umb/cs680/hw06/DirectoryTest.java | 2d46d9c3fcfc004fbf4c0bb530c9769419a08606 | [] | no_license | Jim-Jin001/CS680 | 53b2e4c4999b659d517f54428e6f66f4a6cbac9b | b3d151d427b97221b5a10019e213df2c769fbd56 | refs/heads/master | 2022-03-15T09:50:37.474867 | 2019-12-13T06:28:26 | 2019-12-13T06:28:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,277 | java | package edu.umb.cs680.hw06;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.MethodOrderer;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestMethodOrder;
import org.junit.jupiter.api.BeforeAll;
import java.util.LinkedList;
import jav... | [
"yylhyyw@gmail.com"
] | yylhyyw@gmail.com |
6024e953e328f1ace8b5f3471d098ab56fb1385f | 416dfeebb8eb3e0970b666f6f40ee9f1b42e9744 | /wfx-api/src/main/java/com/yougou/wfx/commodity/api/front/ICommodityCatb2cFrontApi.java | f343be19b5f4d2eed9c0b07be7aded89acc8baf0 | [] | no_license | cashflow5/wfx-api-server | ad61d82bea1966b3188eea408996e4fd680808a0 | c2d32c4f6c558d8b66d9b4face92e1570e5a27c9 | refs/heads/master | 2021-01-20T18:09:49.842604 | 2016-07-20T10:24:10 | 2016-07-20T10:24:10 | 63,767,414 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,448 | java | /*
* 版本信息
* 日期 2016-03-24 11:14:00
* 版权声明Copyright (C) 2011- 2016 YouGou Information Technology Co.,Ltd
* All Rights Reserved.
* 本软件为优购科技开发研制,未经本公司正式书面同意,其他任何个人、团体不得
* 使用、复制、修改或发布本软件。
*/
package com.yougou.wfx.commodity.api.front;
import com.yougou.wfx.commodity.dto.input.CommodityCatb2cPageI... | [
"luo.q@yougou.com"
] | luo.q@yougou.com |
23cc605fa084014053d829e107cd288b9cccadc1 | 6e32669fbfd2035ee9dd913c97394216fa2f1026 | /src/com/innerclass/InnerClass02.java | ac50a474506da1cf9e8e69133a74d1ea35ed1884 | [] | no_license | Little-fat-pig/gather | 759aaf917c8392c9225815652c9cfd128cdc4b07 | 66bc7e3089c5d65dd1df0efcc0ef3974cbf7abe1 | refs/heads/master | 2022-12-16T19:24:30.414270 | 2020-09-14T06:23:31 | 2020-09-14T06:23:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 701 | java | package com.innerclass;
public class InnerClass02 {
//静态内部类
// private String name="赵六";
private String pwd="14789";
private static String nicheng="天天大傻瓜";
private static String name="是是是";
public static class Inner{
String name="王五";
public void query(){
System.out.p... | [
"zxlmufu@163.com"
] | zxlmufu@163.com |
d89e82f63214a1c2db7748ec4f5d946d9b63b14f | f5fce142b898a4e89dec0ec430e5acc4055b68ed | /src/main/java/cn/org/wm/generator/util/paranamer/NullParanamer.java | edfd5326fa33f911dedffffbf4b01e8df245bd50 | [] | no_license | taopixiang/code-generator | 0836b0b00d15918bc649bb6655b0ab86ce02182c | 9809b4e09f33d196db2950c71f35d3d7993facad | refs/heads/master | 2022-12-17T01:07:01.937888 | 2020-09-21T04:51:28 | 2020-09-21T04:51:28 | 297,232,912 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,271 | java | /***
*
* Copyright (c) 2007 Paul Hammant
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of co... | [
"1263242990@qq.com"
] | 1263242990@qq.com |
b1ddcb3232aee556258d76561b382743ff5d9341 | d26bfd3a4d3841d65dc09e665c6ccc9d1002b2f4 | /src/main/java/com/cos/springlegacy/JsonController.java | 9b8930b23fdb8f69e9c6fa8e28aec79e98ddce8f | [] | no_license | codingspecialist/spring-legacy-test | e6975e201353f623c4718ef007320343cc4a1977 | 2f4b3d6035ecc662392b419d964c3d19e2b10b33 | refs/heads/master | 2022-12-23T17:45:04.782113 | 2020-01-31T03:24:32 | 2020-01-31T03:24:32 | 237,346,658 | 0 | 1 | null | 2022-12-16T01:02:18 | 2020-01-31T02:32:40 | Java | UTF-8 | Java | false | false | 1,223 | java | package com.cos.springlegacy;
import java.io.BufferedReader;
import java.io.IOException;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.Re... | [
"drv98@naver.com"
] | drv98@naver.com |
98e973498564853c455ce91ba76fcaea1e7fdb92 | 995f73d30450a6dce6bc7145d89344b4ad6e0622 | /Mate20-9.0/src/main/java/com/android/server/wm/IHwAppWindowContainerController.java | b3dc9a6e7d3edd47abb5893eaa3ece1448a3bf03 | [] | no_license | morningblu/HWFramework | 0ceb02cbe42585d0169d9b6c4964a41b436039f5 | 672bb34094b8780806a10ba9b1d21036fd808b8e | refs/heads/master | 2023-07-29T05:26:14.603817 | 2021-09-03T05:23:34 | 2021-09-03T05:23:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 643 | java | package com.android.server.wm;
import android.content.pm.ApplicationInfo;
import android.os.IBinder;
import android.view.IApplicationToken;
import com.android.server.AttributeCache;
public interface IHwAppWindowContainerController {
int continueHwStartWindow(String str, AttributeCache.Entry entry, ApplicationInfo... | [
"dstmath@163.com"
] | dstmath@163.com |
4b2f06c7102d32604f2a2df3d19d0be22fa3bb14 | 9d1f49b039be77eb45e5d60699429cb7c3d493d7 | /javac/src/main/java/com/bigbade/processorcodeapi/javac/nodes/VariableLeaf.java | 884ff218d948a47d6cfcfa35c0ac8dc862262f7a | [] | no_license | BigBadE/processorcodeapi | 28c4dffc10d48749efa2df371ce410c6e2e641fc | a4f2550c45f7df45d8193b293b195fa1e6f20ef9 | refs/heads/master | 2023-06-15T17:04:21.496506 | 2021-07-21T01:59:48 | 2021-07-21T01:59:48 | 343,537,003 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 779 | java | package com.bigbade.processorcodeapi.javac.nodes;
import com.bigbade.processorcodeapi.api.leaf.IVariableLeaf;
import com.bigbade.processorcodeapi.javac.utils.JavacInternals;
import com.sun.tools.javac.tree.JCTree;
import lombok.Getter;
import javax.lang.model.element.VariableElement;
@SuppressWarnings("unused")
publ... | [
"bigbade333@gmail.com"
] | bigbade333@gmail.com |
dedc67ca211c386b5eb2bf267a56d29f13a6a54e | 5167980f3532254af290b9fac0ca66b47d64e7e4 | /javaStmt/src/part1/whileloop/BreakDemo.java | eafa9166f4ae95f515dceec1c93b82b03ab98d10 | [] | no_license | vivio98/java-Stmt | b28864e0858cf7290ea9ba9a16514e1b8bba1fb3 | 081aaab5fb981425390bc95695acfdc6861ec763 | refs/heads/master | 2021-01-23T06:25:33.816039 | 2015-07-03T05:33:50 | 2015-07-03T05:40:08 | 38,474,005 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 918 | java | package part1.whileloop;
import java.util.Scanner;
/*
* @ 0615
* @ Author : ;
* @Story : 더하려는 숫자를 입력후 브레이크 기능을 두는 구문;
*/
public class BreakDemo {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("더하려는 정수값을 입력하세요");
/*
* 지금 까지는 결정된 숫자의 카운... | [
"miki1723@naver.com"
] | miki1723@naver.com |
c9b8e77d71b41ea158fe94e9ecf440cc3b202d9e | e756591e75d8672996a15fa3d419b38d1fd4038c | /BeyondSkoolCommon/src/main/java/com/beyondskool/vo/RoleVO.java | 036c0c1066b2150b67711ceaa8356bda8b7146d3 | [] | no_license | pnikhil/J2EE-Project-BeyondSkool | bfbbc25dc8f2666de940674a18db94f04e4ff36e | 06f43a6ddf95ad6194ec529669bb1d99c1eb80fd | refs/heads/master | 2021-05-02T05:24:03.925025 | 2018-02-09T15:03:14 | 2018-02-09T15:03:14 | 120,919,683 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 735 | java | package com.beyondskool.vo;
public class RoleVO {
private String roleId;
private String roleName;
private int serialNo;
private String roleDesc;
public String getRoleDesc() {
return roleDesc;
}
public void setRoleDesc(String roleDesc) {
this.roleDesc = roleDesc;
}
public RoleVO(String roleId) {
th... | [
"nikhil@techarta.com"
] | nikhil@techarta.com |
44bbe24b0694b9b2dc1655c3e057b6f7a9e4615b | 0720ea63c8ae24d69f235fea08e3e2bc2a831584 | /Longest_Palindromic_Substring.java | 2dd8c7f0475cfa8d0cdab0ff4d46fee17e9410d1 | [] | no_license | newATyork/leetcode_Java | 9885fe4faec94486b10d259e0062a3b0ebe65da2 | 6fd919f3bd0213954625ebf58266150ef87f8e5f | refs/heads/master | 2021-01-15T23:30:18.607258 | 2013-09-08T02:17:22 | 2013-09-08T02:17:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 671 | java | public class Solution {
public String longestPalindrome(String s) {
// Start typing your Java solution below
// DO NOT write main() function
String lps = s.substring(0,1);
for( int i = 0; i < s.length() - 1; ++i )
{
String tmp = expand( s, i, i );
lps = tmp.length() > lps.length() ? tmp : lps;
tmp ... | [
"ilovexiao77@gmail.com"
] | ilovexiao77@gmail.com |
8e46b4384e32a3ad8640992e92c25e12d6a3f951 | d8dc31a6e91738bc4a8a02f39c0c4abfbdf49f54 | /src/uy/com/agm/gaston/modelo/Alerta.java | 295e59aa1d1c0c7f91e06bb58b69c01789a391c6 | [] | no_license | agmCorp/GastonWeb | 652696dea151337bb7c4b36da1b070c05e56f098 | 8dc6510c5ec905d7602e8c18dffc25ca5188c33a | refs/heads/master | 2021-05-14T14:09:11.259447 | 2018-04-11T20:44:39 | 2018-04-11T20:44:39 | 115,965,366 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,828 | java | package uy.com.agm.gaston.modelo;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.Lob;
import javax.persistence.ManyToOne;
import javax.persistence.Na... | [
"alvaro.gabriel.morales@gmail.com"
] | alvaro.gabriel.morales@gmail.com |
4cf0bbf90c1ceebd25c51a3b77be28bc76f6aac3 | 79dc26fec90082d8cd76af904da9b863cf21c8a0 | /src/bean/Actor.java | 576331d865ed725500735cc4e065a80e56b793cd | [] | no_license | zld9804/bad_banana | 35ef7adf520fc59e3976cd52e24d2ffd787fc08f | 47b95cf38d634445b36f11e11d1ac18e7e75ded7 | refs/heads/master | 2020-07-26T23:03:08.917301 | 2019-09-07T14:47:42 | 2019-09-07T14:47:42 | 208,791,223 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 568 | java | package bean;
public class Actor {
private String name;
private String data;
private String imgPath;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = ... | [
"cdw@192.168.56.1"
] | cdw@192.168.56.1 |
395ad3f7fc573a8c0577d594316f20243a0d7d68 | e4b2cd3d743c821c6faab2363d47bf92cbc198c0 | /chapter_003/src/main/java/ru/job4j/search/Task.java | 4e50c5625f41b1bd57e0007ed6ab07ecceada4af | [
"Apache-2.0"
] | permissive | hedg-r52/job4j | d4c332288582b9a8695f92bcb22d4ea2d523db2f | 11ce7a9c33fe08b78120577587229934c78ce19b | refs/heads/master | 2023-06-01T06:30:56.690851 | 2022-08-08T19:48:34 | 2022-08-08T19:48:34 | 125,415,802 | 0 | 0 | Apache-2.0 | 2023-05-23T20:10:33 | 2018-03-15T19:21:00 | Java | UTF-8 | Java | false | false | 439 | java | package ru.job4j.search;
/**
* Задача
*
* @author Andrei Soloviev (hedg.r52@gmail.com)
* @version $Id$
* @since 0.1
*/
public class Task {
private String desc;
private int priority;
public Task(String desc, int priority) {
this.desc = desc;
this.priority = priority;
}
public... | [
"hedg.r52@gmail.com"
] | hedg.r52@gmail.com |
7c1e1bcfccf3754c0e20961f8379fa62c1fda0a3 | c64bd2104b79d30ebcf3d73113fe13f97bc2fc6b | /main/model/src/main/java/foodz/entity/Recipe/Recipe.java | 89f35bc56d68403a07355a073492be37f14fc6fc | [] | no_license | OliverOBrien-r0606606/IP-August | cd66482a619f1a6e98d605a47912bea64944118c | 2ed08981e09d640b151059facfe387f00ecea69a | refs/heads/master | 2020-03-24T11:54:38.547438 | 2018-08-31T09:06:28 | 2018-08-31T09:06:28 | 142,698,285 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,165 | java | package foodz.entity.Recipe;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.springframework.lang.Nullable;
import javax.persistence.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Entity
@JsonIgnoreProperties({"hibernateLazyInitializer... | [
"oliver.obrien@student.ucll.be"
] | oliver.obrien@student.ucll.be |
da8e619acc0383a94a7ba072708b586f16929f52 | e1b58387f82c8b3bdfed6ca8d8de27d22f388330 | /src/main/java/com/phone/site/api/TechDetails.java | b7c3f49e3de72f725847c0eb2437cbcdf332a8f8 | [] | no_license | KseniiaNazarova/phones | 8ead819d78d9e678c386decfef33ed11b0e617ab | 9f1176970fa4d943158fdfb782cef176cc629767 | refs/heads/master | 2021-06-27T12:29:21.073844 | 2019-11-11T10:31:33 | 2019-11-11T10:31:33 | 219,361,022 | 0 | 0 | null | 2021-03-31T21:42:59 | 2019-11-03T20:27:31 | Java | UTF-8 | Java | false | false | 2,631 | java | package com.phone.site.api;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Tech details about a phone
* received from fonoapi
*/
public class TechDetails
{
private final String technology;
private final String ba... | [
"kseniia_nazarova@epam.com"
] | kseniia_nazarova@epam.com |
a133ed7fd7d9cac24d021a2dab614880e9008ce2 | e5d729b0668345ff13e8fee9a0024b848e356897 | /src/test/java/com/fxpt/FxptApplicationTests.java | 29c40e19952dd6c1510a7685c191b4945ce8a1e1 | [] | no_license | zhaoyuzhong1/fxpt | 1d3d56734abca4a8ca7925c716b226ded846cdf3 | e447d52557d284e4d07e80123a639285b6fe8d5c | refs/heads/master | 2020-04-14T17:16:07.771115 | 2019-03-27T01:49:45 | 2019-03-27T01:49:45 | 163,974,545 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 324 | java | package com.fxpt;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class FxptApplicationTests {
@Test
public void contextLoads() {
}
... | [
"d"
] | d |
a8531824c2c37f98c7354ce0dbed8f68d70002eb | d2cb1f4f186238ed3075c2748552e9325763a1cb | /methods_all/nonstatic_methods/javax_swing_text_IconView_getViewCount.java | 4af9a4b717fce773dd933577ce76f0ed3b8b0be5 | [] | no_license | Adabot1/data | 9e5c64021261bf181b51b4141aab2e2877b9054a | 352b77eaebd8efdb4d343b642c71cdbfec35054e | refs/heads/master | 2020-05-16T14:22:19.491115 | 2019-05-25T04:35:00 | 2019-05-25T04:35:00 | 183,001,929 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 162 | java | class javax_swing_text_IconView_getViewCount{ public static void function() {javax.swing.text.IconView obj = new javax.swing.text.IconView();obj.getViewCount();}} | [
"peter2008.ok@163.com"
] | peter2008.ok@163.com |
4658dd6eaf6be63b4993f2daacf4535d77b1af32 | 84af27ab1cad8d111d00d54f3f7c8fe7e2a17a80 | /StudentProcessingSytsem/src/org/learning/UpdateStudentRemarks.java | 26f0d9a2a8a5eabe8e0ac2545eac4f3a64fc5a5c | [] | no_license | ravichavali9/Local-Workspace | 9beb958e0830a57d3464821c21274785c651dac0 | 65eb374e06ea59125cce77f9b40a110539955e10 | refs/heads/master | 2021-05-11T02:55:50.627146 | 2018-01-17T21:32:54 | 2018-01-17T21:32:54 | 117,900,023 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,688 | java | package org.learning;
import java.io.*;
import java.sql.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class UpdateStudentRemarks extends HttpServlet
{
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
String deptname=r... | [
"ravi.ileyana@gmail.com"
] | ravi.ileyana@gmail.com |
d7dba3b1be3b80d66dd263e2a04aa497e550d783 | cfeded4d2256e8e1a152a027f672d0ba5c6120af | /manna/manna-server/src/com/upiva/manna/server/cmd/jdbc/dao/SessionDao.java | ce7f81fd8f432766937206a33e993f0d3a9722c7 | [] | no_license | Ian-Ferreira/Upiva | 0e144e076e910a23613aa6e00dbdce176093ded6 | dcdfcec5aa3edad19816b804239c4df3d0769124 | refs/heads/master | 2021-01-19T12:39:39.107798 | 2013-07-19T08:40:51 | 2013-07-19T08:40:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,167 | java | /**
* Authored By: IanF on 04/06/13 15:54
*
* Copyright (c) 2013, Ian Ferreira; IanFerreira@yahoo.co.uk
*
* This software and codebase is protected by South African and international copyright legislation.
* The intellectual ownership of this source, artifacts and/or any products there-off remain
* the property... | [
"IanFerreira@yahoo.co.uk"
] | IanFerreira@yahoo.co.uk |
b37a13d1779d2b59f6cdb2ffff086d3a8c52c297 | cee8bbcb89b73ff0428ea8cfa599396dd8cc3956 | /app/src/main/java/com/kangjj/aop/proxy/AOPDBProxyActivity.java | 1defcfc1e6f0e3ab74199a4ed91021129843b8c4 | [] | no_license | gnmmdk/1.1.3_AOP | b2c75de00667eab8f609f757f1bf998667983928 | 6ef3772ac492d4e8d6eae1bcb4a8b8868690413d | refs/heads/master | 2020-08-30T03:40:37.290020 | 2019-10-29T14:32:47 | 2019-10-29T14:32:47 | 218,251,565 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,986 | java | package com.kangjj.aop.proxy;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import androidx.appcompat.app.AppCompatActivity;
import com.kangjj.aop.R;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
* @Description:
* @... | [
"jj.kang@zkteco.com"
] | jj.kang@zkteco.com |
5cff495f7803beb59bc1ec133fb73b09e6ca383f | f0aed9065cb697d1d371f12d333aaffb33e6c3fc | /src/main/java/no/uio/ifi/nios3/util/AttributesUtils.java | c8343fc98df1e7183c4eeafa432f4a8b282b6d48 | [
"MIT"
] | permissive | uio-bmi/nios3 | bd115da5897a64ab2d85e09eb577a173ce19f7a1 | ec30c4e44132614b148f6285db372c152c651d93 | refs/heads/master | 2020-04-08T23:33:53.629452 | 2018-12-07T13:14:50 | 2018-12-07T13:14:50 | 159,830,138 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,873 | java | package no.uio.ifi.nios3.util;
import java.nio.file.attribute.BasicFileAttributes;
import java.nio.file.attribute.PosixFileAttributes;
import java.util.HashMap;
import java.util.Map;
/**
* Utilities to help transforming BasicFileAttributes to Map
*/
public abstract class AttributesUtils {
/**
* Given a Ba... | [
"dmytro.titov@gmail.com"
] | dmytro.titov@gmail.com |
8e24cf0ab71f61fd05c095b32930aa40977a117f | 242a2e59c4c53b30a1af49da796947e383389d23 | /WebAppDemo/src/main/java/web/app/demo/model/OrderItemBean.java | 295b15fde4ff37517ca218ae86e33addd4f3852c | [] | no_license | LinYuRu/WebDemo | 229fd82ae6d8e0c624d1d06ca89340105b23335e | a3b10aff94adc34654936a813c345002e82e290f | refs/heads/master | 2023-03-04T10:20:00.394431 | 2019-10-16T02:34:01 | 2019-10-16T02:34:01 | 215,440,830 | 0 | 0 | null | 2023-02-22T02:16:36 | 2019-10-16T02:39:03 | Java | UTF-8 | Java | false | false | 2,402 | java | package web.app.demo.model;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.... | [
"peustivate@gmail.com"
] | peustivate@gmail.com |
ea0c7443dc63c8bb29c460aac690de9792449e15 | ddbea944d265f844ea8a7c1ed5096ae0b75787a1 | /topMusicExcepciones/AutorNoValidoException.java | b190988856576d3417fdb969d1f7bac3472173a1 | [] | no_license | Vsevillano/TopMusic | 4a31104db1f45d0c35972fe24c7d6b15aea7449d | 1a1877b5b743f8558f18eacf1dbaea6440d0b58b | refs/heads/master | 2021-01-13T11:30:37.906678 | 2017-03-03T13:38:08 | 2017-03-03T13:38:08 | 81,850,951 | 0 | 0 | null | 2017-02-22T09:14:35 | 2017-02-13T17:19:07 | Java | UTF-8 | Java | false | false | 165 | java | package topMusicExcepciones;
public class AutorNoValidoException extends Exception {
public AutorNoValidoException(String arg0) {
super(arg0);
}
}
| [
"noreply@github.com"
] | Vsevillano.noreply@github.com |
051eaa9d8d6a259a05969bfb9f4a3b31814d39a9 | 10c83aa1246786e7c96703a996fe93008c05507b | /android/app/src/main/module/ImagePreprocessor.java | 00c609ab798b2f59562f9316375d92473e47712a | [] | no_license | pa-rang/cs470-auto-wifi | a8379e048aa20a0874e7310099cc5016178c7d68 | c07e8220b8f1953fa7ad787e08cef10537928aa8 | refs/heads/master | 2022-03-13T22:09:49.580863 | 2019-12-01T14:59:01 | 2019-12-01T14:59:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 142 | java | import java.awt.Image;
public class ImagePreprocessor {
public static Image preprocessImage(Image image) {
return image;
}
} | [
"whhan8485@gmail.com"
] | whhan8485@gmail.com |
9f7c7a208516e6bcc6a7d03f57f220596175fae2 | bf1d981e8317a10d735063ae3ae6927a34b8fc37 | /main/java/integradora/ingenieria/yacalu/yacalu1/GlassesActivity.java | 8ea264a3ce0df48348fd8f4d3a330b8ec5b1f46d | [] | no_license | carlabarcenas/YaCaLuAPP | d03fc25974b1b20a45578f67888421a3aade78c2 | 3dd92a21f6c0f3922941c245cd7401918100ba1c | refs/heads/master | 2020-03-26T22:21:51.675663 | 2018-08-20T18:17:59 | 2018-08-20T18:17:59 | 145,452,413 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,251 | java | package integradora.ingenieria.yacalu.yacalu1;
import android.content.Intent;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.media.SoundPool;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
... | [
"noreply@github.com"
] | carlabarcenas.noreply@github.com |
1dbeecee48fa06fea98a1e6174e117441c94553d | b5c485493f675bcc19dcadfecf9e775b7bb700ed | /jee-utility-__kernel__/src/test/java/org/cyk/utility/__kernel__/instance/InstanceGetterUnitTest.java | 9ae0d6c41836b32a4644129731d3135e45c981b3 | [] | no_license | devlopper/org.cyk.utility | 148a1aafccfc4af23a941585cae61229630b96ec | 14ec3ba5cfe0fa14f0e2b1439ef0f728c52ec775 | refs/heads/master | 2023-03-05T23:45:40.165701 | 2021-04-03T16:34:06 | 2021-04-03T16:34:06 | 16,252,993 | 1 | 0 | null | 2022-10-12T20:09:48 | 2014-01-26T12:52:24 | Java | UTF-8 | Java | false | false | 5,013 | java | package org.cyk.utility.__kernel__.instance;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.Collection;
import java.util.List;
import org.cyk.utility.__kernel__.configuration.ConfigurationHelper;
import org.cyk.utility.test.weld.AbstractWeldUnitTest;
import org.cyk.utility.__kern... | [
"kycdev@gmail.com"
] | kycdev@gmail.com |
cb6186680d0624e522c159da58aff79de5075b71 | c246ae4adf91fbaf36a02e34d59f806f1adb9dc2 | /Algoritmi paraleli si distribuiti/Indexare documente tema 2 APD/Main.java | 08cdd52f219fa46ea25d0deaa9b515dc7133479c | [] | no_license | ramonnst/Projects | dcb419fec9ef4787c2538b69bb5906adea47c8b5 | ab6e832c77864b81daab94382ccc1da0d1548604 | refs/heads/master | 2021-01-15T11:14:29.181712 | 2013-04-02T21:40:29 | 2013-04-02T21:40:29 | 29,548,818 | 0 | 1 | null | 2015-01-20T19:52:10 | 2015-01-20T19:52:10 | null | UTF-8 | Java | false | false | 1,467 | java | import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.concurrent.ConcurrentHashMap;
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
Integer NT = Integer.valueOf(args[0]);
String ... | [
"ionel.merca@gmail.com"
] | ionel.merca@gmail.com |
767d46d4d604d4ff849197fe45a1023a81b004c7 | d6801077ba7e7f1783feac7b8fa6cb161447de09 | /30DaysJavaCodingChallenge/src/Day13_abstractClass.java | 4c9846cafeea2c0945318fe1d0e6461148ce20cf | [] | no_license | Jisha-Maniamma/Challenge30daysJava | 62f67c13f7fbfc5e58b0913b7bccd73dc1f0b9fc | d065be68fabef64f6c5cd3e2bfa810f12039555b | refs/heads/master | 2020-06-12T09:22:28.482856 | 2019-07-12T07:53:20 | 2019-07-12T07:53:20 | 194,256,521 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 306 | java | /*
* Example of abstract class
*
*/
abstract class Dog{
abstract void makesound();
}
public class Day13_abstractClass extends Dog{
void makesound() {
System.out.println("Boww");
}
public static void main(String[] args) {
Dog d=new Day13_abstractClass();
d.makesound();
}
} | [
"Jisha@admin-PC"
] | Jisha@admin-PC |
e5b4f09d10369891903e60d5343bc22f2976a4a9 | 77661f843b0ec18d459080ce60a2f7df41d0e03e | /Trabalho_grupo/src/trabalho_grupo/Game.java | f0357c3f44d44b7ad1002ee2d6dcd8b42a602a9e | [] | no_license | JoaoAntonioAbreu/AD2019 | 7fdd44218955518463d9490ed04f05f8ae681d2f | 22eb4af85c8795036df5c560f246fbd003134ba9 | refs/heads/master | 2022-06-15T03:44:29.301058 | 2020-01-09T18:05:26 | 2020-01-09T18:05:26 | 209,135,600 | 0 | 0 | null | 2022-05-20T21:19:33 | 2019-09-17T19:06:07 | Java | UTF-8 | Java | false | false | 9,037 | java | /*
* 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 trabalho_grupo;
import java.util.Scanner;
/**
*
* @author Turma A
*/
public class Game {
public enum Command {
... | [
"43825149+JoaoAntonioAbreu@users.noreply.github.com"
] | 43825149+JoaoAntonioAbreu@users.noreply.github.com |
35a9678e196aba2f2143c8a96c47d62e40442692 | 51fe8b7ac7c0dfa42f551f2ef886bf5fef32abea | /src/main/java/ru/test/issue_tracker/entity/Author.java | a144d7e06c61374f1970639b709781af499136a5 | [] | no_license | Rewiax/IssueTrackerProject | ae03bc8d2bea91f03a15590bb6778a563247253b | e47d5ffd9c905bc83296895cf716907441f0ed73 | refs/heads/main | 2023-08-29T02:40:57.982975 | 2021-10-25T08:00:38 | 2021-10-25T08:00:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 354 | java | package ru.test.issue_tracker.entity;
/**
* @author maxim
* class model for author entity
*/
public final class Author {
private int id;
private String name;
public int getId() {
return id;
}
public String getName() {
return name;
}
@Override
public String toString() {
return "Author [id=" + id... | [
"maximt@wenco.ru"
] | maximt@wenco.ru |
ad17e06e02d7e51c541413880422edebc2a1430a | 7a695c0514d56d365ae46b9127e6854c6abcdd7d | /src/main/java/ua/training/view/SQLQuery.java | 4fd5f11ece9ff0961979ccaf1ce77132fa67e786 | [] | no_license | leshchukt/Organizer | 0fa078fe61f37440435c716d51689ddb5a101f33 | 2739d3430abf03dc8fe2c1c5143a2f5c63911bd5 | refs/heads/master | 2021-09-02T00:35:49.552322 | 2017-12-17T23:11:39 | 2017-12-17T23:11:39 | 114,548,466 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 403 | java | package ua.training.view;
public interface SQLQuery {
String selectAll =
"SELECT DISTINCT * FROM event " +
"LEFT JOIN category ON event.idcategory = category.idcategory " +
"left join event_has_oponent on event.idevent = event_has_oponent.idevent " +
... | [
"leshchuk.tetiana@gmail.com"
] | leshchuk.tetiana@gmail.com |
4701fd43fb137b792d380309104b5d08870e947e | 6bc018087a74eb38dbf123c19e6f58edf39cf528 | /app/src/androidTest/java/com/example/android/alphabets/ExampleInstrumentedTest.java | 05bc414c06eff64e8722aef951ec6ce93ac2cca1 | [] | no_license | Teresiah6/Alphabets | 2f49516be568a5062a99e86e3b441b504b0bcade | c5bea3d82c66c9c62b1d14df04a2ad1b7d1841ca | refs/heads/master | 2020-04-08T11:36:30.846290 | 2018-12-19T18:18:42 | 2018-12-19T18:18:42 | 159,312,266 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 759 | java | package com.example.android.alphabets;
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 A... | [
"wangariteresiah6@gmail.com"
] | wangariteresiah6@gmail.com |
7c5428e98d70806c6bb64e1fa0307a4abd5b9459 | a9f8b926c5c36c70cbb01772abfddbce7c4daa8e | /kienland-gateway/src/main/java/com/kienland/gateway/security/jwt/TokenProvider.java | e9e0735db71a7eda19f4556f6795310d583ef825 | [] | no_license | kiendo1998/kiendland | 6e265df77f16c814d0f6fae0ecbe40ce4d9bb38b | aeac6e89ce3b5857cade3048bbf0f3a8e82dc0e5 | refs/heads/main | 2023-02-23T16:13:30.070471 | 2021-01-05T15:04:27 | 2021-01-05T15:04:27 | 324,564,251 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,221 | java | package com.kienland.gateway.security.jwt;
import java.nio.charset.StandardCharsets;
import java.security.Key;
import java.util.*;
import java.util.stream.Collectors;
import javax.annotation.PostConstruct;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.security.authentication.User... | [
"kienphule@gmail.com"
] | kienphule@gmail.com |
3d226bd882e903652df47dbb2849d6ed8291c680 | 1f19aec2ecfd756934898cf0ad2758ee18d9eca2 | /u-1/u-11/u-11-111/u-11-111-f4068.java | e058e89708dea95d69a4df9a396774abf66f2da7 | [] | no_license | apertureatf/perftest | f6c6e69efad59265197f43af5072aa7af8393a34 | 584257a0c1ada22e5486052c11395858a87b20d5 | refs/heads/master | 2020-06-07T17:52:51.172890 | 2019-06-21T18:53:01 | 2019-06-21T18:53:01 | 193,039,805 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 106 | java | mastercard 5555555555554444 4012888888881881 4222222222222 378282246310005 6011111111111117
4403169138158 | [
"jenkins@khan.paloaltonetworks.local"
] | jenkins@khan.paloaltonetworks.local |
4b2284e619c9a0f2f3fab5af6bc5ecd3a9b97c82 | 208df6a69f56db58bd1927c732a52879609fba75 | /sample/src/com/refreshactionprovider/sample/fragment/ActivitiesListFragment.java | 7b0279c9c5d1249fc072431bab78573286cfc1bc | [
"Apache-2.0"
] | permissive | power7714/refresh-action-provider | 656727679cc34f5dc979df96bc1d5135fd95ee27 | 613498f7228c89a3d7e9abc486388c2de4a939d7 | refs/heads/master | 2021-01-18T13:35:46.056114 | 2013-08-20T05:36:10 | 2013-08-20T05:36:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,014 | java | package com.refreshactionprovider.sample.fragment;
import java.util.ArrayList;
import java.util.List;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.PackageManager.NameNotFoundException;
... | [
"alexandre.gherschon@gmail.com"
] | alexandre.gherschon@gmail.com |
7b8fcb3dcfab89e79d44895898b02e8183d79ac8 | 9cec9a434b80f8dda818cc71aefb83ce0b325aa3 | /entropy-2.0/src/test/java/entropy/execution/TestTimedReconfigurationExecuter.java | 9c4cbf6c36d3da0c3fa80a7a8c3aa4556d2d322f | [] | no_license | julien-marchand/BestPlaceBis | ef221d02fcec56fe2c2df4d61b00ed0244fc40f5 | e2276fae0a8d51c712a78770e24d89c04224b31b | refs/heads/master | 2021-01-19T10:31:41.408995 | 2014-01-08T15:55:42 | 2014-01-08T15:55:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,331 | java | /*
* Copyright (c) 2010 Ecole des Mines de Nantes.
*
* This file is part of Entropy.
*
* Entropy is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the Licens... | [
"julien.marchand4@gmail.com"
] | julien.marchand4@gmail.com |
96f7b4fac21cddcf6da158f26944971f35fccf3f | 281c1a173eb81752c8c76624746539b2c141a14e | /src/enservio/framework/globalfunctions/WebDriverFactory.java | c10945f08595d69b95aa24154db99ebdc72f6ae2 | [] | no_license | titusjohn/enservio_automation | 5bee0f29df4f2adb86bad480322060afbbe55bba | 6a515b8bcf6aab95a48668a2b901de2845c482ad | refs/heads/master | 2021-01-18T14:18:35.532242 | 2014-06-19T16:46:50 | 2014-06-19T16:46:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,889 | java | package enservio.framework.globalfunctions;
import java.util.Properties;
import enservio.framework.testflowsetup.*;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
imp... | [
"tjohn@Tituss-MacBook-Pro.local"
] | tjohn@Tituss-MacBook-Pro.local |
a7d02842725c8dfd03def27f7a673a167afd4408 | 06af5238ba8cc06fe158ef50b7bcacf519a751b7 | /pro03/src/sec01/ex02/MemberVO.java | 50a453f900d2406fe50011b1a24f1b22b9a2a47e | [] | no_license | zootopeanut/pro03 | a0c9b3a4d2e80b089724ef5a054172b6ba8e0dbb | 92c8f8970cd4646064e3c8ca9f0177cf3137bc17 | refs/heads/master | 2020-08-04T19:11:48.112374 | 2019-10-02T05:30:42 | 2019-10-02T05:30:42 | 212,248,722 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 751 | java | package sec01.ex02;
import java.sql.Date;
public class MemberVO {
private String id;
private String pwd;
private String name;
private String email;
private Date joinDate;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getPwd() {
retur... | [
"ijhwngml@naver.com"
] | ijhwngml@naver.com |
128ad2942e0e528b0b1971a3e2237832a1a41774 | c3fceab49183cc522035e7bf11112d6efa995166 | /src/test/java/com/ym/netty/executor/FailedFuture.java | afa5f15603ea2ece72333d1d8f04587bd8017e21 | [] | no_license | 511659192/trivial | 3e0fdc4c3b8914426c73f323aec1ddceb35334a7 | 33f19661d0cdb5849fde20ba73e32e221577f01c | refs/heads/master | 2020-12-25T06:45:40.362024 | 2019-01-11T15:29:12 | 2019-01-11T15:29:12 | 62,365,452 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 792 | java | package com.ym.netty.executor;
/**
* @Author yangmeng44
* @Date 2017/7/21
*/
public final class FailedFuture<V> extends CompleteFuture<V> {
private final Throwable cause;
/**
* Creates a new instance.
*
* @param executor the {@link EventExecutor} associated with this future
* @param c... | [
"cdyangmeng@jd.com"
] | cdyangmeng@jd.com |
2a067309c456d3643e4c2b18a862e836c9857357 | 6bdf5c250234428218a9a3e0add7d29f0db45831 | /VehicleRego-Backend/src/main/java/com/test/assignment/AssignmentApplication.java | 20d83a3837eac44389a249fd8694ba12d6f5f9b0 | [] | no_license | suniltiwari778/VehicleRegoApp | ecb77fefab6305a9770f967dcf19211049a6fd45 | 0fdc1eb3e2e19e0cdb11899a35ccc2bd68086210 | refs/heads/master | 2023-01-11T07:21:57.102231 | 2020-11-16T13:55:15 | 2020-11-16T13:55:15 | 313,311,179 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,514 | java | package com.test.assignment;
import com.test.assignment.model.Insurer;
import com.test.assignment.model.Registration;
import com.test.assignment.model.Registrations;
import com.test.assignment.model.Vehicle;
import com.test.assignment.repository.VehicleRepositoryImpl;
import lombok.extern.slf4j.Slf4j;
import org.sprin... | [
"h.suniltiwari@gmail.com"
] | h.suniltiwari@gmail.com |
45cf570a53aa247fcf559428cee29523c49b5711 | 74db95ac521939b803ce2e8fc201ad44deed2250 | /RePractice/SwordOffer0316Twice/Code_0324_4Find.java | d6d54a223aec60c3184b8cbe1447b89c5a91d7f2 | [] | no_license | Submergechen/AlgoriPractice | 220329489f7f962c44d45cd36151b6ca3ba9e3fe | 769d29e4789c5a2398ec1005c3bd740390e9ac6c | refs/heads/master | 2021-08-09T00:41:53.875972 | 2020-09-24T07:48:23 | 2020-09-24T07:48:23 | 222,943,801 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 547 | java | package RePractice.SwordOffer0316Twice;
public class Code_0324_4Find {
public static boolean solution(int[][]arr, int aim){
if (arr == null || arr.length < 1 || arr[0].length < 1){
return false;
}
int R = 0;
int C = arr[0].length - 1;
while (C >= 0 && R < arr.le... | [
"553056196@qq.com"
] | 553056196@qq.com |
c21e5c2e1da6428689a6835fc9b48c5a58954004 | e7b61e68a0aac3f8a0654627168d05b7a073c4e4 | /bos-service/src/main/java/cn/me/service/impl/RoleServiceImpl.java | e1a6ad2af0eb4fc1465bbc1c65aca0abcd183815 | [] | no_license | yqxyz/bos | de83c350e10bb5838ffa75a3002f6e2198af73da | 63531110b57cfb99c19c72036a97deafd0b4015e | refs/heads/master | 2021-09-15T06:58:02.826141 | 2018-05-28T06:42:14 | 2018-05-28T06:42:14 | 109,646,488 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,267 | java | package cn.me.service.impl;
import cn.me.dao.IFunctionDao;
import cn.me.dao.IRoleDao;
import cn.me.domain.Function;
import cn.me.domain.Role;
import cn.me.service.IRoleService;
import cn.me.utils.PageBean;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
impor... | [
"quentinyy@gmail.com"
] | quentinyy@gmail.com |
f8d4dc7d7bd64e669477c4ca8d7a978d378d4c98 | 7c7ba9105cc95c2e8bd6840ea99a8a740c55f58e | /app/src/main/java/wall/field/investigation/mvp/contract/ChangePasswordContract.java | 88574b0e45830b569e8fc98e3c9bc767965feb62 | [
"Apache-2.0"
] | permissive | wall3001/Ance | 7919253d364fec2f193b5e6edd21be1ebb4848f0 | 44617669b0f31dfcb0e07d6ac29795fe5e6a8c99 | refs/heads/master | 2020-03-21T21:48:05.765295 | 2020-01-23T07:41:47 | 2020-01-23T07:41:47 | 139,084,332 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 649 | java | package wall.field.investigation.mvp.contract;
import com.jess.arms.mvp.IView;
import com.jess.arms.mvp.IModel;
import io.reactivex.Observable;
import wall.field.investigation.mvp.model.entity.BaseJson;
public interface ChangePasswordContract {
//对于经常使用的关于UI的方法可以定义到IView中,如显示隐藏进度条,和显示文字消息
interface View ext... | [
"wall137@qq.com"
] | wall137@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.