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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d3e41a23ee375cb6967901d7837a255dfe408a1f | c6e76418dc68bbd852b450ea9eca7880cbf6c9d3 | /src/main/java/com/example/blogpost/payload/CommentRequest.java | 55f7075c15365313e33431cf64d6e313af802a3f | [] | no_license | agbolade92/BlogAPI | 2544e5bcfec47b65a2481594b321b4aaedddf035 | 29306602a99a7989eb75668954fd3cdcafdba09f | refs/heads/master | 2023-08-01T16:56:58.441578 | 2021-09-26T16:51:02 | 2021-09-26T16:51:02 | 410,014,198 | 0 | 0 | null | 2021-09-26T16:51:03 | 2021-09-24T15:29:09 | Java | UTF-8 | Java | false | false | 126 | java | package com.example.blogpost.payload;
import lombok.Data;
@Data
public class CommentRequest {
private String content;
}
| [
"agbolade92"
] | agbolade92 |
fc63f33aab41ffc1c029441492c315ff8945c5b5 | 1c2e1dd5b7a2392f2d3a89013b45faf4e02156fe | /src/main/java/dev/semo/npgen/utils/UtilBase64File.java | be1dd6a66ab3401c71cb9abadd46bc32a79c51af | [
"MIT"
] | permissive | Semo/npgen | 0802aa87f785747027006c6b9c65bcda5a492660 | 5a5e8c04cbb4a111585163121a5b26a4b86fa05c | refs/heads/master | 2020-06-26T13:20:41.152998 | 2019-07-31T14:54:29 | 2019-07-31T14:54:29 | 199,643,232 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 789 | java | package dev.semo.npgen.utils;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Base64;
public class UtilBase64File {
public static String encodeFromFile(String imagePath) {
File file = new File(imagePath);
try (FileInputStrea... | [
"semox78@gmail.com"
] | semox78@gmail.com |
6e5aeaf4f634823507a59f20abe9ff338c0a46e0 | a1f048ba51689a1b73de0db04a4b4b0197038ff8 | /src/com/web/array/MoveAllZeroAtEnd.java | f0765f1057f3271da174a475365f583e98cae5e9 | [] | no_license | avinash8142/core-java-practice | 83d549a352ffa7c34f717216688aa6c526a00ec7 | abc4e8da3d537ba277d8e439e86e9f4e95af7a72 | refs/heads/master | 2022-12-15T20:32:54.618232 | 2020-09-13T04:14:49 | 2020-09-13T04:14:49 | 295,075,849 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,262 | java | package com.web.array;
import java.util.Arrays;
public class MoveAllZeroAtEnd {
public static void main(String[] args) {
// Input : arr[] = {1, 2, 0, 4, 3, 0, 5, 0};
// Output : arr[] = {1, 2, 4, 3, 5, 0, 0};
int arr[]= {1, 2, 0, 4, 3, 0, 5, 0};
System.out.println("input "+Arrays.toString(arr));
// moveAllZeroAtEn... | [
"avinash8142@gmail.com"
] | avinash8142@gmail.com |
75ee15eb097566a108a4f351dcd98b8a3fc3dfd9 | abe8257bbd6816dc499d62ab50d4c8ec5fbd608b | /model/MooGameLogic.java | 61ace2ae4af5c82babdd7b13a6877bbafd0dd8e2 | [] | no_license | PatrikFreij/Clean-Code-Examination | cfca5eda6c0ffbc29f51f38d4f3b96bc9d4f9cd7 | b4d0f41554f0e38b66207169a1190ca3c6f4b8a8 | refs/heads/main | 2023-01-24T15:18:32.998671 | 2020-12-01T16:02:13 | 2020-12-01T16:02:13 | 317,585,373 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 913 | java | package model;
public class MooGameLogic implements GameLogicService {
@Override
public String generateGoal() {
String goal = "";
for (int i = 0; i < 4; i++) {
int random = (int) (Math.random() * 10);
String randomDigit = "" + random;
while (goal.contains(randomDigit)) {
random = (int) (Math.random... | [
"pat.freij@gmail.com"
] | pat.freij@gmail.com |
a91631f66aa6ffa16a74f28d3b59b07366fff13c | 9d51fe82c754fb1b9ac2b1003b586fc42f05f578 | /Project/MyCosts2/app/src/main/java/com/example/mycosts/api/request/JacksonPostRequest.java | c6735a4b3fb53a2d14ee5e9f51e21196b000f2ac | [] | no_license | liza-dobrynina/MyCosts | 15749cbcd5f8a0659d63274286d7fd16edd028b6 | 979d49483a6e221efd232a9fa4162448822081ff | refs/heads/master | 2020-04-28T11:31:39.102834 | 2020-02-27T10:42:36 | 2020-02-27T10:42:36 | 175,244,165 | 3 | 1 | null | null | null | null | UTF-8 | Java | false | false | 487 | java | package com.example.mycosts.api.request;
import com.android.volley.Response;
public class JacksonPostRequest<T> extends JacksonRequestWithBody<T> {
public JacksonPostRequest(String url,
Class<T> clazz,
T data,
Response.List... | [
"dea998@gmail.com"
] | dea998@gmail.com |
aeb6195d23fef3dd8a294e53bebbb5512b7ed215 | d573776e82ab81f2cc82d6d5ccb570a70bd5c538 | /Java/src/main/java/Misc/LastStoneWeight/LastStoneWeight.java | 7f99772c4f5daa7a0903e05ee836e129163a321a | [] | no_license | timManas/Practice | 9497447beadfe21f668a7f5a9f01970f391b13c2 | fc87bd14d1124109faa58df5ad72ced4e2e7e5b3 | refs/heads/master | 2023-08-17T20:10:49.172995 | 2023-08-16T12:51:01 | 2023-08-16T12:51:01 | 229,855,631 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,055 | java | package Misc.LastStoneWeight;
import java.util.*;
public class LastStoneWeight {
public static void main(String [] args) {
int [] input = {2,7,4,1,8,1};
System.out.println("Last Stone Weight: " + lastStoneWeight(input));
}
public static int lastStoneWeight(int[] stones) {
// Step... | [
"timothy.romero.manas@gmail.com"
] | timothy.romero.manas@gmail.com |
f68872cb7fc36aefe1ade2068f2ef7f1957f78f3 | e384651fd3f7f36be1360d83c75aa12566a7416f | /app/src/test/java/com/xiyun/aidlcall/ExampleUnitTest.java | 6535675cc677bbba9d7dce31768cc57641e7e880 | [] | no_license | 258188170/AidlCall | 0a87e596fc5b908711af431dc1b755c0b7abeee1 | f570f8cbeefea3185a0bf0243f9d8b30798103da | refs/heads/master | 2022-06-11T00:36:46.032370 | 2020-05-01T14:50:29 | 2020-05-01T14:50:29 | 260,484,152 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 379 | java | package com.xiyun.aidlcall;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void add... | [
"wangpeng@xiyun.com.cn"
] | wangpeng@xiyun.com.cn |
50506bcdaac5fd6a913814a98e15d32c8c22a04e | c19b1c410f68d49f8058ec596866c8dc8db0767e | /app/src/main/java/com/wondersgroup/padgrade/MarkChartActivity.java | 5d69ec1b141288788be7bd0a120f9d89de11397a | [] | no_license | kevingekun/PadGrade | e74f4b32ffd104c9f78ddd3a8978b469c1120584 | 094c2a89f54cc083dee1e941e787f4ddf01bc4e9 | refs/heads/master | 2021-01-20T14:25:33.347581 | 2017-05-10T13:42:24 | 2017-05-10T13:42:24 | 90,610,011 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,351 | java | package com.wondersgroup.padgrade;
import android.graphics.Color;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.Layout;
import android.widget.Button;
import android.widget.GridLayout;
import android.widget.LinearLayout;
import android.widget.TextView;
import org.xutils... | [
"1021813835@qq.com"
] | 1021813835@qq.com |
a5bce1c25390463ac65da78c8bff12d6b492a708 | 3dfdb5d20aad275e4fe7be2ce9a4d883b2d28e65 | /FormatFontText/app/src/main/java/Model/Align.java | c9bb0f81c69bfdac87f2a1e9986d9b7171d4294a | [] | no_license | NhanVo97/Android-Nhom4-Baitap-tuan2 | 1287add2eaa0c9dc7a60a6966e9475723b7b7092 | 94e436670a1a9a8e7bc6a646cb3a1631001a57cf | refs/heads/master | 2020-04-28T23:23:05.936240 | 2019-03-16T06:20:24 | 2019-03-16T06:20:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 561 | java | package Model;
import android.view.Gravity;
public class Align {
private int keyAlign;
private String ValueAlign;
public Align(int keyAlign, String valueAlign) {
this.keyAlign = keyAlign;
ValueAlign = valueAlign;
}
public int getKeyAlign() {
return keyAlign;
}
pu... | [
"vdnhan@689cloud.asia"
] | vdnhan@689cloud.asia |
52f175bbd5a05e98be673f3a44bd79f5bba21a9d | 200db88702071873d7629460e4f9ad2086568f72 | /src/main/java/com/epam/bench/web/rest/dto/ProposedPositionsDto.java | b737ba31f1c6df4ec59a84cce5921df4fa7d71b8 | [] | no_license | masikbelka/bench-core | e1c021c7ca86b6787b072fcd16ef34e6e06bf79d | 51994ddf985db7366e32e6ba3ed9d9e975e9c5da | refs/heads/master | 2021-01-01T18:16:50.521718 | 2017-07-25T11:32:55 | 2017-07-25T11:32:55 | 98,295,894 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 740 | java | package com.epam.bench.web.rest.dto;
public class ProposedPositionsDto {
private String status;
private String name;
private String type;
private String id;
public ProposedPositionsDto() {
}
public String getStatus() {
return status;
}
public void setStatus(String status... | [
"tetiana.antonenko@sap.com"
] | tetiana.antonenko@sap.com |
c13cc3324b5433b0292b621c0f2de332da57f0b5 | 2849271885dd620d2452fef4f74984b316ccffec | /src/main/java/br/com/samsung/security/jwt/JwtTokenProvider.java | d7ed30d80d38cc322acedee23150ee87dc0f948a | [] | no_license | alexsandrodeveloper/samsung-backend | 452dc3647339b2d644c42509c30004a29f32bb0f | c38df11ed87d4e550da7420b9b9a5c40191eeac7 | refs/heads/master | 2022-12-16T09:58:05.318887 | 2020-09-16T00:36:03 | 2020-09-16T00:36:03 | 293,910,467 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,792 | java | package br.com.samsung.security.jwt;
import java.util.Date;
import java.util.Set;
import javax.annotation.PostConstruct;
import javax.servlet.http.HttpServletRequest;
import org.apache.tomcat.util.codec.binary.Base64;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.fac... | [
"alex_sandrosoares@hotmail.com"
] | alex_sandrosoares@hotmail.com |
31adcd856db227ccc02d41901ce13ecd9914ba01 | 1096ef12c07f21d74aa4f9944c831576d337b56a | /图/AudioClipDialog.java | f1d0a6f10b514c710373810c3d72431b1cee2281 | [] | no_license | Wang-KEVIN/java | b918c151993ea6084430ca2934e23323a3d1a8ca | b0bcdb4d65a5d47f1e128476e429f4e9e31b8fa8 | refs/heads/master | 2020-06-03T17:40:46.390065 | 2019-06-13T01:56:32 | 2019-06-13T01:56:32 | 191,667,327 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,936 | java | import java.awt.*;
import java.net.*;
import java.awt.event.*;
import java.io.*;
import java.applet.*;
import javax.swing.*;
public class AudioClipDialog extends JDialog implements Runnable,ItemListener,ActionListener{
Thread thread;
JComboBox choiceMusic;
AudioClip clip;
JButton buttonPlay,buttonLoop,but... | [
"noreply@github.com"
] | Wang-KEVIN.noreply@github.com |
9aee1a37a4697c21db049a343a319b0f93c728ae | dc93be9449e5785f84bf3d4a1f662276495823bf | /QueueUsingArray.java | c17017ce253cc3bb9fa9531e3d9837e5f668d574 | [] | no_license | mallickrohan08/DS-Queue | 574482a79697cf35cc7dc2cddcd8bf1270cd16a4 | d519674c1c1681d177ebc2a41b812e373622ae75 | refs/heads/master | 2020-06-11T02:25:51.495133 | 2016-12-09T18:40:29 | 2016-12-09T18:40:29 | 76,022,892 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,271 | java | class Queue {
int size = 0; //No of item in Queue;
int front = -1; //front index or head index, from where we can dequeue item;
int rear = -1; //Rear index or tail index where we can enqueue items;
int capacity = 0; // Maximum size of Queue;
int queArr[];
Queue(int cap) {
this.capacity = cap;
queArr = new... | [
"mallickrohan08@gmail.com"
] | mallickrohan08@gmail.com |
08083266c69a33fdd8ecd50c5ac76a50f4307081 | df3ca7c43baa1ebe8a5407dbd4eb54737c5c1d9d | /src/test/java/pageObject/desktop/CalendarWidget.java | 1d4b1de4c42ee68a365a1d2fd84a01c21e160e81 | [] | no_license | inteticsal/dn-cucumber | adb6398396c2596a969070f4483035b5249ee774 | e15abefacdd23da1a4ce913a058e8f8fb90f04c6 | refs/heads/master | 2021-07-10T10:13:04.390846 | 2017-10-13T13:37:32 | 2017-10-13T13:37:32 | 105,999,817 | 0 | 0 | null | 2017-10-06T12:02:17 | 2017-10-06T12:02:17 | null | UTF-8 | Java | false | false | 2,070 | java | package pageObject.desktop;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import webDriver.Driver;
public class CalendarWidget {
static WebDriver driver = Driver.getCurrentDriver();
public static class Popup {
public static WebElement sele... | [
"noreply@github.com"
] | inteticsal.noreply@github.com |
9d3d88020dc4287df853ccb46374f0cb01f86207 | f6a6e017dc71c350963c9b134134ba025644ce1b | /app/src/main/java/com/flurry/sdk/C0136f2.java | 5b6a6b04a773d6507a138ccc91b816f69f2d7830 | [] | no_license | alissonlauffer/via-browser-dump | 0f42f924612785cf1e030edbb3d51da8a30829b0 | 719120ccaff73f65f93c4f43dbfa9654bc6a667d | refs/heads/master | 2023-02-23T06:37:03.730470 | 2021-01-30T18:36:58 | 2021-01-30T18:36:58 | 271,610,980 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 15,615 | java | package com.flurry.sdk;
import com.flurry.sdk.C0147g2;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
/* renamed from: com.flurry.sdk.f2 */
public class C0136f2 {
... | [
"alissonvitortc@gmail.com"
] | alissonvitortc@gmail.com |
da1d7e3f74347efd8b009c0af63630e86cd0f4f1 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/33/33_9d556bb155b90787a532ff5f8246d892165619a8/RackMetaData/33_9d556bb155b90787a532ff5f8246d892165619a8_RackMetaData_t.java | f5a414833c990b2f6b444d13e59f80f4338e416f | [] | 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 | 3,813 | java | /*
* Copyright 2008-2013 Red Hat, Inc, and individual contributors.
*
* This 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 2.1 of
* the License, or (at your option) any la... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
4af02b188a9de55975f9765c9cb3a41a933681d4 | f7055526843b8de39ce5678f6fcad903406be5f6 | /server/src/main/java/eu/livotov/labs/webskel/core/quartz/guice/InjectorJobFactory.java | 8f56ff825bf382d9ef9783701bc757a3f9429114 | [] | no_license | lbanas/WebApplicationSkeleton | f39271cb4f524cfacb543558b2c8293a7e1ac55e | 3b44373ee50edca2f2fac6f0eccefec4ed4c68ba | refs/heads/master | 2021-01-18T14:36:49.725803 | 2015-11-04T08:16:38 | 2015-11-04T08:16:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,692 | java | /*
* Copyright 2015 Livotov Labs Ltd.
* Copyright 2009-2012 The 99 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.... | [
"dmitri@livotov.eu"
] | dmitri@livotov.eu |
4d7a80afb58a006ecdc778af976c6479203a3751 | faef44ab5a4bfceb292fcf8180c19ef94e84c3ec | /src/main/java/reservation_front/service/impl/TableServiceProxy.java | 505c4f5c42e2dce86d86bdc7ace5ea3c119c2acf | [] | no_license | youyou19/restaurant-reservation-front | 1f3501b650218fd17dcf94796502aff192f8d1d4 | 8a3629cd1fcd60464a09c1a2147fadb5ed9b8ed3 | refs/heads/master | 2022-11-04T14:44:10.725570 | 2020-06-24T07:15:30 | 2020-06-24T07:15:30 | 274,586,260 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,604 | java | package reservation_front.service.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
import org.spring... | [
"juleswilfrid9@gmail.com"
] | juleswilfrid9@gmail.com |
14e9852466190091c02c92f532831cb1d0177cdc | aed324c76a46911f0bc9241390451990fa6c12c6 | /src/cursojava/executavel/TestandoClassesFilhas.java | b20f4c69da7680f7ee4ded40832cd982e7db7687 | [] | no_license | Marcelo-F/primeiro-programa-java | 728fabd764b97f2d6b58d87d16e0102e93cbef31 | 277b9eed9cfdf8749025d1541c38f69c87a2e038 | refs/heads/master | 2021-01-15T02:40:01.359449 | 2020-03-20T15:08:26 | 2020-03-20T15:08:26 | 242,851,127 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 1,045 | java | package cursojava.executavel;
import cursojava.classes.Aluno;
import cursojava.classes.Diretor;
import cursojava.classes.Pessoa;
import cursojava.classes.Secretario;
public class TestandoClassesFilhas {
public static void main(String[] args) {
Aluno aluno = new Aluno ();
aluno.setNome("Alex");
Diret... | [
"54288817+Marcelo-F@users.noreply.github.com"
] | 54288817+Marcelo-F@users.noreply.github.com |
13172a183dad97adf2ad5998777ea04ae0a056ca | 5e362b9070d4d08234de1d06288ff6692fb6836b | /android/app/src/main/java/com/quantie_18053/MainActivity.java | 57b39b5882778d80bdafebae25fe8189216f06de | [] | no_license | crowdbotics-apps/quantie-18053 | 0a380b0f5cb9d1c4a5200e552a700f7fa3809d01 | b9fe9938b16a3a479303c7768b3a4e162d67e5a8 | refs/heads/master | 2022-10-11T03:19:42.577082 | 2020-06-12T21:37:45 | 2020-06-12T21:37:45 | 271,879,635 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 371 | java | package com.quantie_18053;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainCompone... | [
"team@crowdbotics.com"
] | team@crowdbotics.com |
2d557386ebb2132401429e87c685e71e693d9406 | e2bd16f6feb9d64b7e04fca41ae86485b46afa43 | /app/src/main/java/com/example/servicesample/MainActivity.java | 354b15ff5e14b6b42870a8e074bb4cbc3e33f510 | [] | no_license | KoshiDra/android_ServiceSample2 | 69095a9456a89b3c1f3f80539da7d02889ed49b7 | 0df3f680f6ca41e1c111969492340962a04802f0 | refs/heads/main | 2023-06-03T18:07:30.980841 | 2021-06-27T09:53:35 | 2021-06-27T09:53:35 | 380,159,688 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,988 | java | package com.example.servicesample;
import androidx.appcompat.app.AppCompatActivity;
import android.app.AlertDialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
@Override
pr... | [
"koshidradev@gmail.com"
] | koshidradev@gmail.com |
682c01f605afa372df371767204a9929f7069db3 | 6a5e1c7fd25e38251c19b74ab719f659d767c416 | /plugins/jobentries/delay/src/test/java/org/apache/hop/job/entries/delay/JobEntryDelayTest.java | b1812e8dc3709b63157bd7c5504da18ca7cdc372 | [
"Apache-2.0"
] | permissive | marciojv/hopOLD | d734576991460ee9275602a505a4d806c166b1a3 | 461d0608069fd5c66ac3113ca03f94417353a0c4 | refs/heads/master | 2022-04-13T23:14:29.027246 | 2020-04-08T17:19:13 | 2020-04-08T17:19:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,558 | java | /*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2017 by Hitachi Vantara : http://www.pentaho.com
*
*******************************************************************************
*
* Licensed under the Apache License, Version... | [
"noreply@github.com"
] | marciojv.noreply@github.com |
14066f8752cfa152312992de810cf8fdb2e69ca3 | cdc930c5f2ed633b872657705e1b161fbff4c313 | /springboot2-utils/src/main/java/com/letters7/wuchen/springboot2/utils/security/Cryptos.java | e4dbb4214e457197560e1a6fdf217c02c246f32e | [] | no_license | wuchenl/springboot2-scaffold | 56b6a485f7c389c778688b8f327609d61174d8e6 | cf6ef1c7a22405c03bd654e95ccda7562cb8e8f2 | refs/heads/master | 2020-04-27T10:34:21.844066 | 2019-01-16T05:43:08 | 2019-01-16T05:43:08 | 174,260,120 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,382 | java | package com.letters7.wuchen.springboot2.utils.security;
import com.letters7.wuchen.springboot2.utils.encode.UtilEncode;
import com.letters7.wuchen.springboot2.utils.exception.UtilException;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.Mac;
import javax.crypto.SecretKey;
import j... | [
"mail@letters7.com"
] | mail@letters7.com |
935ca72ab41701cbf954d8a1a6800ec4cc392bfb | a257713804c4fa85eef46e47cbc5a0e6cdade150 | /app/src/main/java/com/teambition/talk/entity/Quote.java | cc6fb8dc8ff7a96562dc807c664e17388eb4b47d | [
"MIT"
] | permissive | megadotnet/talk-android | 50aa919b3041840953672fbe588caa59252cd06c | 828ba5c2e72284d7790705bc156cc20d84a605bc | refs/heads/master | 2020-03-09T04:13:54.084431 | 2018-04-08T01:50:57 | 2018-04-08T01:50:57 | 128,582,337 | 0 | 0 | MIT | 2018-04-08T01:05:49 | 2018-04-08T01:05:49 | null | UTF-8 | Java | false | false | 1,963 | java | package com.teambition.talk.entity;
import com.teambition.talk.util.StringUtil;
import org.parceler.Parcel;
/**
* Created by zeatual on 14/11/5.
*/
@Parcel(Parcel.Serialization.BEAN)
public class Quote {
String openId;
String text;
String authorName;
String authorAvatarUrl;
String redirectUrl;... | [
"wlanjie888@gmail.com"
] | wlanjie888@gmail.com |
d9fea2237dff7773d386c1f01e88320dcc4f529a | 0d95242f5de24e865ebaf2652bc155e8666ce307 | /app/src/androidTest/java/com/quanlt/vietcomicmvp/ExampleInstrumentedTest.java | 5d105996b203299e6a4abf226f84605d2f9f7720 | [
"Apache-2.0"
] | permissive | quanlt/VietComicMVP | e10e91d5e158df8359d51f29930d9b381cd8f5f0 | 9428468c17196bb58cdf10f93c0ac47c4bca8ec3 | refs/heads/master | 2021-06-07T19:22:06.924950 | 2016-11-23T12:55:50 | 2016-11-23T12:55:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 776 | java | package com.quanlt.vietcomicmvp;
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.*;
/**
* Instrumentation test, which will execut... | [
"quanlt.56@gmail.com"
] | quanlt.56@gmail.com |
2c1cb563055796d2b6be44261eb4759f2779bdc9 | 25b3ebc0cf24a3e28e05c5e76faba9dcc5bd8f88 | /src/org/joshy/gfx/node/control/Textbox.java | f4e92e20340c0cf2a987b02b2bed81eb3f9733fd | [] | no_license | joshmarinacci/aminojava | 24a1683a3994e3985299795ea19a99d3d093700e | 6dcddf6100518a7a7c1cb2027d3bbbd496bd5891 | refs/heads/master | 2016-09-06T17:55:34.673930 | 2013-05-20T23:46:38 | 2013-05-20T23:46:38 | 7,651,569 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,530 | java | package org.joshy.gfx.node.control;
import java.text.AttributedString;
import org.joshy.gfx.Core;
import org.joshy.gfx.css.BoxPainter;
import org.joshy.gfx.css.CSSMatcher;
import org.joshy.gfx.css.CSSSkin;
import org.joshy.gfx.css.SizeInfo;
import org.joshy.gfx.draw.FlatColor;
import org.joshy.gfx.draw.Font;
import or... | [
"joshua@marinacci.org"
] | joshua@marinacci.org |
9c752199a23db6411279af1472f18baffbaab6a1 | 3998ab9a87c7094915fe39afa418c08baa9eb920 | /src/main/java/com/softsign/graphql/DataFetchers.java | 5ff7445efdcea2531206fa330ac73a21569311be | [] | no_license | MatiasMinian/GraphQL-Test | be169a365d66dcffe62c0f9d74051fce589e8ba9 | 2ceef91df527e865b739336f7ac7af09bf122e16 | refs/heads/master | 2021-06-12T22:19:59.056712 | 2016-12-28T22:32:22 | 2016-12-28T22:32:22 | 76,380,218 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 395 | java | package com.softsign.graphql;
import com.softsign.model.User;
import graphql.schema.DataFetcher;
public class DataFetchers {
public static DataFetcher userDataFetcher = (environment -> AppDataset.users.get( (Integer)environment.getArguments().get("id") - 1));
public static DataFetcher userTransportsDataFetc... | [
"matias.minian@globant.com"
] | matias.minian@globant.com |
9ec328d6c229d2538f28978380908afbbc0e9034 | 65eef6677a132162d8e6ba055c0d1b79982be5a3 | /src/DPLL.java | 4c4d8b2199e0cfa57086bba1c7ec3ab3d086bb64 | [] | no_license | ejmejm/Inferencer | 62cb797773b4321dce5f5f7883a5e86c45e8d873 | e3e42ffbf6e344e5a0450b3191e285aed39ce948 | refs/heads/master | 2020-05-18T14:31:16.880388 | 2017-03-08T02:15:27 | 2017-03-08T02:15:27 | 84,247,044 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,590 | java | import java.util.ArrayList;
import java.util.LinkedList;
public class DPLL {
public static boolean entails(Model model, Statement statement){
State state = new State(model);
ArrayList<State> leafNodes = state.getLeafNodes(state);
boolean entails = true;
for(State node : leafNodes){
if(!node.entails(st... | [
"ninjaedan@aol.com"
] | ninjaedan@aol.com |
f56c7eb2081d945611d637cda7b2046c97fd0854 | 989c4e50ab672c4971cdb9052be945a2ebac9984 | /ArraySort.java | d35af9b3890aaec7ff47745f976e1717f9da9ee9 | [] | no_license | NobSirawit/Sorting-Array-JAVA | 6210c2aa3fec48f42aea9e0984bbe6bc837abc22 | 5000f1fc7fa65d7310819e51eb3dd491543b035e | refs/heads/master | 2020-07-10T17:41:58.546132 | 2019-08-25T17:11:58 | 2019-08-25T17:11:58 | 204,325,321 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 306 | java | import java.util.Arrays;
public class ArraySort {
public static void main (String [] args) {
int [] array = {45,12,85,32,89,39,69,44,42,1,6,8};
Arrays.sort(array);
for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
};
}
}
| [
"noreply@github.com"
] | NobSirawit.noreply@github.com |
dce3fb6aa3d1de1c1862c99c6f3c16414c72505d | 6cc096998061db8cb1f13e82ccc899aa04e686ff | /src/main/java/com/vectorsearch/faiss/swig/intArray.java | c6e7be649bd61392db8064ceac5f8a103120636b | [
"MIT"
] | permissive | xuqiong1989/JFaiss-CPU | a02aacca1d6f6999fc59dd9dee3e1d63f0dcc46d | 3f12ff474938954aa34e7d831af821eb14db0e5c | refs/heads/master | 2022-12-25T20:44:50.503752 | 2020-09-15T05:57:52 | 2020-09-15T05:57:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,652 | java | /* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.12
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* -----------------------------... | [
"ramanrajarathinam@gmail.com"
] | ramanrajarathinam@gmail.com |
d0798e0d4a39d4e6cad40bdcd5e110f66c120c17 | a69254f9f84bba6facc3ffa940ba2e540627d77b | /core/src/main/java/org/jdal/text/PeriodFormatAnnotationFactory.java | 40db674d04b65b778042e4a315207c62dc959910 | [
"Apache-2.0"
] | permissive | chelu/jdal | 3250423e5eaaf5571d6f85045c759abe12adff1f | 2c20b4a7e506d97487a075cd4fa5809e088670cd | refs/heads/master | 2023-03-07T14:09:26.124132 | 2018-05-22T18:52:30 | 2018-05-22T18:52:30 | 13,729,407 | 21 | 12 | null | 2017-01-25T12:20:48 | 2013-10-21T00:10:59 | Java | UTF-8 | Java | false | false | 1,923 | java | /*
* Copyright 2009-2012 Jose Luis Martin.
*
* 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 o... | [
"jlm@joseluismartin.info"
] | jlm@joseluismartin.info |
c2e9a9056256e4c3e227452b4d753ca1b21b5fe1 | c90538cd8e95644776a8dd4c8f29c153d6fb71ce | /Common/src/messages/GetStaticMapMsg.java | ca0ba5a0d80e761e36d2d724da94acbb1f82550f | [] | no_license | grimmle/point-n-shoot | 43d9a37e9b027709bdc8c6463ed5b5fc6dea4077 | 7ae96f850a74465e50c146333db70c7b21336e06 | refs/heads/main | 2023-06-18T19:23:33.427961 | 2021-07-12T16:44:00 | 2021-07-12T16:44:00 | 313,705,115 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 222 | java | package messages;
import common.Msg;
public class GetStaticMapMsg implements Msg {
private static final long serialVersionUID = 8576917706186946304L;
public int id;
public Object staticMap;
public Object dynamic;
}
| [
"lennard@netinn.de"
] | lennard@netinn.de |
710d3fdba96c000a19da5c30b7b948d1547a12fa | ddaede1300f7b125f8c2fd2608e850127b69ffe9 | /JavaExercise/src/main/java/thread/synchronizedDemo/TestMethod.java | 88d5052d8f6477234a342b50915e54807f142746 | [] | no_license | lojack636/DEMO | 6ef57ad454161e3677a8ab8dd4cfa9b284172664 | 3d11c1bc26bfb9478bd9455fce250ef1169a7c49 | refs/heads/master | 2023-01-15T21:40:15.999114 | 2020-11-23T14:58:45 | 2020-11-23T14:58:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,189 | java | package thread.synchronizedDemo;
/**
* 测试Synchronized
*
* @author qiang
*
*/
public class TestMethod implements Runnable {
private static int number;
TestMethod() {
number = 0;
}
// 修饰非静态的方法
public static synchronized void m1() {
for (int i = 0; i < 3; i++) {
try {
System.out.println(Thread.cur... | [
"2422321558@qq.com"
] | 2422321558@qq.com |
6ba3b6386ecaf96022cfd6fc836d32be7516cda0 | 306578f3c6d15e0d4b4600c60ce8c827638a3d21 | /src/test/java/insat/gl4/cookme/CookMeApplicationTests.java | 6c775b91e685826e5a118f52f2f7ef43bc8036c5 | [] | no_license | mmmarzouki/cook-me_backend | 982252528869e8e53e4526b36e08204359a02775 | 6ef5728cea986d7bcf809e609c036ed0b5dce429 | refs/heads/master | 2020-04-27T00:24:53.078036 | 2019-05-01T11:38:27 | 2019-05-01T11:38:27 | 173,933,204 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 342 | java | package insat.gl4.cookme;
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 CookMeApplicationTests {
@Test
public void cont... | [
"mmmarzouki@gmail.com"
] | mmmarzouki@gmail.com |
5c2885a00683ef38aada972cc6b37b2a20d3bf0b | c085b4593fdbc55337a8112bf7157dc7f0f4c8b0 | /app/src/main/java/edu/illinois/cs465/petlocator/LostPetLocationActivity.java | f96a9785c71f59debc3830bbe973dd3ccaecb682 | [] | no_license | jbuildstuff/PetLocator | ce6c359afa2a62fb8f3cb71c8efc9c5aa98e6cff | 6d6de1a6fb2e595f4669764647702a792215c6a3 | refs/heads/master | 2023-03-02T11:49:15.205897 | 2019-12-31T16:55:31 | 2019-12-31T16:55:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,227 | java | package edu.illinois.cs465.petlocator;
import android.Manifest;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationManager;
import android.support.annotation.NonNull... | [
"jlee651@illinois.edu"
] | jlee651@illinois.edu |
a492a9b2b49fe2a2f432401d0da10322ead89738 | 84f6d0c1cf9afe7a54c1b0e22708a3310c04453c | /src/main/java/com/fmx/tool/hdfsfilemanager/app/treeviewer/action/Rename.java | 3bd12b182e31c30dcf422e2568b4da1146f2eaa2 | [
"MIT"
] | permissive | FMX/HdfsFileManager | e2987273a609676318a89b017c27c71bc593aaed | 77fa02fd27b3b2214e756f725f8c0d06ac264478 | refs/heads/master | 2020-04-03T01:43:33.746493 | 2018-10-31T05:44:54 | 2018-10-31T05:44:54 | 154,938,111 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 149 | java | package com.fmx.tool.hdfsfilemanager.app.treeviewer.action;
import org.eclipse.jface.action.Action;
/**
*/
public class Rename extends Action {
}
| [
"fmxfmx@outlook.com"
] | fmxfmx@outlook.com |
576ee3a5e8aa4b77c14502b267f0e7815c7b7b02 | e7c48e95f167f37edf8c4f5d9062d4d546211c81 | /chbase-jaxb/src/main/java/com/chbase/thing/oxm/jaxb/healthevent/ObjectFactory.java | 08ed1dd16eee9bf8c9641d3fc7d9ff25c89e8e90 | [] | no_license | CHBase/chbase-java-sdk | 1d6b04e1884cfa20541bfe0d3ff0b7e3c1fcacd8 | 61c6143134162d11f897d446595a26a8abdcacd5 | refs/heads/master | 2023-02-19T09:14:26.321622 | 2023-02-09T07:10:58 | 2023-02-09T07:10:58 | 43,138,403 | 0 | 2 | null | 2023-02-09T07:11:00 | 2015-09-25T12:10:54 | Java | UTF-8 | Java | false | false | 1,392 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.05.07 at 02:21... | [
"rajeev@getrealconsulting.com"
] | rajeev@getrealconsulting.com |
e0b5ffcfb891b84cd3a68236654e4e83f0e5a073 | 79b318ac1e234378169fbf96d62f2d4cfcbb52fd | /phonedrohne/Quaternion/src/ch/sharpsoft/quaternion/util/Quaternion.java | ecd058862dea4b29b81770ad9950fa0afb1373b5 | [] | no_license | helios57/phonedrone | 0e508ced1b91d6ce245cba04031c2e6dab65a16e | 9a23565fa535ccedc0b364ecefea22eadba5fdc9 | refs/heads/master | 2021-01-10T10:44:03.958737 | 2013-07-24T13:15:07 | 2013-07-24T13:15:07 | 36,993,352 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,283 | java | package ch.sharpsoft.quaternion.util;
import ch.sharpsoft.quaternion.v1.Vector3;
public class Quaternion {
private final float w, x, y, z;
public Quaternion(float[] q) {
this.w = q[0];
this.x = q[1];
this.y = q[2];
this.z = q[3];
}
public Quaternion(float w, float x, float y, float z) {
... | [
"Helios"
] | Helios |
ee895b8707195071578947c14847f0d79780a7f2 | 9707e95b0b96fccdf3a42f5add5e8ef5a035d843 | /Linked List/deep copy of list with forward pointer.java | ed3a1b003e14130da0262ce61e22054dcef61074 | [] | no_license | fanyang209/data-structure | 09ffa4a8b7026e59cc66f94e749ff8f962498f7d | 2fad37f3bb8fd895326cf2b09f073b0f73f2eab2 | refs/heads/master | 2020-12-12T16:42:59.963240 | 2016-08-02T15:39:44 | 2016-08-02T15:39:44 | 53,741,545 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 588 | java | public ListNode deepCopy( ListNode head ) {
if( head == null ) {
return head ;
}
ListNode dummy = new ListNode( 0 ) ;
ListNode cur = dummy ;
Map< ListNode, ListNode> map = new HashMap< ListNode, ListNode>() ;
while( head != null ) {
if( !map.containsKey( head ) ) {
map.put( head, new ListNode( head.value ) ) ;
}
cu... | [
"fanyang209@gmail.com"
] | fanyang209@gmail.com |
6b5a61ea960befd01c249d88ed76dd163c026408 | 7d940553cf07c8c4c644c6f890328c61c82c16ad | /app/src/main/java/gnosisdevelopment/arduinobtweatherstation/DBHelper.java | 5314b88e9a7c4c7370cb9bef8b411cc990e02510 | [
"CC-BY-3.0"
] | permissive | JamesHarley/BTWeatherStation | d19341293cbf806ba064674ed8b39e4fc40053d3 | 7d76953a0565152b37b12a42a4843b78ef5f206a | refs/heads/master | 2020-03-22T13:09:56.343529 | 2018-08-15T22:10:02 | 2018-08-15T22:10:02 | 140,088,113 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,066 | java | package gnosisdevelopment.arduinobtweatherstation;
import java.util.ArrayList;
import java.util.HashMap;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.DatabaseUtils;
import android.database.sqlite.SQLiteOpenHelper;
import android.database... | [
"jahsnote5@gmail.com"
] | jahsnote5@gmail.com |
050dd6b08ddb50fee3bd9a7a756f830e32eea542 | d3abbbeac102de77fe50a6d400c6aa7c0a80a97c | /src/com/interview/leetcode/MissingNumber.java | 32460dbdf97dd923c356e6ae8360984370e36765 | [] | no_license | teraliv/interview | 6ce0352d285eac1dc02f34a05dbd028bba2aa2f2 | 4fd2bc80e8cf8fe18e2b0f38385e60b0cb93366f | refs/heads/master | 2020-04-24T06:35:04.608247 | 2019-04-01T04:17:45 | 2019-04-01T04:17:45 | 171,770,343 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,112 | java | package com.interview.leetcode;
/**
* 268. Missing Number
*
* Given an array containing n distinct numbers taken from
* 0, 1, 2, ..., n, find the one that is missing from the array.
* Your algorithm should run in linear runtime complexity.
*
* https://leetcode.com/problems/missing-number/
*/
public class Missi... | [
"teraliv@gmail.com"
] | teraliv@gmail.com |
1da6b3861087983a819e97a6a0009b9d1eacb50f | 4953bb4beb49ae211c4487605668269fb437d2a1 | /src/main/java/com/api/scgapi/models/ApiResponseModel.java | 5d5165d86b97592673d58d43a1e3201f37326c72 | [] | no_license | supacheep-first/scg-api | af09b4aa443d585b0a9243b535b82d09906547bb | c4fe62ade17d6d3348e1baadf41b03fb864319c9 | refs/heads/master | 2023-01-19T01:53:08.923461 | 2020-11-20T06:03:13 | 2020-11-20T06:03:13 | 314,455,933 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 193 | java | package com.api.scgapi.models;
import lombok.Data;
import org.springframework.http.HttpStatus;
@Data
public class ApiResponseModel {
private HttpStatus status;
private String body;
}
| [
"first.supacheep@gmail.com"
] | first.supacheep@gmail.com |
f006ba31355a3220bd209139230151d1204d6e20 | bb144a9a3691eda39cf72954c32371b62a87cf34 | /src/weeksix/tuesday/challenges/stock_control_system/Order.java | 5f80611707d3dde21d2a1bc3c7af1955dcea523e | [] | no_license | RobertWatkin/GatesHeadCollege | 6ef500031c1013d30edb3887ed531a80fac3c928 | 90a77338da41248c4ebb0ea5e06ba3d2135f2cef | refs/heads/master | 2022-02-28T20:40:23.370215 | 2019-10-14T09:18:39 | 2019-10-14T09:18:39 | 214,985,406 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 544 | java | /*
Written By : Robert Watkin
Date Created : 08/10/2019
*/
package weeksix.tuesday.challenges.stock_control_system;
import java.util.Date;
public class Order {
// Variable Declaration
private int orderID;
private int customerID;
private int quantity;
private Date orderDate;
// Constructor
... | [
"robert.watkin@accenture.com"
] | robert.watkin@accenture.com |
3083a6d62b3280d47555ea81b9aff1e600e43740 | d8ae0563f237551cdfbe707cb367a5dcbae8854c | /bingo-core/src/main/java/org/bingo/security/service/AuthorityService.java | a32f1e037bc17d7ed95e861bc31f57218889f941 | [] | no_license | ERIC0402/bingo | ebda99e1d4f6d14511effc43912927d33d47fce7 | 4782ee19fd54293a0c5f9e0e2da987730ffcc513 | refs/heads/master | 2021-06-16T14:01:38.393305 | 2017-05-11T05:47:44 | 2017-05-11T05:47:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 417 | java | package org.bingo.security.service;
import java.util.List;
import java.util.Set;
import org.bingo.security.model.Authority;
import org.bingo.security.model.User;
public interface AuthorityService {
/**
* 获取该用户所有权限
* @param user
* @return
*/
public Set<Authority> getAuthorities(User user);
/**
* 获取所有... | [
"805494859@qq.com"
] | 805494859@qq.com |
68346cebd6965db5a61122ad436e421003621680 | 020713896789ae44e56e54bfcbe7c494b8d9ae65 | /src/fontMeshCreator/GUIText.java | 62b31c965cf9e49c8a092b9cd66b407d2e2ad6c6 | [] | no_license | Lmntrix18/T-rex-Adventures-3D-Game | e5f82cece25bd781714ccecb473283017ce0e448 | f89a08f5a0e569849c1d0d67ccd2970ce9bb12ab | refs/heads/main | 2023-03-13T06:42:32.616728 | 2021-03-08T08:58:41 | 2021-03-08T08:58:41 | 345,562,586 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,829 | java | package fontMeshCreator;
import org.lwjgl.util.vector.Vector2f;
import org.lwjgl.util.vector.Vector3f;
import fontRendering.TextMaster;
/**
* Represents a piece of text in the game.
*
* @author Karl
*
*/
public class GUIText {
private String textString;
private float fontSize;
private in... | [
"noreply@github.com"
] | Lmntrix18.noreply@github.com |
a1f6c0628f94042c8165124423bac569f9253378 | dafb5c3abd51720da10e26872a5d7e59be1c0bf7 | /src/main/java/com/zqbweather/app/model9/XDWeatherDB.java | 0736ae188edf3ee944b410b187d633ab97dfba7b | [
"Apache-2.0"
] | permissive | YJWWZHANG/XDWeather | 210c807e588df078b5828dda54458fd68c95a613 | 42dd28cc0b4c78eb12b705c89382ea76e8063716 | refs/heads/master | 2021-01-01T04:30:52.824953 | 2016-05-21T13:44:17 | 2016-05-21T13:44:17 | 59,361,649 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,421 | java | package com.zqbweather.app.model9;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import com.zqbweather.app.activity.MyApplication;
import com.zqbweather.app.db.XDWeatherOpenHelper;
import co... | [
"tony@gmail.com"
] | tony@gmail.com |
d0276aaa0438f055a98a19cd72b01b6b28d4e0e5 | 9ba4fd0c0fe1227afd139ca2d3622eed98985555 | /src/test/java/com/example/prageet/cavorts/ExampleUnitTest.java | c34ea76750655e097786d52def04a319046758be | [] | no_license | VirZon/cavorts2k17 | bf18467751bb0e53a5244997f530fbc2d44e72e4 | 6bdd1ca422ef024e7cf6e097f34db4d1860be23a | refs/heads/master | 2021-01-23T12:00:07.808358 | 2017-09-26T05:01:06 | 2017-09-26T05:01:06 | 102,642,493 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 421 | java | package com.example.prageet.cavorts;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Tes... | [
"noreply@github.com"
] | VirZon.noreply@github.com |
487894e8c2c2b71eb3b5b0eae7634deac7da5cb6 | dc3ff4ec1cae3067369437bc92fceb9d142036b6 | /src/main/java/org/springframework/amqp/tutorials/tut1/Tut1Config.java | 009043647ca39fcbef59e7082efbcc52a20770c2 | [] | no_license | a-chauhan/rabbitmq-spring-tutorials | 2e587e719784fcb5cc84b36088d7f29a0a37a321 | 86cfebe55c760431baf729aa93f1b90a1deb08b8 | refs/heads/master | 2020-03-21T02:38:09.013418 | 2018-06-20T09:29:41 | 2018-06-20T09:29:41 | 138,008,996 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 638 | java | package org.springframework.amqp.tutorials.tut1;
import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
@Configuration
@Profile({"tut1","hello-world"})
public cl... | [
"a-chauhan@mail.nissan.co.jp"
] | a-chauhan@mail.nissan.co.jp |
bfc3d20a333ce2f2669f8139673815aaf314cf09 | c74a3488129ac10e204bc56b8718c6ff261ee3a7 | /src/main/java/com/chitter/PeepRepository.java | b95277c9dcd16f8026450102641db8c372d18fd9 | [] | no_license | JohnNewman1/chitter-challenge | 2bef6ec5b482e2f6d9893113cb5ebe96a22f3d21 | fccdff3def2a037587c64a9883c03ae650c6947f | refs/heads/master | 2020-03-19T16:29:00.912220 | 2018-06-09T16:02:56 | 2018-06-09T16:02:56 | 136,716,898 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 155 | java | package com.chitter;
import org.springframework.data.repository.CrudRepository;
public interface PeepRepository extends CrudRepository<Peep, Long> {
}
| [
"newmanj903@gmail.com"
] | newmanj903@gmail.com |
8d1dcd014672496fc0ce74197e43f75059a77f47 | 0c8a9b60a6bb4bce19921c0008c9e79c5eb89f31 | /TianTianApp/app/src/main/java/com/tiantianapp/photo/loader/PhotoDirectoryLoader.java | a73d1571df779f9ca83dd5c2f9327a49ea5012ac | [] | no_license | Tareafengye/GankAPi | 9ad0d724c7bb50167bd63c950bb90dfa7da9cd8a | dafd0ef1d9512954c13fcdd69717294edd31aa3b | refs/heads/master | 2021-05-09T05:41:10.848906 | 2018-04-28T08:55:14 | 2018-04-28T08:55:14 | 119,317,538 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,733 | java | package com.tiantianapp.photo.loader;
import android.content.Context;
import android.net.Uri;
import android.provider.MediaStore.Images.Media;
import android.support.v4.content.CursorLoader;
import static android.provider.MediaStore.MediaColumns.MIME_TYPE;
/**
* Created by Awen <Awentljs@gmail.com>
*/
public class... | [
"18885640674@163.com"
] | 18885640674@163.com |
c98f66c060e2f214c8db073ef49c6206234154ce | d04ff5275808e541ea7c2033e3cb816128a48231 | /chapter_008/src/main/java/ru/job4j/srp/SubtractAction.java | 95a8e1c3d44772527077ee2f8c7245a57de4143c | [] | no_license | VladimirKovtun/job4j | 2b93e25d00f35722c933cb0d480c696f3dc4478d | 0380675efe04d7b714bb5a109e176f99d51318d0 | refs/heads/master | 2022-09-20T07:20:39.631341 | 2020-01-23T13:15:32 | 2020-01-24T06:12:22 | 207,911,194 | 0 | 0 | null | 2022-09-01T23:17:15 | 2019-09-11T21:36:50 | Java | UTF-8 | Java | false | false | 718 | java | package ru.job4j.srp;
import ru.job4j.calculate.Calculate;
/**
* Subtraction action class.
*/
public class SubtractAction extends BaseCalcAction {
public SubtractAction(String number, String text) {
super(number, text);
}
/**
*Execution of subtraction.
*
* @param calculate Class... | [
"vovkammmorkovka@gmail.com"
] | vovkammmorkovka@gmail.com |
5cebf08b0b0cf18bdc8faf0f0612385be89bc353 | 97b0fe480c5ec6cc1720b712ffc77cceca35470d | /src/main/java/me/maxct/asset/dto/LoginVO.java | 672bb9a6c63eb97d9380e7f7f163801282e2c8c9 | [] | no_license | MaoLeYuu/asset-1 | a83683d6e71dabf393363e72459973c9c65a6ca0 | da63c366bc0eedf2d9e12695229adfa6dd80dab4 | refs/heads/master | 2020-07-27T18:32:27.379416 | 2019-05-14T14:06:34 | 2019-05-14T14:06:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 342 | java | package me.maxct.asset.dto;
import lombok.Data;
/**
* @author imaxct
* 2019-03-28 19:41
*/
@Data
public class LoginVO {
private Long id;
private String username;
private String name;
private String token;
private Long expireSecond;
private String depName;
private RoleVO role;
pr... | [
"imaxct@hotmail.com"
] | imaxct@hotmail.com |
c5ca75282003a98ecf1ae4f664c255e5d197c07d | 05f5127477eff81bf362233f617186252eed46ae | /fun/android/tant-card/src/com/shimoda/oa/util/importer/IDataImportResponse.java | 6aa7c96e1c47db996fe3e329edac3c9eb8a250f0 | [] | no_license | wangym/labs | 2473b16d322c0ae070b5d632d5965686903ee1b3 | b29270e8adf777aa8bdd05b4840949159fff1469 | refs/heads/master | 2020-12-19T23:55:37.155115 | 2016-11-21T07:36:33 | 2016-11-21T07:36:33 | 10,281,534 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 370 | java | package com.shimoda.oa.util.importer;
import java.util.List;
import com.shimoda.oa.model.SourceContactListVO;
public interface IDataImportResponse {
public void onImportDataComplete(List<SourceContactListVO> contactList, int imported, int current);
public void onImportDataFinish(int imported);
pu... | [
"chinawym@gmail.com"
] | chinawym@gmail.com |
a3f0224d29dd2fd97f06d1bc6f4289b84150a5cb | f0757b5f6006d2b413aa9ede33d09f33dc954f23 | /textbook_examples/ch08/fig08_07_09/src/Date.java | 47b8c213e397738a3439667da6f02e63f4aa426d | [] | no_license | rdfarwell/Software-Design-Spring-2020 | 7b53e02bb8d3511d0145dae33fa55910e5cf6952 | 86ae23d5e7954d063b21c448130bd01035912db2 | refs/heads/master | 2022-12-19T00:18:56.763541 | 2020-09-30T23:21:20 | 2020-09-30T23:21:20 | 279,748,324 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,592 | java | // Fig. 8.7: Date.java
// Date class declaration.
public class Date {
private static final int[] daysPerMonth =
{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
private int month; // 1-12
private int day; // 1-31 based on month
private int year; // any year
// constructor: confirm... | [
"hans.j.johnson@gmail.com"
] | hans.j.johnson@gmail.com |
050e7c420d84f38f9ae40061820208ad6a54151b | bf32bc8d88dba3f3fd9e25ee670b44233dce7a46 | /app/src/main/java/com/firatnet/wst/adapter/RecyclerAllPostsCardAdapter.java | 1a724c484bc70af5caee1c82f349acf18e63fe7c | [] | no_license | amroshehk/WTS | af46167b3c1be5cc85c6178f933f4fd68f8fa603 | 2c48314eca0725e67227d78c6beb3f235aaffbe6 | refs/heads/master | 2020-05-30T07:41:20.694714 | 2019-10-16T19:52:41 | 2019-10-16T19:52:41 | 189,602,436 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,073 | java | package com.firatnet.wst.adapter;
import android.annotation.SuppressLint;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget... | [
"amroshehzen@hotmail.com"
] | amroshehzen@hotmail.com |
b3eed91ec6cdee6d1e191ad267e8d5094dfdaf7d | 757ff0e036d1c65d99424abb5601012d525c2302 | /sources/com/fimi/album/widget/CustomVideoView.java | 0352c22c5f2e58d79076fe1e9b0041910ec6217f | [] | no_license | pk1z/wladimir-computin-FimiX8-RE-App | 32179ef6f05efab0cf5af0d4957f0319abe04ad0 | 70603638809853a574947b65ecfaf430250cd778 | refs/heads/master | 2020-11-25T21:02:17.790224 | 2019-12-18T13:28:48 | 2019-12-18T13:28:48 | 228,845,415 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 22,905 | java | package com.fimi.album.widget;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.graphics.Bitmap;
import android.graphics.SurfaceTexture;
import android.media.AudioManager;
import android.media.MediaPlayer;
impor... | [
"you@example.com"
] | you@example.com |
29cc013f6119244e8113eee8fadf19be85fef42e | cab20f5d0bc94f5b2db00f5000482b316e5a5522 | /src/main/java/com/youngxpepp/instagramcloneserver/global/error/ErrorCode.java | 80aa408532b7aa8ff637fc12b0a6d6635457af53 | [] | no_license | leesangsuk-cloud/instagram-clone-server | afbf8cd459f9750b75f918e95a9abe9509e34e91 | 9692692ddc99a0bbbee07a2aaacbe2a72eeba0ea | refs/heads/master | 2023-04-03T13:11:41.177142 | 2021-04-15T07:47:43 | 2021-04-15T07:47:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,823 | java | package com.youngxpepp.instagramcloneserver.global.error;
import lombok.Getter;
import org.springframework.http.HttpStatus;
@Getter
public enum ErrorCode {
INVALID_INPUT_VALUE(1000, HttpStatus.BAD_REQUEST, "Invalid input value"),
METHOD_NOT_ALLOWED(1001, HttpStatus.METHOD_NOT_ALLOWED, "Method is not allowed"),
EN... | [
"youngxpepp@gmail.com"
] | youngxpepp@gmail.com |
8adcf8c78b5769b3f19fe83491ed540c0f625d04 | 1cc621f0cf10473b96f10fcb5b7827c710331689 | /Ex6/Procyon/com/jogamp/common/util/RunnableExecutor.java | 0f56e557f673251378dfe3f9d65971ab4353799e | [] | no_license | nitaiaharoni1/Introduction-to-Computer-Graphics | eaaa16bd2dba5a51f0f7442ee202a04897cbaa1f | 4467d9f092c7e393d9549df9e10769a4b07cdad4 | refs/heads/master | 2020-04-28T22:56:29.061748 | 2019-06-06T18:55:51 | 2019-06-06T18:55:51 | 175,635,562 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 484 | java | //
// Decompiled by Procyon v0.5.30
//
package com.jogamp.common.util;
public interface RunnableExecutor
{
public static final RunnableExecutor currentThreadExecutor = new CurrentThreadExecutor();
void invoke(final boolean p0, final Runnable p1);
public static class CurrentThreadExecutor imple... | [
"nitaiaharoni1@gmail.com"
] | nitaiaharoni1@gmail.com |
50d058d6694f851be1d910d665488058e6294404 | 03518d7dc5c799c7db419f3ad7fa15a3a8fe2af6 | /src/main/java/com/sri/ai/expresso/helper/FunctionApplicationContainsArgumentSatisfying.java | d8a3a5cbc0caa712d894c1b8d1162a08e39b6cc6 | [
"BSD-3-Clause"
] | permissive | aic-sri-international/aic-expresso | 35b158baee37fa832b9877c057a1cb6ae3d2f7a9 | 01b0bbc33c2ad37fea12a645cbc6105abc7e5352 | refs/heads/master | 2021-01-23T18:24:18.454471 | 2018-11-01T06:59:38 | 2018-11-01T06:59:38 | 35,304,890 | 9 | 1 | BSD-3-Clause | 2020-10-13T10:06:31 | 2015-05-08T22:27:48 | Java | UTF-8 | Java | false | false | 2,577 | java | /*
* Copyright (c) 2013, SRI International
* All rights reserved.
* Licensed under the The BSD 3-Clause License;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://opensource.org/licenses/BSD-3-Clause
*
* Redistribution and use in... | [
"rodrigobraz@gmail.com@3d43a1d2-4736-3da3-5e10-20935d0d7c2c"
] | rodrigobraz@gmail.com@3d43a1d2-4736-3da3-5e10-20935d0d7c2c |
2e5a0eeb6504e6f8361f3f8ef328aaf28bde7a55 | 97d8cb35e0648aa25708146f4cefd4661cdda71a | /Zadanie03_game/src/StrangeWorld.java | 14092467264d49b72d91dde8b4c69f8206278bfe | [] | no_license | JakubKosmaty/java | 5a23e9465344020bcf9f74cee29e00f53f8c5791 | ce3251ade2dbfdc27870d6e5870298fde15fbdc4 | refs/heads/main | 2023-02-27T20:35:24.673052 | 2021-02-03T22:09:27 | 2021-02-03T22:09:27 | 306,304,941 | 0 | 0 | null | 2020-10-22T12:41:41 | 2020-10-22T10:43:23 | Java | UTF-8 | Java | false | false | 4,959 | java | public class StrangeWorld implements StrangeWorldInterface{
private PhysicsInterface[] physicsInterface;
private int mapSize;
@Override
public void setSize(int size) {
if (size <= 0) {
return;
}
mapSize = size;
physicsInterface = new PhysicsInterface[mapSize... | [
"jacobkosmaty@gmail.com"
] | jacobkosmaty@gmail.com |
d90bee46b1b4db6a0569315194a26e56182a3fa5 | 08be78ee28957fe393bea727228fbe13e5c00df1 | /modules/webcloud/modules/webcloud-pseudocode/src/main/java/com/pseudocode/cloud/zuul/filters/pre/PreDecorationFilter.java | 06b9cf3bca824c2a1b300ce9a7016e4e02c794ce | [] | no_license | javachengwc/java-apply | 432259eadfca88c6f3f2b80aae8e1e8a93df5159 | 98a45c716f18657f0e4181d0c125a73feb402b16 | refs/heads/master | 2023-08-22T12:30:05.708710 | 2023-08-15T08:21:15 | 2023-08-15T08:21:15 | 54,971,501 | 10 | 4 | null | 2022-12-16T11:03:56 | 2016-03-29T11:50:21 | Java | UTF-8 | Java | false | false | 12,283 | java | package com.pseudocode.cloud.zuul.filters.pre;
import java.net.MalformedURLException;
import java.net.URL;
import javax.servlet.http.HttpServletRequest;
import com.pseudocode.cloud.zuul.filters.Route;
import com.pseudocode.cloud.zuul.filters.RouteLocator;
import com.pseudocode.cloud.zuul.filters.ZuulProperties;
imp... | [
"chengz@ccc.com"
] | chengz@ccc.com |
d7ef70c9a0541501cca7a3ec10d3a25cd6abe6f5 | 5aa5db9516419cec1c28846a3e8ee5905f6425d7 | /app/src/main/java/com/malcolm/portsmouthunibus/ui/timetable/TimetableViewModel.java | 648c6671b3c1f45d7299f174f92a11f07ba82282 | [] | no_license | malodita/portsunibusandroid | 27ebf5e7b09c86dc245aa500b1892f3ad42b9e91 | fb8ae060d9d18aee595c448ff78263efb14628e0 | refs/heads/master | 2021-01-11T21:58:28.925500 | 2018-08-28T13:08:29 | 2018-08-28T13:08:29 | 78,887,669 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,733 | java | package com.malcolm.portsmouthunibus.ui.timetable;
import android.app.Application;
import com.malcolm.portsmouthunibus.App;
import com.malcolm.unibusutilities.entity.Times;
import com.malcolm.unibusutilities.repository.MainRepository;
import java.util.List;
import androidx.annotation.NonNull;
import androidx.lifecy... | [
"malodita@gmail.com"
] | malodita@gmail.com |
5856a9790d9e7a4b0c1a00470449234cd86f090e | 741f751c0475eb1a86b46fa449810f7eb3f3d86a | /v2/googlecloud-to-googlecloud/src/main/java/com/google/cloud/teleport/v2/values/PartitionMetadata.java | 34bd28b12910e7cf84a44c212b7e585eabf43801 | [
"Apache-2.0"
] | permissive | mkuthan/DataflowTemplates | 7f844f349cfc589cb899b90de700175975812442 | 0f2353979e797b811727953d3149f50531d87048 | refs/heads/master | 2022-05-21T01:34:52.726207 | 2022-05-05T13:45:52 | 2022-05-05T13:46:26 | 226,102,831 | 0 | 0 | Apache-2.0 | 2019-12-05T12:58:23 | 2019-12-05T12:58:22 | null | UTF-8 | Java | false | false | 2,047 | java | /*
* Copyright (C) 2021 Google LLC
*
* 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... | [
"cloud-teleport@google.com"
] | cloud-teleport@google.com |
5103b98279a42ce772ca88df47831093651ca8e7 | 89f9784a63188126ec0be0eed42fc8f5aa558420 | /src/test/java/com/udemy/uat/stepdefs/SignUpStepDefinitions.java | 1373ba2218dbeb83f1a333f86f7a92ad7eee838d | [] | no_license | cgrkhrmn/UdemyMentoringMac | 5f5f6ef55fead780c986e1f44c840cb9dfc7b142 | 35a2bca444cd67394ae929b71248a50e7a36fd9c | refs/heads/master | 2021-07-05T20:54:05.945114 | 2017-09-27T20:15:06 | 2017-09-27T20:15:06 | 105,060,123 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,729 | java | package com.udemy.uat.stepdefs;
import java.util.Random;
import java.util.Scanner;
import java.util.concurrent.TimeUnit;
import org.junit.Assert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDrive... | [
"ckahramanqa@gmail.com"
] | ckahramanqa@gmail.com |
bc042050cdfca87887d90aeb37fd912612037294 | f4ae768f4a7075bb745af3bba676ac7ffb1be1b1 | /src/TestNGFeatures/SoftAsserts.java | 191b422e6df83c9fd8647211c65a14f8b31bc44a | [] | no_license | yahyagit/MyFirst | f6b9a0bbbb4c7b9775fc66c7aae7d80085ce7994 | f6676e1ba92dad0a58179c8408d035220382081c | refs/heads/master | 2020-03-30T18:25:26.622276 | 2017-07-11T07:25:36 | 2017-07-11T07:25:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 963 | java | package TestNGFeatures;
import org.testng.Assert;
import org.testng.annotations.Test;
import org.testng.asserts.SoftAssert;
public class SoftAsserts {
private SoftAssert softA = new SoftAssert();
@Test(priority=0)
public void testCase1() {
Assert.assertEquals("Msg", "Msg");
System.out.println("Msg");
... | [
"kdimuthu@gmail.com"
] | kdimuthu@gmail.com |
2fa9b1f9ddb7955a1426d0524b9f74b257982c49 | 31103a55a8df56417108b2d401395e2c07844cb4 | /base/src/au/id/villar/mp3Sorter/id3/frames/ENCR.java | 8aa98bfb4186ed7fbb2577efe08e22398277f06b | [] | no_license | morgano5/morgano-tags | 92fc81eb8040ccbb2dd3b0c3e6dbe80758a23d99 | bba3e3613ee2388b6454617b60aab40ac585669b | refs/heads/master | 2021-01-01T17:56:58.734068 | 2013-06-29T04:17:21 | 2013-06-29T04:17:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,404 | java | package au.id.villar.mp3Sorter.id3.frames;
import au.id.villar.mp3Sorter.id3.ID3Reader;
import au.id.villar.mp3Sorter.id3.InvalidTagException;
import java.io.IOException;
public class ENCR extends Frame {
private String ownerId;
private int methodSymbol;
private byte[] encryptionData;
public ENCR(FrameHeader h... | [
"morgano5@gmail.com"
] | morgano5@gmail.com |
3f89f3ac85fbbf49bd599b54049995e300120fe8 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/1/1_53fde7739b00630f9767bb7163ae554d28cbb320/GmlHandlerTest/1_53fde7739b00630f9767bb7163ae554d28cbb320_GmlHandlerTest_t.java | b250b18ebf2c9ba83f4477944562c4ddef0c7127 | [] | 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 | 9,550 | java | /*
* HUMBOLDT: A Framework for Data Harmonisation and Service Integration.
* EU Integrated Project #030962 01.10.2006 - 30.09.2010
*
* For more information on the project, please refer to the this web site:
* http://www.esdi-humboldt.eu
*
* LICENSE: For information on the license under ... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
b2ef6c7eae671d679b1647491debc755f9c7ad3c | 338c38883ba840234f824fbe054ab6c8b93d175a | /build/generated-sources/jax-rpc/webservice/LyricWikiPortType_getHometown_ResponseStruct_SOAPBuilder.java | 215d4606982a44bd5b288efc2356d6d169357a10 | [] | no_license | prem315/LyricHound | 817491a7de6f5ae058ab4a00c0da8c60b45a9528 | 9013a78e00e2202cd21ba82365f07796a298548d | refs/heads/master | 2020-06-09T04:16:11.341008 | 2015-04-05T11:07:35 | 2015-04-05T11:07:35 | 33,021,823 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,791 | java | // This class was generated by the JAXRPC SI, do not edit.
// Contents subject to change without notice.
// JAX-RPC Standard Implementation (1.1.3, build R1)
// Generated source version: 1.1.3
package webservice;
import com.sun.xml.rpc.encoding.*;
import com.sun.xml.rpc.util.exception.LocalizableExceptionAdapter;
pu... | [
"patel.prem3105@gmail.com"
] | patel.prem3105@gmail.com |
123e8cffd73629c2277fa254e15e2ace55e75cd2 | 3bfe01d2bf6e994730ae1ec3ea2e5c8cc7258253 | /Main.java | 5b8b4fb22fb973de7c242a38187ba6abe79bb47f | [] | no_license | AsadRizvi97/snp-identifier | 63e6ea0599a5597382ed11bd1d377492443372c8 | f9d06e43d10478b6b1a1b031c641d1b0bf88d888 | refs/heads/master | 2022-02-01T12:37:27.891909 | 2019-05-12T00:17:43 | 2019-05-12T00:17:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,648 | java | import java.util.Arrays;
import java.util.LinkedList;
import edu.princeton.cs.algs4.In;
public class Main {
private LinkedList<Chromosome> chromosomes; //Store chromosomes as linked list
private int numberOfSamples; //Store number of samples for print()
public Main(String[] dataFiles) {
LinkedList... | [
"34251237+AsadRizvi97@users.noreply.github.com"
] | 34251237+AsadRizvi97@users.noreply.github.com |
59b10665f158fac588876aabf9e11020c926febe | acf08ff60743111b2e572586b28a1b945952057c | /java-eclipse/FabricaDeCarros/FabricaDeCarros/src/progprinciapl/Principal.java | 1d955eb7f4613aa2110eb3b94e8e40ba16794687 | [] | no_license | nada-pont-com/Arquivos | f24b34536c266b4fff8d8ae5d39cfe3903f06443 | 587b739d2d55d470993c9cf67c3a010dd61097e2 | refs/heads/master | 2020-03-30T02:29:34.844853 | 2019-08-09T04:11:08 | 2019-08-09T04:11:08 | 150,633,370 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 166 | java | package progprinciapl;
import interfacegrafica.Acao;
public class Principal {
public static void main(String[] args) {
Acao acao = new Acao();
acao.menu();
}
}
| [
"nada.pont.com@gmail.com"
] | nada.pont.com@gmail.com |
6c5635f51c586e7a9ab2a82cb7bbb987bd419b07 | dc13b04749065664cbd1edb38cf6148a8d6262f5 | /kwdautomation/src/test/java/operations/ReadXLData.java | b81ed36b8a191ed34a3f389d5b47556c45453509 | [] | no_license | deepthi021/SeleniumTests | 78e10e7b78e0161f8f38b443090473de0a4e3b8b | 2cd6891d739eb43fd252bfa293c7b780e389ad53 | refs/heads/master | 2023-05-08T07:10:51.265605 | 2021-05-29T18:56:49 | 2021-05-29T18:56:49 | 370,114,598 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,105 | java | package operations;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.userm... | [
"deepthito@gmail.com"
] | deepthito@gmail.com |
92a03352b357950f63f853757cca7bb62707e6de | 0818a56ae2c4be2c0cd5a5d4ca682091546645d0 | /src/main/java/services/FolderService.java | f29b0d792d9783e5f793fe7dd73d96625189e146 | [
"MIT"
] | permissive | juagarfer4/Condominium-Manager | a68af660e2a9fb8904b8c48ad285db9c69812e8b | 8e944d57af0832aac9bcd9c8331d329ec91d2105 | refs/heads/master | 2021-07-07T11:33:00.207263 | 2017-09-29T22:32:25 | 2017-09-29T22:32:25 | 105,249,749 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,067 | java | package services;
import java.util.ArrayList;
import java.util.Collection;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.Assert;
import domain.Folder;
impor... | [
"juanitogarciaman@gmail.com"
] | juanitogarciaman@gmail.com |
97333c14d3dcc6b1be0f9c71d6cc2f29f53ab603 | c54062a41a990c192c3eadbb9807e9132530de23 | /solutions/attributes/src/main/java/attributes/book/BookMain.java | f4711ebefe1a21ff03f1327e3cd8680abfc60efa | [] | no_license | Training360/strukturavalto-java-public | 0d76a9dedd7f0a0a435961229a64023931ec43c7 | 82d9b3c54437dd7c74284f06f9a6647ec62796e3 | refs/heads/master | 2022-07-27T15:07:57.915484 | 2021-12-01T08:57:06 | 2021-12-01T08:57:06 | 306,286,820 | 13 | 115 | null | null | null | null | UTF-8 | Java | false | false | 274 | java | package attributes.book;
public class BookMain {
public static void main(String[] args) {
Book book = new Book("Egri csillagok");
System.out.println(book.getTitle());
book.setTitle("1984");
System.out.println(book.getTitle());
}
}
| [
"viczian.istvan@gmail.com"
] | viczian.istvan@gmail.com |
bb9ab754256338c51287913b18b69ba91a5db19b | 12835ef1fa75d48a9da56272918ddb0716952820 | /controle-core/src/org/csi/controle/core/entrega/Correios.java | 72b663f45fc2887e5d88864d95ae07a34b4ed07a | [
"Apache-2.0"
] | permissive | carlettibruno/workorder-control | b56b0ee557fe1d46a6637d0518cfebebe9f0424b | 901a23306fb24c898eed2b1dceed9ebc8bf1eb2e | refs/heads/master | 2022-12-06T08:06:29.077656 | 2019-06-25T16:39:44 | 2019-06-25T16:39:44 | 121,046,073 | 0 | 0 | Apache-2.0 | 2022-11-16T06:24:48 | 2018-02-10T19:18:10 | Java | UTF-8 | Java | false | false | 242 | java | package org.csi.controle.core.entrega;
import java.util.List;
import org.csi.rastreamento.correios.entidade.Evento;
public class Correios extends Entrega {
@Override
public List<Evento> getEventos() {
return null;
}
} | [
"carletti.bruno@gmail.com"
] | carletti.bruno@gmail.com |
1f33c1ad4fa57b0e53a305801c01f7e77f5d649d | 8be6b27a6cd6d91f56a0568deb249b811eb0e068 | /SampleCode_AndroidStudio/AndroidStudioSampleCode/supermapAR/src/main/java/com/google/ar/core/supermap/java/common/rendering/ShaderUtil.java | 7ad491f09307c089a3e5bab63f159b1f234ce659 | [] | no_license | LittleSpark2018/iMobile-SampleCode | 76daaeaaa907547dfa3e51ac4f226194b76ce8b2 | 3ca4e50831d1fb1029b76618b1e299167a247316 | refs/heads/master | 2022-04-04T21:36:35.864571 | 2020-02-19T07:05:46 | 2020-02-19T07:05:46 | 270,269,483 | 1 | 0 | null | 2020-06-07T10:23:47 | 2020-06-07T10:23:47 | null | UTF-8 | Java | false | false | 3,351 | java | /*
* Copyright 2017 Google Inc. 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 applicable l... | [
"wangli_hbhs@163.com"
] | wangli_hbhs@163.com |
2d58c72461a800e6bd12a7c329d33a0669b204d6 | 003d7938bc369519f593b21c477b5b3e68a3d343 | /app/src/main/java/com/feedhenry/armark/Adaptadores/Adaptador_Almacen.java | 8003da63c9d1208b8838d3577661a1b2af18d4f1 | [
"Apache-2.0"
] | permissive | breinergonza/conexion_serv | 1581c1c7b6965adf86787c8471628dce5e6c2c9f | 2052c90442edcdd624b65ff1463d2b950d642e9b | refs/heads/master | 2021-01-11T01:50:53.488192 | 2016-10-23T20:12:32 | 2016-10-23T20:12:32 | 70,848,956 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,599 | java | package com.feedhenry.armark.Adaptadores;
import android.content.Context;
import android.database.Cursor;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import ... | [
"breinergonza@hotmail.com"
] | breinergonza@hotmail.com |
da30a6cc3fce470cbd3c4f5d84e38d68fd4636c8 | d8f2f3fe51a3ff82b89b53b53ff9eb1f9e590027 | /hadoop/page_rank/src/main/java/org/mdp/learn/hadoop/page_rank/PrDriver.java | 26585c9b111e44ff2562e7adab5df3e73243135b | [] | no_license | marcodippy/learning_hadoop | 64cc06e91e42003238f72a56070c868d2047f9a4 | 58569ee95688a22942b473c20868cc0809526752 | refs/heads/master | 2021-01-10T07:54:20.865853 | 2015-12-05T16:11:37 | 2015-12-05T16:11:37 | 44,393,404 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,962 | java | package org.mdp.learn.hadoop.page_rank;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;
import org.mdp.learn.hadoop.commons.HdfsUtils;
public class PrDriver extends Configured implements Tool {
public int run(S... | [
"dpl.marco@gmail.com"
] | dpl.marco@gmail.com |
f4592420ff7fd39a7911881e9023f3c0e10f28aa | 6ac25b8bdc3b080cd97d0e7d2fdf0f3d472e2024 | /binary-tree-paths/Solution.java | ca4339ddad712f6476de107989cbf6c179dc0263 | [] | no_license | jmazala/leetcode | 852e5fc9e8529ee059fcb031109431cd074d6a8f | 8a3bc5aa8fe827d5f63cab0f680a17500c2f90e0 | refs/heads/master | 2023-08-09T20:45:29.740162 | 2023-08-02T05:57:22 | 2023-08-02T05:57:22 | 252,583,974 | 0 | 0 | null | 2023-01-07T19:14:33 | 2020-04-02T23:06:42 | JavaScript | UTF-8 | Java | false | false | 1,080 | java | import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* Definition for a binary tree node. public class TreeNode { int val; TreeNode
* left; TreeNode right; TreeNode(int x) { val = x; } }
*/
class Solution {
List<String> answer;
public List<String> binaryTreePaths(TreeNode root) {
... | [
"mazala.2@osu.edu"
] | mazala.2@osu.edu |
1e363bad7a5b24818d11d82673a33031055c5311 | 4d9dbc6f814dc9aab8990d5bc517846c7545717c | /app/src/main/java/com/garethabrahams/garethabrahamsdevspace/AboutMeActivity.java | b134c8905a65ce0b02d3ce81661cf5a16962e51b | [] | no_license | GarethAbrahams/GarethAbrahamsDevSpace | cf637b63bca72cd37389a4c408a8c25658095967 | 9d282763e63a6de9bba2b65f275d8733287749f5 | refs/heads/master | 2022-11-27T04:40:51.232597 | 2020-07-30T19:05:13 | 2020-07-30T19:05:13 | 283,329,033 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,476 | java | package com.garethabrahams.garethabrahamsdevspace;
import androidx.appcompat.app.AppCompatActivity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class AboutMeActivity extends AppCom... | [
"garetha6@gmail.com"
] | garetha6@gmail.com |
b3530bf56b7624d914f6d8f813b2f43e31194a70 | 845661aeac1512abf1b3a0062eef4f432e1f0f3a | /g2-report-engine/src/main/java/com/googlecode/g2re/html/style/Font.java | 3c03dd520b5235295909ec0de492334be6f1b204 | [] | no_license | joshualucas84/g2-report-engine | 491f38f5eb0aa5c41effb674f52a1bac3766cecc | 25b6fd2917351a167ac98d90431224eff9e74e3f | refs/heads/master | 2021-09-08T14:26:44.979345 | 2009-06-15T23:18:37 | 2009-06-15T23:18:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,522 | java | package com.googlecode.g2re.html.style;
/**
* Defines how an elements font should be rendered
* @author Brad Rydzewski
*/
public class Font implements StyledElement {
private Color color;
private float pixels = -1;
private String fontFamily;
private FontStyle fontStyle;
priva... | [
"brad.rydzewski@81167618-2985-11de-8eb0-8789651ec4da"
] | brad.rydzewski@81167618-2985-11de-8eb0-8789651ec4da |
0cb1dfe1ad3d8ffda734ba38ec21ab1e206f18d3 | 803a81cbf3b2c615cbff2bb4a724b3672dd13cdf | /src/main/java/com/cda/gateway/config/CacheConfiguration.java | 47264e83767fca2bbb29aa9d8203c398b0f99052 | [] | no_license | mbobadilla/jhipster-wateway-application | 8ec5238fa4bc04bf1d94961286889962d52cf6bf | 02629cb9e0a6a1e93a3f996063c372d427d57124 | refs/heads/master | 2022-12-21T23:39:24.412381 | 2020-02-20T13:53:18 | 2020-02-20T13:53:18 | 241,896,645 | 0 | 0 | null | 2022-12-16T05:13:12 | 2020-02-20T13:53:02 | Java | UTF-8 | Java | false | false | 2,530 | java | package com.cda.gateway.config;
import java.time.Duration;
import org.ehcache.config.builders.*;
import org.ehcache.jsr107.Eh107Configuration;
import org.hibernate.cache.jcache.ConfigSettings;
import io.github.jhipster.config.JHipsterProperties;
import org.springframework.boot.autoconfigure.cache.JCacheManagerCusto... | [
"jhipster-bot@jhipster.tech"
] | jhipster-bot@jhipster.tech |
25f320ccd85a9d7dc4fd941253d689d3fa84501d | 995f73d30450a6dce6bc7145d89344b4ad6e0622 | /DVC-AN20_EMUI10.1.1/src/main/java/android/hardware/radio/V1_1/IRadioResponse.java | eec8946eb94bf6efcf407ee6dc56a46a2f63c2a9 | [] | 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 | 217,297 | java | package android.hardware.radio.V1_1;
import android.hardware.radio.V1_0.ActivityStatsInfo;
import android.hardware.radio.V1_0.Call;
import android.hardware.radio.V1_0.CallForwardInfo;
import android.hardware.radio.V1_0.CardStatus;
import android.hardware.radio.V1_0.CarrierRestrictions;
import android.hardware.radio.V1... | [
"dstmath@163.com"
] | dstmath@163.com |
5e876640500aef02f9d5b85c3c3b7aeddf0071ed | f474c2cef8eca505c5546e1d2bf898d886e147e0 | /src/main/command/MonitorableThread.java | 7aaed823969f41dd775558385df5d60152974e2a | [] | no_license | P2LGames/PGFramework | b081a937de4cdd4e4a5ddc76956123c5580f707a | 287523390b5ad5d6890a8c0b5a8992680ef8a021 | refs/heads/master | 2023-07-17T01:40:57.584118 | 2021-01-14T05:45:28 | 2021-01-14T05:45:28 | 314,078,167 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 238 | java | package main.command;
public interface MonitorableThread {
void run();
void start();
void stop();
int getEntityId();
byte[] compileTimeoutError();
boolean isFinished();
void setTimedOut(boolean timedOut);
}
| [
"sterling.long@lztek.io"
] | sterling.long@lztek.io |
4fd9e46b8ae09a2e8a08975b55329d067123af2b | 65595359a577e7b77e532adc60519ba1ba00cbd7 | /app/src/main/java/com/gsplayer/persistance/source/sqlite/CounterSqlite.java | ab96759357555cda520d8d9221d87832a792a56c | [] | no_license | celluloid90/GSPlayer | d347200eb2eda5238348b0be659e85430ac465fe | 38c4c93ed6bc52c09bdf46a063c75fe8b73465f9 | refs/heads/master | 2021-01-10T13:26:29.766086 | 2016-03-24T10:42:16 | 2016-03-24T10:42:16 | 54,632,361 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,037 | java | package com.gsplayer.persistance.source.sqlite;
import android.database.Cursor;
import com.gsplayer.persistance.source.relational.Table;
import com.gsplayer.persistance.source.sql.Counter;
/**
* TURTLE PLAYER
* <p/>
* Licensed under MIT & GPL
* <p/>
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIN... | [
"shahinoor.shahin@bjitgroup.com"
] | shahinoor.shahin@bjitgroup.com |
333913d5a481b2b724c9be02e4eb52538ef806f6 | f8c8707eeb0719e3f75e745fcbf8597745008b47 | /java code/eclipse-workspace/springboot-data/src/main/java/com/edubridge/springboot/data/service/DepartmentService.java | 2d6c2820eeb4898dbaf3ff120e445aa107ed7246 | [] | no_license | gousiya669/edubridgeprojects | 3dd296d5f83145d59823ad25a2d5239af88c4357 | 363a0cef5d3b4d9e214296e2edad7932fe9701c3 | refs/heads/master | 2023-08-12T20:18:12.974442 | 2021-10-05T16:50:36 | 2021-10-05T16:50:36 | 384,156,276 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 449 | java | package com.edubridge.springboot.data.service;
import java.util.List;
import com.edubridge.springboot.data.entities.Department;
public interface DepartmentService {
public Department saveDepartment(Department department);
public List<Department> getAllDepartments();
public Department getDepartmentById(int deptId)... | [
"gousiya.webd@gmail.com"
] | gousiya.webd@gmail.com |
e69600ab7bd5554375dbaa92dae2bf5be5010aeb | 7e953bd2ce9f2bf1364e1bd09e2763723b46db65 | /src/main/java/core/utilities/General.java | 8939c8c8197689c3703836d3fd2110f6b0ec6d09 | [] | no_license | KOM-Framework/kom-java | a1f1904a6caa0d5c5b1611836312bb2441589096 | 5a8c4919db5506ba1bd8073fb95c13dce608de5a | refs/heads/master | 2020-04-05T13:01:57.868635 | 2017-07-04T14:25:20 | 2017-07-04T14:25:20 | 95,032,450 | 0 | 0 | null | 2017-07-30T19:50:25 | 2017-06-21T18:07:59 | Java | UTF-8 | Java | false | false | 4,570 | java | package core.utilities;
import org.openqa.selenium.By;
import java.util.ArrayList;
/**
* Created by olehk on 07/04/2017.
*/
public class General {
public static String getMiddleValue(String originalString, String startSubStr, String endSubStr){
String out = originalString.substring(originalString.last... | [
"kuzovkov.oleg@gmail.com"
] | kuzovkov.oleg@gmail.com |
5474fe371349fe55493d9e640f956d983376ffb2 | 76326a5d4a7d74a46a20fb5fbc2be176d5767901 | /src/ChristianA2/OverrideParent.java | c50ea9807b6478d8ff3d50bc38fbde6ef1e21060 | [] | no_license | ChrisgetGit/Java.W2D4.Ekinci.Sander | 9a5511d3f93d11bd02d2f4d20438e0c0ca43d0c9 | 549c928ee869df388e0542b79c35b7811783a37a | refs/heads/master | 2022-11-08T20:52:58.071913 | 2020-07-09T12:55:01 | 2020-07-09T12:55:01 | 278,290,259 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 142 | java | package ChristianA2;
public class OverrideParent {
public void text (){
System.out.println("This is the parent class");
}
}
| [
"jimmyjaytscheina@gmail.com"
] | jimmyjaytscheina@gmail.com |
ad016ecaa3e7ccfe2f46ef9df832c05b204196f2 | 935cb9ac2e91ba4cf5d53746a787c73d4aa1d5b0 | /private_detective/src/privatedetective/FileHandler.java | 1be95160c99b9e170cf41452dba15a414fd915a4 | [] | no_license | galsa/my_play_ground | d568e812ba4c86d2cfc4ad108434be312eed1ec4 | cb53406a490e289a339f433af4bd45f2e3b432f7 | refs/heads/master | 2020-12-02T23:54:31.259804 | 2017-07-01T11:45:34 | 2017-07-01T11:45:34 | 95,960,069 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,602 | java | package privatedetective;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Set;
public class FileHandler {
public static String readFile(String file) throws Exception {
... | [
"noreply@github.com"
] | galsa.noreply@github.com |
5810cfd2eee559abcc24bc8229fe9fb4fc1b8c70 | fdab1c9c2e8325d5568a9c2f6938ae035c5a18ef | /src/chen/study/day07继承与多态/内部类/成员内部类的定义与使用/Demo01InnerClass.java | 5776900c27ba0ceab2808e4a84aa3571088c1cc8 | [] | no_license | 2199830642/Java-JavaWeb-Knowledge-points | 95be9504e925200e83caebf02f0137f09edd72fe | bf7a3c44843cb434550346c731a7faf9f2282962 | refs/heads/master | 2022-12-01T19:39:00.466558 | 2020-08-06T14:46:13 | 2020-08-06T14:46:13 | 284,613,470 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,199 | java | package chen.study.day07继承与多态.内部类.成员内部类的定义与使用;
/*
* 如果一个事物的内部 包含另一个事物,这就是一个类包括另外一个类
* :身体与心脏的关系,汽车与发动机
*
* 分类
* 1.成员内部类
* 2.局部内部类(包含匿名内部类)
*
* 1.成员内部类的格式:
* 修饰符 class 类名称{ 外部类名称
* 修饰符 class 类名称{} 内部类名称
* }
* 注意:内用外,随意使用,外用内,一定需要借助内部类对象
*
* 如何使用成员内部类:
* 1.间接使用:在外部类的方法中使用内部类,main只是调用外部类方法
* 2.... | [
"2199830642@qq.com"
] | 2199830642@qq.com |
bc7a78a6cd6953cd481bda35c62c7738947cdd45 | 6451616fab02a4b2326c471c52ff432958f44f3d | /conexionDB/src/conexiondb/conexionDB.java | 552c05c8526aad052468e26926b1751a8bc9bc35 | [] | no_license | jahazielBH/Practicas_de_Construcccion_SW | 843c4f034f27cae8843246d26c1c8cd1c2a66946 | 0acbd78b3dde54ac7e44428141a01b9877e74d2e | refs/heads/master | 2022-09-09T11:47:48.245601 | 2020-06-04T23:21:04 | 2020-06-04T23:21:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 979 | 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 conexiondb;
import java.sql.Connection;
import java.sql.DriverManager;
/**
*
* @author jahaziel, David, Gabriel
*/
public ... | [
"noreply@github.com"
] | jahazielBH.noreply@github.com |
d1a88f3d58d22b3c2c8a9192bb4ba7bd35bccaa1 | c6f0eb41af209775f264da0ae56e21d7b92d8c87 | /src/test/java/misc/migration/v1_1/EHistory3.java | a3756572a2f7e9be0761ef98ab8dd118539f63a2 | [
"Apache-2.0"
] | permissive | JakubPetr/ebean | 464d88fc466ef4e55258645c189923d99ce5d36f | 4fc47fcd19b568d348bd23a35348198092318094 | refs/heads/master | 2021-06-05T01:53:20.477413 | 2021-05-23T15:45:11 | 2021-05-23T15:45:11 | 136,032,319 | 0 | 1 | NOASSERTION | 2023-05-08T07:01:37 | 2018-06-04T13:51:53 | Java | UTF-8 | Java | false | false | 349 | java | package misc.migration.v1_1;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import io.ebean.annotation.History;
import io.ebean.annotation.HistoryExclude;
@Entity
@Table(name = "migtest_e_history3")
@History
public class EHistory3 {
@Id
Integer id;
@HistoryExc... | [
"robin.bygrave@gmail.com"
] | robin.bygrave@gmail.com |
cc275a0cb2cc7060098a37287eab394e36e54422 | 5433952408c865653c6b60212eaaa15c4bbab49c | /Util.java | 6ba0ff9f73977645734cf320533e17d1d20eca1b | [] | no_license | andrew-weinrich/questions | 176c42fcc797f2d95d840afb3a6322d082ada7ab | 03c2e54c61c9fe1b4ae607f286f5413372cbc245 | refs/heads/master | 2020-03-08T22:56:27.755028 | 2018-04-07T01:37:58 | 2018-04-07T01:37:58 | 128,447,358 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,166 | java |
public class Util {
// Converts a list to a string representation
//
// technically, we could just convert the expected and actual outputs to strings
// and then compare those strings, but that's not going to age well.
// better to just test the actual elements, and use the string rep for deb... | [
"andrew.weinrich@gmail.com"
] | andrew.weinrich@gmail.com |
9f1c950a6234bc3d78dd1f641b8071bb54b7792e | 8889e6727b6210c1f0c5c0cc0ccfd675207b4f1e | /app/src/main/java/com/okawa/pedro/toolbarpagerdemo/di/scope/Fragment.java | ec374433463dbb9c7b6162f9fdaf95652f5aec21 | [] | no_license | PedroOkawa/toolbar-pager-view | aee9bd2a7427ddfea09d747373827ff1904138ec | ad6687ec21eff5bf1b1963f98724cec85f7841a7 | refs/heads/master | 2021-01-10T16:03:22.682169 | 2016-02-28T00:22:56 | 2016-02-28T00:22:56 | 52,692,027 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 160 | java | package com.okawa.pedro.toolbarpagerdemo.di.scope;
import javax.inject.Scope;
/**
* Created by pokawa on 26/02/16.
*/
@Scope
public @interface Fragment {
}
| [
"pedro.henrique.okawa@gmail.com"
] | pedro.henrique.okawa@gmail.com |
c14455e878121aaf3636f4e7d0b0bdedbba03831 | dba87418d2286ce141d81deb947305a0eaf9824f | /sources/com/lowagie/text/Table.java | 7df6e3d9dbe5e2541fc5dc7a30a1bf7b65d1dacc | [] | no_license | Sluckson/copyOavct | 1f73f47ce94bb08df44f2ba9f698f2e8589b5cf6 | d20597e14411e8607d1d6e93b632d0cd2e8af8cb | refs/heads/main | 2023-03-09T12:14:38.824373 | 2021-02-26T01:38:16 | 2021-02-26T01:38:16 | 341,292,450 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 32,444 | java | package com.lowagie.text;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPTable;
import harmony.java.awt.Dimension;
import harmony.java.awt.Point;
import java.util.ArrayList;
import java.util.Iterator;
public class Table extends Rectangle implements LargeElement {
private int alignment;
... | [
"lucksonsurprice94@gmail.com"
] | lucksonsurprice94@gmail.com |
1ba37a690a15a806165627791a6c4cf247133f20 | f65400893b5d3a80bf1ede506694850a92c05b21 | /JavaStudy/src/ch12/IndexOf.java | 16b56b9cdec2ce2fff5e221d87f3c0e71512e047 | [] | no_license | fire216/JavaStudy | 9795e3d46d72cbdbb3c3be59a87ca26bb05b8b33 | a8f0d73994c6be20ee2b7101b5a12db8e721a614 | refs/heads/master | 2020-04-28T19:41:00.259026 | 2019-04-19T08:12:16 | 2019-04-19T08:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 561 | java | package ch12;
public class IndexOf {
public static void main(String[] args) {
// 0123456789
String text = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut al... | [
"Student@DESKTOP-EF9PEQ2"
] | Student@DESKTOP-EF9PEQ2 |
a74fff7eb54e2ee62437a87dd40c5fb2c71a8238 | c99ecaf5692a5dd3c4b6c5af8960b958ef61d22f | /excelClassExceptionDebug/src/jxl/Workbook.java | d03660e3c8238823bbaf89fb5c8f5e6ac5745109 | [] | no_license | bloomer024/Mobile-Development | afc00c65c7b3ae98ac93a2d2ab3e5b629a8e124f | d68fb0a556702e172f327ab3bc0da8d4be37034a | refs/heads/master | 2020-12-27T09:34:47.148817 | 2013-09-03T16:40:22 | 2013-09-03T16:40:22 | 37,514,253 | 1 | 0 | null | 2015-06-16T07:12:33 | 2015-06-16T07:12:32 | null | UTF-8 | Java | false | false | 12,899 | java | /*********************************************************************
*
* Copyright (C) 2002 Andrew Khan
*
* This library 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 2.1 of th... | [
"dani_go91@abv.bg"
] | dani_go91@abv.bg |
eaf3fbac45354f74a3550f194396ac60d80353d7 | 9479affecbead662a94096e06dc1e5df6058854b | /app/src/main/java/com/pdroid84/deb/locationbyplacesapi/MainActivity.java | f297afb98f0accce7416752fe6b517bc4d7aacda | [] | no_license | pdroid84/LocationByPlacesAPI | f3aa2ad96c5337ff8db1708c4f58921d4d6efb11 | 27da2773cfadd2c1abbbf6119220a3b6547619f9 | refs/heads/master | 2021-01-10T05:30:07.032885 | 2015-06-06T22:17:13 | 2015-06-06T22:17:13 | 36,996,858 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,489 | java | package com.pdroid84.deb.locationbyplacesapi;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
imp... | [
"pdroid84@gmail.com"
] | pdroid84@gmail.com |
8ea4e828d95add819c50ea16f550fce13b924859 | af6829eaea689efb7336d3cf11a9ddb36b284b92 | /src/com/fh/controller/weal/weal/WealController.java | e3629e10bbc857efb9af3ba753c79208d0efbe18 | [] | no_license | MrXT/erp | f336671aebf9c3f6702a1ca364e56cee64601df4 | c37f53a6183f14e34c3d159e28af56dc5dbcb5de | refs/heads/master | 2021-01-11T09:00:41.561800 | 2017-02-08T06:50:49 | 2017-02-08T06:50:49 | 77,453,295 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,475 | java | package com.fh.controller.weal.weal;
import java.io.PrintWriter;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import javax.servlet.... | [
"di.xiao@karakal.com.cn"
] | di.xiao@karakal.com.cn |
c82319f987d8a14c6f13d0e0862fe409f91bffa2 | 8469d2f71bc22fa2acf66a4bb05155c1d85282fa | /SapeStore/src/test/java/com/sapestore/controller/test/AccountControllerTest.java | 2f30b0a7ee7c3c141349a4a1ea5e1334eb119259 | [
"BSD-2-Clause"
] | permissive | rishon1313/sapestore | bce9f33ba16d82eb86be0a2567d92707b340a8c5 | 3f44263799e9abe279c6311a31d4df9209c9b59c | refs/heads/master | 2021-08-17T02:02:18.544939 | 2017-11-20T17:28:41 | 2017-11-20T17:28:41 | 104,585,570 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 4,729 | java | package com.sapestore.controller.test;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
import org.juni... | [
"root@localhost.localdomain"
] | root@localhost.localdomain |
a53acfd98e857dad47abf9fb8e92f34bcce79655 | 280da3630f692c94472f2c42abd1051fb73d1344 | /src/net/minecraft/src/BetterSnow.java | 6bd40b743afe638806128ccaaa6a901716a764cc | [] | no_license | MicrowaveClient/Clarinet | 7c35206c671eb28bc139ee52e503f405a14ccb5b | bd387bc30329e0febb6c1c1b06a836d9013093b5 | refs/heads/master | 2020-04-02T18:47:52.047731 | 2016-07-14T03:21:46 | 2016-07-14T03:21:46 | 63,297,767 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,913 | java | package net.minecraft.src;
import net.minecraft.block.*;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.resources.model.IBakedModel;
import net.minecraft.init.Blocks;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumFacing;
import net.minecraft.world.IBlockAccess;
... | [
"justanormalpcnoghostclientoranyt@justanormalpcnoghostclientoranyt-Aspire-XC-704"
] | justanormalpcnoghostclientoranyt@justanormalpcnoghostclientoranyt-Aspire-XC-704 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.