blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 390 | content_id stringlengths 40 40 | detected_licenses listlengths 0 35 | license_type stringclasses 2
values | repo_name stringlengths 6 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 539
values | visit_date timestamp[us]date 2016-08-02 21:09:20 2023-09-06 10:10:07 | revision_date timestamp[us]date 1990-01-30 01:55:47 2023-09-05 21:45:37 | committer_date timestamp[us]date 2003-07-12 18:48:29 2023-09-05 21:45:37 | github_id int64 7.28k 684M ⌀ | star_events_count int64 0 77.7k | fork_events_count int64 0 48k | gha_license_id stringclasses 13
values | gha_event_created_at timestamp[us]date 2012-06-11 04:05:37 2023-09-14 21:59:18 ⌀ | gha_created_at timestamp[us]date 2008-05-22 07:58:19 2023-08-28 02:39:21 ⌀ | gha_language stringclasses 62
values | src_encoding stringclasses 26
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 128 12.8k | extension stringclasses 11
values | content stringlengths 128 8.19k | authors listlengths 1 1 | author_id stringlengths 1 79 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b3abbcf54bf5d47a5dee11dc6ddb4054103f28b9 | af1ab3b6ed945a53742891afb85871f0df4bc0d1 | /03.IteratorsAndComparators/HomeworkIteratorAndComparators/src/p05_comparingObjects/Human.java | 4e6b9ea7ebe3bb9d3404e09f3db9d4f276413c8f | [] | no_license | vasilgramov/java-oop-advanced | 94f5321e89c0d9e446a80e1bff38947c22c5364d | 909ef2abfdd225db09f29e5fec578a1edd493006 | refs/heads/master | 2021-06-13T22:37:19.852587 | 2017-04-21T16:19:58 | 2017-04-21T16:19:58 | 84,982,046 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 147 | java | package p05_comparingObjects;
public interface Human extends Comparable<Human>{
String getName();
int getAge();
String getTown();
}
| [
"gramovv@gmail.com"
] | gramovv@gmail.com |
3824fbf22c3ec45a2ed6ce2757251f56646efc1b | ca87f2c2e46be07c54f5579b0bec802fa0daba49 | /src/main/java/com/demo/api/commons/exception/ErrorExcetpion.java | 2ef9068f8b8d57f2a8bfce1617bb4ef251e6cc73 | [] | no_license | wanghws/SpringBootMVC | 81f338c01f436b59f2b6e8161e1af0c9a84e888d | 9e9d6d550f187500114c4b103c446c830c46df53 | refs/heads/master | 2020-05-20T11:16:48.341745 | 2019-05-08T07:50:58 | 2019-05-08T07:50:58 | 185,546,224 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 329 | java | package com.demo.api.commons.exception;
import lombok.Getter;
import lombok.Setter;
/**
* Created by wanghw on 2019-03-11.
*/
public class ErrorExcetpion extends RuntimeException {
public ErrorExcetpion(String code){
super(code);
this.code = code;
}
@Getter
@Setter
private String... | [
"wanghws@gmail.com"
] | wanghws@gmail.com |
a016578b6cf833b9ae623e86007c93a1cd909cdb | c69043826d4239d1f7656cf9934e3b7c189d8476 | /src/main/java/io/github/jhipster/sample/repository/EntityWithServiceImplPaginationAndDTORepository.java | 298779c44873a09735d455b7133727e6a4de2496 | [] | no_license | pascalgrimaud/jh-vuejs-191015 | 51f2bcb1d68577d80a1722eb39ef9dff18433838 | 9b740d15d32091f691d94fc744d81ac23a72c23b | refs/heads/master | 2022-12-22T20:56:12.136726 | 2019-10-14T21:21:28 | 2019-10-14T21:21:39 | 215,213,636 | 0 | 0 | null | 2022-12-16T04:40:29 | 2019-10-15T05:25:48 | Java | UTF-8 | Java | false | false | 493 | java | package io.github.jhipster.sample.repository;
import io.github.jhipster.sample.domain.EntityWithServiceImplPaginationAndDTO;
import org.springframework.data.jpa.repository.*;
import org.springframework.stereotype.Repository;
/**
* Spring Data repository for the EntityWithServiceImplPaginationAndDTO entity.
*/
@Sup... | [
"pascalgrimaud@gmail.com"
] | pascalgrimaud@gmail.com |
3a0eb5d1645aba595e0cd9158185784050d926e0 | c46c4bab8f0411876e52eefd4502715924dbaed1 | /challenges/src/main/java/com/clozarr/hackerrank/thirtydaysofcode/StacksAndQueues.java | 9459ff1d413d0c39de0a676cee3cbb5f2f5b58a3 | [] | no_license | clozarr/HackerRankChallenges | e2c5a6388c20d5e34178693e789517edd66c4333 | 58956c75e9ca20a1432daf64ca7a8036336de5d5 | refs/heads/master | 2021-05-21T22:39:37.185586 | 2021-01-08T04:18:42 | 2021-01-08T04:18:42 | 252,835,972 | 0 | 0 | null | 2020-10-13T21:20:14 | 2020-04-03T20:39:48 | Java | UTF-8 | Java | false | false | 680 | java | package com.clozarr.hackerrank.thirtydaysofcode;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Stack;
/**
* <p>
* Challenge Day 18: Queues and Stacks
* </p>
*
* @see <a href= "https://www.hackerrank.com/challenges/30-queues-stacks/problem">
* Queues and Stacks</a>
*
*
* @author cl... | [
"="
] | = |
7412b8e09c76527111db347799477ba21d887663 | 8c81eeaa4bde7c4f9e402c1647940de5deb146fc | /src/firstReverseTry.java | 46a73cd847f6bd7d0b21ba6cf6c2fb8f377f19c1 | [] | no_license | Luciwar/Example | f4b51b53eef6189ba18ea7714f5ee38be4287864 | 15b5d4d48e930d75597555b1c9c128b8501812f4 | refs/heads/master | 2020-06-04T23:41:07.098593 | 2018-10-11T15:31:24 | 2018-10-11T15:31:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 635 | java | /*
Reversing an array can be a tough task, especially for a novice programmer. Mary just started coding, so she would like to start with something basic at first. Instead of reversing the array entirely, she wants to swap just its first and last elements.
Given an array arr, swap its first and last elements and retur... | [
"linhhoang13k@gmail.com"
] | linhhoang13k@gmail.com |
62d67a5a3cfb869092fc1fc636e430299d8f2566 | fed41971c78ff70c701d754cfd023e3ea671ee85 | /gd-api-web/src/main/java/com/gudeng/commerce/gd/support/SubsidyCallBack.java | 7678ffbe7ce6b5a390086d7fa8314e0ef831821c | [] | no_license | f3226912/gd | 204647c822196b52513e5f0f8e475b9d47198d2a | 882332a9da91892a38e38443541d93ddd91c7fec | refs/heads/master | 2021-01-19T06:47:44.052835 | 2017-04-07T03:42:12 | 2017-04-07T03:42:12 | 87,498,686 | 0 | 6 | null | null | null | null | UTF-8 | Java | false | false | 239 | java | package com.gudeng.commerce.gd.support;
import java.util.List;
import com.gudeng.commerce.gd.supplier.dto.ProductDto;
public interface SubsidyCallBack {
public void appendAuditInfo(List<ProductDto> refusedList) throws Exception;
}
| [
"253332973@qq.com"
] | 253332973@qq.com |
b488b1fb0ed066627c5ca20ac567016ba28ce598 | dc723ba04d723b077a723bebb02813b8009f6e9e | /system/services/frontend/website/fake-search-service/src/main/java/com/ssrn/frontend/website/fake_search_service/ServiceConfiguration.java | e69b0aba1cd98256b2fff0f8b66c9cecf626ce01 | [] | no_license | ngelsevier/preprint | e33247cb589d3de505f219d0242a3738d5455648 | 0a6a57bc962c29e277f105070977867280381d85 | refs/heads/master | 2020-03-20T23:42:53.825949 | 2018-06-19T08:06:36 | 2018-06-19T08:06:36 | 137,859,617 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 437 | java | package com.ssrn.frontend.website.fake_search_service;
import ch.qos.logback.classic.Level;
import io.dropwizard.logging.DefaultLoggingFactory;
public class ServiceConfiguration extends io.dropwizard.Configuration {
public ServiceConfiguration() {
DefaultLoggingFactory loggingFactory = new DefaultLoggingF... | [
"r.ng@elsevier.com"
] | r.ng@elsevier.com |
9342ce1a789188f522128638502b203a8ad13ec0 | 1186c55198844e28204b6044ec358cf571d8ec94 | /plugin/src/main/java/com/stratio/cassandra/lucene/schema/mapping/UUIDMapper.java | 790ee568c74bd1e80af91c1251dddff566fe6e25 | [
"Apache-2.0"
] | permissive | oscarruesga/cassandra-lucene-index | 9d71afa7c64124ef2b9265f334b476bcdac69e98 | ffd1394b55a2eb1e9d602529199b45c12797e781 | refs/heads/branch-2.1.11 | 2021-01-22T14:19:45.718443 | 2015-10-30T12:25:48 | 2015-10-30T12:25:48 | 45,298,471 | 1 | 0 | null | 2015-10-31T11:02:23 | 2015-10-31T11:02:23 | null | UTF-8 | Java | false | false | 3,757 | java | /*
* Licensed to STRATIO (C) under one or more contributor license agreements.
* See the NOTICE file distributed with this work for additional information
* regarding copyright ownership. The STRATIO (C) licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file... | [
"a.penya.garcia@gmail.com"
] | a.penya.garcia@gmail.com |
17f17d9949f5cad560b94bb810cecfee8123c303 | d60bd7144cb4428a6f7039387c3aaf7b295ecc77 | /ScootAppSource/com/google/android/gms/common/n.java | 1dfc25393c2cc30a9c734857985bdaadc8f70839 | [] | no_license | vaquarkhan/Scoot-mobile-app | 4f58f628e7e2de0480f7c41998cdc38100dfef12 | befcfb58c1dccb047548f544dea2b2ee187da728 | refs/heads/master | 2020-06-10T19:14:25.985858 | 2016-12-08T04:39:10 | 2016-12-08T04:39:10 | 75,902,491 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 812 | java | package com.google.android.gms.common;
import java.lang.ref.WeakReference;
abstract class n
extends l
{
private static final WeakReference<byte[]> b = new WeakReference(null);
private WeakReference<byte[]> a = b;
n(byte[] paramArrayOfByte)
{
super(paramArrayOfByte);
}
byte[] c()
{
try
... | [
"vaquar.khan@gmail.com"
] | vaquar.khan@gmail.com |
efea6870e449cc7e93d4fe67078568e71d1876a9 | 421f0a75a6b62c5af62f89595be61f406328113b | /generated_tests/model_seeding/92_jcvi-javacommon-org.jcvi.jillion.trace.sff.Sff454NameUtil-1.0-1/org/jcvi/jillion/trace/sff/Sff454NameUtil_ESTest.java | a10d97850a6e4edf1fc28968f9d7f1c90f9d0f32 | [] | no_license | tigerqiu712/evosuite-model-seeding-empirical-evaluation | c78c4b775e5c074aaa5e6ca56bc394ec03c2c7c6 | 11a920b8213d9855082d3946233731c843baf7bc | refs/heads/master | 2020-12-23T21:04:12.152289 | 2019-10-30T08:02:29 | 2019-10-30T08:02:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 660 | java | /*
* This file was automatically generated by EvoSuite
* Fri Oct 25 11:36:11 GMT 2019
*/
package org.jcvi.jillion.trace.sff;
import org.junit.Test;
import static org.junit.Assert.*;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;
@RunWith(Ev... | [
"pderakhshanfar@bsr01.win.tue.nl"
] | pderakhshanfar@bsr01.win.tue.nl |
2a672949a2851d4bec7d6f660031bf3d93bb440d | 608cf243607bfa7a2f4c91298463f2f199ae0ec1 | /android/versioned-abis/expoview-abi40_0_0/src/main/java/abi40_0_0/expo/modules/location/exceptions/LocationUnavailableException.java | 4b77f221558efeeef96603e3fc2ea4f7be4bdbd8 | [
"MIT",
"BSD-3-Clause",
"Apache-2.0"
] | permissive | kodeco835/symmetrical-happiness | ca79bd6c7cdd3f7258dec06ac306aae89692f62a | 4f91cb07abef56118c35f893d9f5cc637b9310ef | refs/heads/master | 2023-04-30T04:02:09.478971 | 2021-03-23T03:19:05 | 2021-03-23T03:19:05 | 350,565,410 | 0 | 1 | MIT | 2023-04-12T19:49:48 | 2021-03-23T03:18:02 | Objective-C | UTF-8 | Java | false | false | 495 | java | package abi40_0_0.expo.modules.location.exceptions;
import abi40_0_0.org.unimodules.core.interfaces.CodedThrowable;
import abi40_0_0.org.unimodules.core.errors.CodedException;
public class LocationUnavailableException extends CodedException implements CodedThrowable {
public LocationUnavailableException() {
sup... | [
"81201147+kodeco835@users.noreply.github.com"
] | 81201147+kodeco835@users.noreply.github.com |
13c326e187ecc918bc13de237499f626373b4aa8 | 4807c6e453fd2b19a9c02c2cbb96ec2eb301eab6 | /src/by/belhard/j20/lessons/lesson12/projectExample/exceptions/NoSuchPupilException.java | ece4db3ceb32d9ebc5af80e6b4fcae338403d81f | [] | no_license | anikalaeu/BH-J20 | ef2461cd856a3df306f114393e5435cba095c172 | 012370a85c3056570c8279f944626134264608bc | refs/heads/master | 2021-03-20T22:15:09.423997 | 2020-03-13T15:34:11 | 2020-03-13T15:34:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 204 | java | package by.belhard.j20.lessons.lesson12.projectExample.exceptions;
public class NoSuchPupilException extends RuntimeException {
public NoSuchPupilException(String message) {
super(message);
}
}
| [
"avangard.npaper@gmail.com"
] | avangard.npaper@gmail.com |
e523d0c58ef95caabe40205f286da597b8fc06f8 | 3027ab86acb71fe19b340ec90eb9be748ead09fb | /src/main/java/com/augurit/awater/bpm/sggc/web/form/GxSggcLogForm.java | 0004c7a387a4ee176a9dcf7d682a3c26a509be8e | [] | no_license | vae5340/psxj | fcb9275dc6ba539acfe8ab5f0bd6abc1990d4ca0 | da2a77fae82c958143af11375846e2a664a8b5bf | refs/heads/master | 2020-04-04T01:04:52.546318 | 2018-12-18T01:14:26 | 2018-12-18T01:14:26 | 155,666,904 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,909 | java | package com.augurit.awater.bpm.sggc.web.form;
import com.augurit.agcloud.bsc.domain.BscAttForm;
import com.augurit.awater.bpm.xcyh.report.web.form.DetailFilesForm;
import java.util.List;
public class GxSggcLogForm {
// 属性
private Long id;
private String lx;
private String username;
private Long time;
private S... | [
"1763352208@qq.com"
] | 1763352208@qq.com |
f82533c03e5520231b770431929735f848a7b726 | 003901a6b3d30751d1ac76798007e4c6830ffb74 | /commons/src/main/java/com/epam/eco/kafkamanager/ConfigValue.java | 8930c290524a8903447ad1b8011f8786f9bb8fb9 | [
"Apache-2.0"
] | permissive | octodemo/eco-kafka-manager | 45dce4ffe98366ba4784c9538709a1d98bc0c395 | a4c45edb0b2a7baff2f6ce9ac0a1ec517a1f19f6 | refs/heads/master | 2023-04-19T06:44:18.436606 | 2020-05-14T19:42:10 | 2020-05-14T19:42:10 | 264,008,635 | 0 | 0 | Apache-2.0 | 2021-04-26T20:46:19 | 2020-05-14T19:39:35 | Java | UTF-8 | Java | false | false | 3,420 | java | /*
* Copyright 2019 EPAM Systems
*
* 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 ... | [
"Andrei_Tytsik@epam.com"
] | Andrei_Tytsik@epam.com |
b25030a887ceffdadf6789934c7848a45f83bdcd | b86a2acf7782f14016a503e14c6b6d9b88025739 | /src/main/java/com/cxy/redisclient/dto/ContainerKeyInfo.java | 8dfc2322fe9a3a2bcccff624c8444e4c69ba94fa | [] | no_license | maximus0/redis-client | e933dbc70d7bbbcc5de17d8bc6561221fb36ed49 | 8ee744d22682c88a7c59ee05a28f95527ed060fe | refs/heads/master | 2020-04-12T23:51:22.733804 | 2014-07-30T05:58:48 | 2014-07-30T06:08:09 | 22,410,950 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,173 | java | package com.cxy.redisclient.dto;
import com.cxy.redisclient.domain.ContainerKey;
public class ContainerKeyInfo {
private int id;
private String serverName;
private int db;
private ContainerKey container;
public ContainerKeyInfo() {
super();
this.id = -1;
this.db = -1;
}
public int getId(... | [
"chenweichao@news.cn"
] | chenweichao@news.cn |
144745e808945b4578bfbe02390df394bde825e2 | 4dd29489cf8df3277a02b123f6f2b613c5692335 | /src/main/java/br/com/guilhermealvessilve/data/AuthorBook.java | 0290c21cf8a0014c5d75a4f6b9331243ce53dfdd | [] | no_license | guilherme-alves-silve/quarkus-data | 9fc376954a9ebd51a336fd4d821bf70af5c2029e | 564109de647a7a864a8b54a38d11357c78cde006 | refs/heads/master | 2022-10-08T10:25:49.695177 | 2020-06-11T19:20:48 | 2020-06-11T19:20:48 | 271,629,218 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,407 | java | package br.com.guilhermealvessilve.data;
import io.quarkus.hibernate.orm.panache.PanacheEntity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.hibernate.search.mapper.pojo.mapping.definition.annotation.FullTextField;
import org.hibernate.search.... | [
"guilherme_alves_silve@hotmail.com"
] | guilherme_alves_silve@hotmail.com |
31f2c38719b2c0bfa0d2198624ea61404fa96672 | d883f3b07e5a19ff8c6eb9c3a4b03d9f910f27b2 | /Tools/OracleJavaGen/src/main/resources/oracle_service_project/OracleDataService/src/main/java/com/sandata/lab/rest/oracle/model/PatientSupervisoryVisitFrequency.java | 80a955b74e5589da8153433f1efe2866e8c150f3 | [] | no_license | dev0psunleashed/Sandata_SampleDemo | ec2c1f79988e129a21c6ddf376ac572485843b04 | a1818601c59b04e505e45e33a36e98a27a69bc39 | refs/heads/master | 2021-01-25T12:31:30.026326 | 2017-02-20T11:49:37 | 2017-02-20T11:49:37 | 82,551,409 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,495 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// 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: 2016.11.... | [
"pradeep.ganesh@softcrylic.co.in"
] | pradeep.ganesh@softcrylic.co.in |
a75c6c1b254c6a1a8d95854687f90bbd8c6a4193 | 51843342781f18731b4e157364f8dacd087bb225 | /bus-base/src/main/java/org/aoju/bus/base/spring/BaseAdvice.java | 71874a15eb3b36ce43fc0605d9ee3b4d385a8e1b | [
"MIT"
] | permissive | Wuxiaonai/bus | ad14c32324387af25bf3d7e7e6aae64f130f0a83 | e1feaad25833b171769fa9aa0b53a300321a68f9 | refs/heads/master | 2020-07-05T23:54:53.751431 | 2019-08-17T01:32:53 | 2019-08-17T01:32:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,221 | java | /*
* The MIT License
*
* Copyright (c) 2017, aoju.org All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the right... | [
"839536@QQ.COM"
] | 839536@QQ.COM |
b34a67bcc29ec23b3074ac2b3fc798d6755308d6 | e45dabef127bf9d7c539a014b36c19c1f9f7e077 | /src/com/yayo/warriors/module/props/type/BlinkType.java | 09d2d457d61e12d8842f3d76d4703935d332bae0 | [] | no_license | zyb2013/Warriors | aaa26c89dde6b5777a8fcd3674d1ee61346ffda7 | 6ac80f1868d749295c298a36ad4b6425034d358f | refs/heads/master | 2021-01-01T19:46:57.730694 | 2014-01-17T01:41:45 | 2014-01-17T01:41:45 | 15,986,861 | 5 | 10 | null | null | null | null | UTF-8 | Java | false | false | 254 | java | package com.yayo.warriors.module.props.type;
/**
* 装备闪光效果
* @author liuyuhua
*/
public enum BlinkType {
/** 0 - 没有任何效果*/
NONE,
/** 1 - 全部装备7星 闪光*/
SEVEN,
/** 2 - 全部装备11星 闪光*/
ELEVEN;
}
| [
"zhuyuanbiao2013@gmail.com"
] | zhuyuanbiao2013@gmail.com |
510f93bcf8deeedb5fb7c82063a76544f5209249 | befde1e4446dec36af350e49bacac9cdb84e9d96 | /ymir-core/src/main/java/org/seasar/ymir/scope/impl/ComponentScope.java | 8b93527fed060247932e63b2089861b2a4db0adf | [] | no_license | seasarorg/test-ymir-component-1 | c6c9ae715b090edae3f994e602047d4086363661 | cb53d0e4c193b9a2211df16bfabdaf23665f24b7 | refs/heads/master | 2016-09-09T19:01:46.293634 | 2013-10-01T17:36:25 | 2013-10-01T17:36:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,519 | java | package org.seasar.ymir.scope.impl;
import java.util.ArrayList;
import java.util.Iterator;
import org.seasar.framework.container.S2Container;
import org.seasar.ymir.YmirContext;
import org.seasar.ymir.scope.Scope;
/**
* コンポーネントコンテナのスコープを表すクラスです。
* <p>このスコープを使うことで、コンポーネントコンテナからコンポーネントを取り出すことができます。
* </... | [
"skirnir@ce2cb714-bd0d-0410-8c66-e472ade7ad34"
] | skirnir@ce2cb714-bd0d-0410-8c66-e472ade7ad34 |
7da04b1c20f03dc2adc26bb881830f053ecc0321 | 88d421409ad168b4b6dfeb5b2e57f8186fe2dce4 | /src/main/java/com/isa/berkeley_starter/dao/EntityDao.java | fe95cac2abc49c39be98cae131a76ccaa3d84388 | [] | no_license | isaolmez/berkeley_starter | d557e9d2b76d4d619566322306f11eee12a9a7f2 | c7cf88a786ec36a9bc7089d0f0c6641a42f5f680 | refs/heads/master | 2021-01-09T20:12:18.260402 | 2016-08-05T11:13:45 | 2016-08-05T11:13:45 | 65,012,649 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 164 | java | package com.isa.berkeley_starter.dao;
public interface EntityDao<T, V> {
public V get(T key);
public void set(T key, V value);
public void delete(T key);
}
| [
"isaolmez@gmail.com"
] | isaolmez@gmail.com |
8a8f209fc904b646ce12cb19b9097bf164459a3d | d1a6d1e511df6db8d8dd0912526e3875c7e1797d | /genny_JavaWithoutLambdasApi21_ReducedClassCount/applicationModule/src/main/java/applicationModulepackageJava9/Foo651.java | 58d6e459b991746115bfe2398614e1317e072073 | [] | no_license | NikitaKozlov/generated-project-for-desugaring | 0bc1443ab3ddc84cd289331c726761585766aea7 | 81506b3711004185070ca4bb9a93482b70011d36 | refs/heads/master | 2020-03-20T00:35:06.996525 | 2018-06-12T09:30:37 | 2018-06-12T09:30:37 | 137,049,317 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 506 | java | package applicationModulepackageJava9;
public class Foo651 {
public void foo0() {
new applicationModulepackageJava9.Foo650().foo9();
}
public void foo1() {
foo0();
}
public void foo2() {
foo1();
}
public void foo3() {
foo2();
}
public void foo4() {
foo3();
}
public void f... | [
"nikita.e.kozlov@gmail.com"
] | nikita.e.kozlov@gmail.com |
76eba805f3278158575e323c99d0174282947c7a | 62ba58dc68ed8b764ade469cfb45ce62ca5db8a7 | /ThreeConsecutiveOdds.java | b6f31b7e95c86c00601d410a420c3140f630e608 | [] | no_license | SkyLoveAngle/LeetCodeTest | 77c108527914f785c7e6d321ae1231a05b95c90b | 4870bb93d6976cf002b506cd65f4d453b932db11 | refs/heads/main | 2023-06-02T12:24:24.696717 | 2021-06-26T01:28:39 | 2021-06-26T01:28:39 | 323,542,297 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,252 | java | package leetcode.editor.cn;
//给你一个整数数组 arr,请你判断数组中是否存在连续三个元素都是奇数的情况:如果存在,请返回 true ;否则,返回 false 。
// 示例 1:
// 输入:arr = [2,6,4,1]
//输出:false
//解释:不存在连续三个元素都是奇数的情况。
//
// 示例 2:
// 输入:arr = [1,2,34,3,4,5,7,23,12]
//输出:true
//解释:存在连续三个元素都是奇数的情况,即 [5,7,23] 。
//
// 提示:
// 1 <= arr.length <= 1000
// 1 <= arr[i] <= 1000
// ... | [
"1920909528@qq.com"
] | 1920909528@qq.com |
0cc6ad7f35dc04c773b368b5be6ccaf33af90235 | 775c85b59e6503ce58bac41a9fb15f2af410164e | /libgdx/src/main/java/com/badlogic/gdx/backends/iosbugvm/IOSDevice.java | 09b22f245324aab2c02b70b8e4078aa18791fda2 | [
"Apache-2.0"
] | permissive | ocadaruma/bugvm | 805c47c1298b5f87eb16726dd23712075ae3f004 | cb89c5b7fb2da992e8b2667456eab5054078d30e | refs/heads/master | 2020-12-26T00:06:12.548895 | 2016-04-19T05:55:05 | 2016-04-19T05:55:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,260 | java | package com.badlogic.gdx.backends.iosbugvm;
public enum IOSDevice {
IPHONE_2G("iPhone1,1", 163),
IPHONE_3G("iPhone1,2", 163),
IPHONE_3GS("iPhone2,1", 163),
IPHONE_4("iPhone3,1", 326),
IPHONE_4V("iPhone3,2", 326),
IPHONE_4_CDMA("iPhone3,3", 326),
IPHONE_4S("iPhone4,1", 326),
IPHONE_5("iPhone5,1", 326),
IPHON... | [
"github@ibinti.com"
] | github@ibinti.com |
538952dd377bff31fbc251b545f2178c9231523c | efde2d069224fa24c31e9024425218019b586731 | /src/main/java/org/apache/sysds/hops/NaryOp.java | d7b66ddf91d2395fee939ebe9444bfbfe21c01cc | [
"Apache-2.0"
] | permissive | muehlburger/systemml | 062bf8cbee23f02a010338308b2c13ba1402ff47 | c6d7a52e2e4259fa62ba8e0b15cdfe1397baac0f | refs/heads/master | 2022-11-10T02:17:59.890549 | 2020-06-23T20:46:05 | 2020-06-23T21:06:06 | 255,599,611 | 0 | 0 | Apache-2.0 | 2020-04-14T12:12:54 | 2020-04-14T12:12:53 | null | UTF-8 | Java | false | false | 7,781 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | [
"mboehm7@gmail.com"
] | mboehm7@gmail.com |
a33dfb536f5b16b5888aa9346dc1fe876ea585c4 | b60edef7a15590d579c8e37162e500e15f9cdf2f | /app/src/main/java/com/bowen/tcm/login/presenter/ForgetPasswordPresenter.java | 97df86df2ec14a8f64544d40d275297f6dcd3390 | [] | no_license | androiddeveloper007/ByOnline | f4c921bd4f1efbf9b82786b729143ab734a3e2fc | f015c8cb355eeaf23cfe7ff442a1b809e13507e8 | refs/heads/master | 2020-03-31T16:19:24.345222 | 2018-10-16T13:29:24 | 2018-10-16T13:29:24 | 152,370,417 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,579 | java | package com.bowen.tcm.login.presenter;
import android.content.Context;
import android.text.TextUtils;
import com.bowen.commonlib.base.BasePresenter;
import com.bowen.commonlib.http.HttpResult;
import com.bowen.commonlib.http.HttpTaskCallBack;
import com.bowen.commonlib.utils.CheckStringUtl;
import com.bowen.commonlib... | [
"zhu852514500@163.com"
] | zhu852514500@163.com |
4a0f40680ccf2481ecb87e6b32dc5c5f56ddd8cd | 3cee619f9d555e75625bfff889ae5c1394fd057a | /app/src/main/java/org/tensorflow/lite/examples/imagesegmentation/p000a/p013b/p020e/p028g/C0239g.java | 6c67262a66c86c1a2646a061a84d0b9406704163 | [] | no_license | randauto/imageerrortest | 6fe12d92279e315e32409e292c61b5dc418f8c2b | 06969c68b9d82ed1c366d8b425c87c61db933f15 | refs/heads/master | 2022-04-21T18:21:56.836502 | 2020-04-23T16:18:49 | 2020-04-23T16:18:49 | 258,261,084 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 618 | java | package p000a.p013b.p020e.p028g;
import java.util.concurrent.Callable;
/* renamed from: a.b.e.g.g */
/* compiled from: ScheduledDirectTask */
public final class C0239g extends C0226a implements Callable<Void> {
private static final long serialVersionUID = 1811839108042568751L;
public C0239g(Runnable runnable... | [
"tuanlq@funtap.vn"
] | tuanlq@funtap.vn |
ee16b0eb3d5fdf75724367ce62df762cd5efaa9f | 1ce48fcc3d037f74e4a5941724a47102c3e51c7a | /platform-ui/src/main/java/ua/com/fielden/platform/swing/ei/editors/development/ReadonlyEntityPropertyViewer.java | b075b641efeacd707d5e7e22a371203f7f95dabc | [] | no_license | jhou-pro/tg | 825e3f18f3437003c77905468f416c01fc52b1a7 | 9e73c58fece40be93ddc3bb105fbd5484e1ab393 | refs/heads/master | 2021-01-18T03:36:12.486334 | 2016-06-09T03:08:08 | 2016-06-09T03:08:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,598 | java | /**
*
*/
package ua.com.fielden.platform.swing.ei.editors.development;
import javax.swing.JLabel;
import javax.swing.JPanel;
import net.miginfocom.swing.MigLayout;
import ua.com.fielden.platform.basic.IValueMatcher;
import ua.com.fielden.platform.entity.AbstractEntity;
import ua.com.fielden.platform.swing.component... | [
"oles.hodych@gmail.com"
] | oles.hodych@gmail.com |
66bdac3641408e5c6095a1377be588766dd5ca80 | a94d20a6346d219c84cc97c9f7913f1ce6aba0f8 | /felles/felles/sikkerhet/sikkerhet/src/main/java/no/nav/vedtak/sikkerhet/ContextPathHolder.java | 8083d0699528ec503ffbac64deaef8091787ae8e | [
"MIT"
] | permissive | junnae/spsak | 3c8a155a1bf24c30aec1f2a3470289538c9de086 | ede4770de33bd896d62225a9617b713878d1efa5 | refs/heads/master | 2020-09-11T01:56:53.748986 | 2019-02-06T08:14:42 | 2019-02-06T08:14:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 846 | java | package no.nav.vedtak.sikkerhet;
public class ContextPathHolder {
private static volatile ContextPathHolder instance = null;
private final String contextPath;
private ContextPathHolder(String contextPath) {
this.contextPath = contextPath;
}
public static ContextPathHolder instance() {
... | [
"roy.andre.gundersen@nav.no"
] | roy.andre.gundersen@nav.no |
0330cf9bc6355d83e8a5fc94e3048990e6e4fb4c | 81c48ccdb639908df63cd5f90b4cb49449f30e1d | /haox-kerb/kerb-core-test/src/test/java/org/apache/kerberos/kerb/codec/pac/PacSid.java | ad73d0e3f93d00de464319b9a873a9532342c6f1 | [
"Apache-2.0"
] | permissive | HazelChen/directory-kerberos | 595e70f652a695278018ac8b4ebee30d37232fdc | 5e7a14455c8184bf1590fc2865345a2ff98431fe | refs/heads/master | 2020-12-30T14:56:29.674154 | 2015-01-15T08:36:03 | 2015-01-15T08:36:03 | 29,284,549 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,412 | java | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"... | [
"drankye@gmail.com"
] | drankye@gmail.com |
7e2c7b98de41506159bf298381fb52a6c8f2c7d1 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/4/4_dbc830651a76a064625d81bc15106c25e8fcedbc/ConfigureSynchronizeScheduleComposite/4_dbc830651a76a064625d81bc15106c25e8fcedbc_ConfigureSynchronizeScheduleComposite_t.java | 55e93cf239cad3599c82df1731d46529dfe48971 | [] | 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 | 7,618 | java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distributio... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
4fcae8884891d093d078273719c48027cad93354 | 16bd29d56e7c722f1f5fca21626b3359a40baf36 | /arqoid/arqoid-module/src/main/java/com/hp/hpl/jena/sparql/resultset/OutputFormatter.java | 5ac3c4e44b5310be9dc254f3a21a1b33e112c55c | [
"Apache-2.0"
] | permissive | william-vw/android-reasoning | 948d6a39372e29e5eff8c4851899d4dfc986ca62 | eb1668b88207a8e3a174361562efa066f2c75978 | refs/heads/master | 2023-02-07T20:50:25.015940 | 2023-01-24T19:26:37 | 2023-01-24T19:26:37 | 138,166,750 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,345 | java | /*
* (c) Copyright 2005, 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP
* All rights reserved.
* [See end of file]
*/
package com.hp.hpl.jena.sparql.resultset;
import java.io.OutputStream;
import com.hp.hpl.jena.query.ResultSet;
/**
* Interface for all formatters of result sets.
*
* @author... | [
"william.van.woensel@gmail.com"
] | william.van.woensel@gmail.com |
08cc8d63e7e2894c1ecc1315f95ce19254de225e | a407678d9973a09183ca556b54d9d35cd7a2b765 | /src/irc/java/org/darkstorm/darkbot/ircbot/commands/defaults/VersionCommand.java | 8547946568e089ef0c8389ad5daf2fd12882b41b | [
"BSD-2-Clause"
] | permissive | dahquan1/DarkBot | d4920b6f196e9b5a8bffe1adcfe150abc7e88d50 | 09ff65b67060486eaa723a68e3faf4a6296a194c | refs/heads/master | 2020-12-25T04:17:12.624939 | 2014-03-04T21:02:02 | 2014-03-04T21:02:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,070 | java | package org.darkstorm.darkbot.ircbot.commands.defaults;
import org.darkstorm.darkbot.DarkBot;
import org.darkstorm.darkbot.ircbot.commands.IRCCommand;
import org.darkstorm.darkbot.ircbot.handlers.*;
import org.darkstorm.darkbot.ircbot.irc.messages.*;
public class VersionCommand extends IRCCommand {
public VersionCom... | [
"darkstorm@evilminecraft.net"
] | darkstorm@evilminecraft.net |
a132735b3d2ada8d48585a647aad0758c5358da0 | dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9 | /data_defect4j/preprossed_method_corpus/Math/4/org/apache/commons/math3/dfp/Dfp_multiply_1504.java | 7486602ac0a67399953a1f536f66222a9d6ff54d | [] | no_license | hvdthong/NetML | dca6cf4d34c5799b400d718e0a6cd2e0b167297d | 9bb103da21327912e5a29cbf9be9ff4d058731a5 | refs/heads/master | 2021-06-30T15:03:52.618255 | 2020-10-07T01:58:48 | 2020-10-07T01:58:48 | 150,383,588 | 1 | 1 | null | 2018-09-26T07:08:45 | 2018-09-26T07:08:44 | null | UTF-8 | Java | false | false | 5,593 | java |
org apach common math3 dfp
decim float point librari java
float point built radix
decim
design goal
decim math close
settabl precis mix number set
portabl code portabl
perform
accuraci result ulp basic
algebra oper
compli ieee
ieee note
trade off
memori foot print memori
repres number per... | [
"hvdthong@gmail.com"
] | hvdthong@gmail.com |
09d220f063e545abd69e357553a589e8874c18ed | 8dfd77caab244debdf56f66b6465e06732364cd8 | /projects/jasn1-compiler/src/test/java-gen/org/openmuc/jasn1/compiler/pkix1explicit88/Validity.java | f397b788e4aee7df9df258f7ea7bf2c35182a52b | [] | no_license | onderson/jasn1 | d195c568b2bf62e9ef558d1caea6e228239ad848 | 6df87b86391360758fa559d55b9aa6fb98c7f507 | refs/heads/master | 2021-08-18T16:30:05.353553 | 2017-07-19T18:39:08 | 2017-07-19T18:39:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,248 | java | /**
* This class file was automatically generated by jASN1 v1.8.2-SNAPSHOT (http://www.openmuc.org)
*/
package org.openmuc.jasn1.compiler.pkix1explicit88;
import java.io.IOException;
import java.io.EOFException;
import java.io.InputStream;
import java.util.List;
import java.util.ArrayList;
import java.util.Iterator... | [
"stefan.feuerhahn@ise.fraunhofer.de"
] | stefan.feuerhahn@ise.fraunhofer.de |
fb73d78d65454163514845c844efb50492fb1f65 | 827bd3b5a00b2b41ed35cbb0c7d0e3ac849af7a5 | /resource/src/main/java/com/example/resource/utils/LogUtils.java | b1f01d49b35070fad4bcf43a25b50fe4bef97388 | [] | no_license | eeqg/MyBaseProject2 | f185bae0b3230bcf024c64ff9d5714ecd2383efa | fcf9ad5ff3700dde69a84c4daf543aca90d1d6ec | refs/heads/master | 2020-03-21T12:41:41.389612 | 2019-04-03T10:07:28 | 2019-04-03T10:07:28 | 138,567,000 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,224 | java | package com.example.resource.utils;
import android.app.Activity;
import android.content.Context;
import android.text.TextUtils;
import android.util.Log;
import android.widget.Toast;
import com.orhanobut.logger.AndroidLogAdapter;
import com.orhanobut.logger.FormatStrategy;
import com.orhanobut.logger.Logger;
import co... | [
"876583632@qq.com"
] | 876583632@qq.com |
3b4bf82ae00079167e1acaea9c1a83791be0fc9e | 160a34361073a54d39ffa14fdae6ce3cbc7d6e6b | /src/main/java/com/alipay/api/domain/AlipayMarketingDataModelQueryModel.java | b67a81493ceffd1886dc880095910de70b92b1c4 | [
"Apache-2.0"
] | permissive | appbootup/alipay-sdk-java-all | 6a5e55629b9fc77e61ee82ea2c4cdab2091e0272 | 9ae311632a4053b8e5064b83f97cf1503a00147b | refs/heads/master | 2020-05-01T09:45:44.940180 | 2019-03-15T09:52:14 | 2019-03-15T09:52:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,482 | java | package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 模型数据查询接口
*
* @author auto create
* @since 1.0, 2017-04-27 14:36:26
*/
public class AlipayMarketingDataModelQueryMo... | [
"liuqun.lq@alibaba-inc.com"
] | liuqun.lq@alibaba-inc.com |
69e0fa36ba859d4312456b07fdb714a6ab3998c7 | 9036fc6db1f1074023ba69a7f689de90ac9094f6 | /src/com/leiqjl/ConvertSortedListToBinarySearchTree.java | f6bccfc6ede84a62bcf8f04b3ab6af39f0e13038 | [] | no_license | leiqjl/leetcode | 646e6fc0a7bba120934996203536b6decb62a5a8 | 1d1faf4c283e694143b9886685a6430521d1860e | refs/heads/master | 2023-09-01T06:45:45.353434 | 2023-08-29T09:27:26 | 2023-08-29T09:27:26 | 136,191,772 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 694 | java | package com.leiqjl;
/**
* 109. Convert Sorted List to Binary Search Tree - Medium
*/
public class ConvertSortedListToBinarySearchTree {
public TreeNode sortedListToBST(ListNode head) {
return convert(head, null);
}
private TreeNode convert(ListNode head, ListNode tail) {
if (head == tail... | [
"leiqjl@gmail.com"
] | leiqjl@gmail.com |
e9d9de6986661a8d9af0baf55d0dc70f884e36fb | 67c0fdc9deaedc7f6937b4cba1c068c69991f4d2 | /aura-impl/src/main/java/org/auraframework/impl/css/util/Flavors.java | 4c2e1c49e775508358fbb47d7bf24436db3fe98d | [
"Apache-2.0"
] | permissive | SyMdUmair/aura | 3cecbd7a0c10fc2ce4fa56d022405f2733128bac | 25474961fd88d62d9e955f0649c1ccdd79b1b917 | refs/heads/master | 2021-01-18T00:58:42.713655 | 2015-04-04T00:13:01 | 2015-04-04T00:13:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,801 | java | /*
* Copyright (C) 2013 salesforce.com, inc.
*
* 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 ... | [
"byao@salesforce.com"
] | byao@salesforce.com |
c3369bb2015d316b49bf9a34d426a0d877a78da1 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/34/34_ea1be6c83957b15e92bb5e3368a102e814c12e65/NamedPipe/34_ea1be6c83957b15e92bb5e3368a102e814c12e65_NamedPipe_t.java | b4e394ce65a1237c184df0f0a6cfc6a1139e8e7e | [] | 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 | 844 | java | /**
*
*/
package server;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import model.NamedPipeStream;
/**
* @author Derek Carr
*
*/
public class NamedPipe {
private RandomAccessFile pipe;
public NamedPipe() throws FileNotFoundException ... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
1bb7eeeda7dbb11fdf547dafeb4ead2b136ef565 | 3fc503bed9e8ba2f8c49ebf7783bcdaa78951ba8 | /TRAVACC_R5/travelrulesengine/src/de/hybris/platform/travelrulesengine/rao/providers/impl/DefaultRoomStayRaoProvider.java | 6c8dbc190808041d8d31255af20b345499424954 | [] | no_license | RabeS/model-T | 3e64b2dfcbcf638bc872ae443e2cdfeef4378e29 | bee93c489e3a2034b83ba331e874ccf2c5ff10a9 | refs/heads/master | 2021-07-01T02:13:15.818439 | 2020-09-05T08:33:43 | 2020-09-05T08:33:43 | 147,307,585 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,159 | java | /*
* [y] hybris Platform
*
* Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
*
* This software is the confidential and proprietary information of SAP
* ("Confidential Information"). You shall not disclose such Confidential
* Information and shall use it only in accordance with the te... | [
"sebastian.rulik@gmail.com"
] | sebastian.rulik@gmail.com |
8816a31d857a2eaea9cd05e6e0ce3f0301697858 | af7bf9c39b2b246eecbfe7ea97e7e72ada6d3950 | /controlsfx/src/main/java/impl/org/controlsfx/spreadsheet/SpreadsheetGridView.java | dc6d037e1e37d039367da97e1600713349bf7dfa | [] | no_license | claudiodegio/controlsfx | a8c5b60b546b773578b53b16eb6e3ffd1c22b4c9 | 1c2ba0aa97c38497ab239cf7833509574ffeb724 | refs/heads/master | 2021-05-27T20:50:09.340905 | 2014-08-25T00:16:33 | 2014-08-25T00:16:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,307 | java | /**
* Copyright (c) 2013, 2014 ControlsFX
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list o... | [
"none@none"
] | none@none |
0bc0133f740d811089216162782e3d325a9c76b1 | 418cbb362e8be12004bc19f3853a6b7e834e41f5 | /src/L21Regex/Ex05MatchNumbers.java | d5bbc4f7baf078dff6a223950eeb3a6d5b55c835 | [
"MIT"
] | permissive | VasAtanasov/SoftUni-Programming-Fundamentals-May-2018 | 433bd31e531b9ba19d844d6c3ed46deef851396e | 911bca8ef9a828acc247fbc2e6a9290f4d3a8406 | refs/heads/master | 2020-04-14T20:35:23.723721 | 2019-01-04T11:32:04 | 2019-01-04T11:32:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,017 | java | package L21Regex;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
public class Ex05MatchNumbers {
private static final... | [
"vas.atanasov@gmail.com"
] | vas.atanasov@gmail.com |
60c597c3ca1e81ca456f944b2b11df4dcb31e800 | fcc53a73db3bce85761a716159a74b019bf68d36 | /main/test/com/stackroute/pe1/Q3ConsonentOrVowelTest.java | 32002a88a9ec7839cdfe85de2d5dc0914b437384 | [] | no_license | prerna0001/JavaPractice | 1cf1ec45e01d19b2c9bb783498f572cc216c18ee | 964d983a8dacc67991c305aaf9f8173c59fbc1f9 | refs/heads/master | 2020-05-16T23:16:37.108688 | 2019-05-02T05:35:00 | 2019-05-02T05:35:00 | 183,358,833 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 831 | java | package com.stackroute.pe1;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
public class Q3ConsonentOrVowelTest {
Q3ConsonentOrVowel q3ConsonentOrVowel;
@Before
public void setUp() throws Exception {
q3ConsonentOrVowel=new Q3ConsonentOrVo... | [
"="
] | = |
4fe9a3436bea3f37d218d90264ad303f1fdf1b2e | 67310b5d7500649b9d53cf62226ec2d23468413c | /trunk/modules/gui-ripper-sel/src/simple/SimpleSeleniumTest.java | 1521d89ffd1b48a9399de38efe48b7d79b7e750e | [] | no_license | csnowleopard/guitar | e09cb77b2fe8b7e38d471be99b79eb7a66a5eb02 | 1fa5243fcf4de80286d26057db142b5b2357f614 | refs/heads/master | 2021-01-19T07:53:57.863136 | 2013-06-06T15:26:25 | 2013-06-06T15:26:25 | 10,353,457 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 999 | java | package simple;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.openqa.selenium.By;
import org.openqa.selenium.remote.*;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.seleniu... | [
"csnowleopard@gmail.com"
] | csnowleopard@gmail.com |
932a834a165d951841adadc787f6aaab628501df | 8f3d621379e056284ae0a4c396555803386861ba | /src/main/java/com/liyiming/springcloud/ribbon/controller/HelloController.java | e464e642d89577b8ae96f57e330da125ace0392f | [] | no_license | kiragirl/springcloud_eurekaribbon | 1a77a89de4fb660a3d551c366aa172a697a05825 | 7510d7dfbd9a45d5f3216a517ff59408dc24936d | refs/heads/master | 2020-03-11T00:33:30.513048 | 2018-07-18T08:34:41 | 2018-07-18T08:34:41 | 129,666,809 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 856 | java | /**
* HelloController.java
* <p>Description: </p>
* @author Administrator
* @date 2018年4月12日
*/
package com.liyiming.springcloud.ribbon.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web... | [
"liyiming0215@sina.com"
] | liyiming0215@sina.com |
1f996ebd59017dc522e8849ae8adb9939187f9c1 | bf4fa2b21faf33d08d0af0fd66e457eceab97167 | /ISmartDeviceConfig/src/main/java/com/miotlink/commom/network/mlcc/parse/ParseMLCCImpl_SmartConnected.java | 9a03c7e6afe5a636067eca84c772b7f8443203f9 | [] | no_license | Miotlink/ISmartConfigOpenSDK | 05be1897fc3aa997bd6ee510fb3fa84f66b438af | d7340006125b8435f2d836ac147fb1184dcde284 | refs/heads/master | 2023-02-27T21:06:12.884184 | 2021-01-21T02:50:20 | 2021-01-21T02:50:20 | 331,494,797 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,257 | java | package com.miotlink.commom.network.mlcc.parse;
import com.miotlink.commom.network.mlcc.utils.MLCCCodeConfig;
import com.miotlink.commom.network.mlcc.utils.MLCCReflectUtils;
import com.miotlink.common.network.mlcc.pojo.response.RespSmartConnectedAck;
import java.util.Map;
public class ParseMLCCImpl_SmartConnected ... | [
"pm@miotlinl.com"
] | pm@miotlinl.com |
db35663e199d86130adbc9879964cea2578d62ce | 6c782bae57eb780adf62e46391582fc7d6b35af8 | /modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201802/cm/DraftAsyncErrorPage.java | 7d2632956776438fe0a50cf3d4d22373225e714a | [
"Apache-2.0"
] | permissive | indranil32/googleads-java-lib | 2685c35b8eb9d40fde64b8caafd58fe6ffdb4e9e | 8425e81c6b7b8907a8e508e8f7d376fc7fd02eeb | refs/heads/master | 2020-03-19T00:17:15.483205 | 2018-05-30T13:44:39 | 2018-05-30T13:44:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,685 | java | // Copyright 2018 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 law... | [
"jradcliff@users.noreply.github.com"
] | jradcliff@users.noreply.github.com |
e27dc7aa96159e6aa87128c12f4be90d3bd68427 | e5bb4c1c5cb3a385a1a391ca43c9094e746bb171 | /Service/trunk/service/api-baseInfo/src/main/java/com/hzfh/api/baseInfo/service/CodeNeed2Service.java | cc35428994b791c52e43723930998ae3a9eb1e72 | [] | no_license | FashtimeDotCom/huazhen | 397143967ebed9d50073bfa4909c52336a883486 | 6484bc9948a29f0611855f84e81b0a0b080e2e02 | refs/heads/master | 2021-01-22T14:25:04.159326 | 2016-01-11T09:52:40 | 2016-01-11T09:52:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 647 | java | package com.hzfh.api.baseInfo.service;
import com.hzfh.api.baseInfo.model.CodeNeed2;
import com.hzfh.api.baseInfo.model.query.CodeNeed2Condition;
import com.hzframework.data.service.BaseService;
/*******************************************************************************
*
* Copyright 2015 HZFH. All rights res... | [
"ulei0343@163.com"
] | ulei0343@163.com |
91c58b647c546297d8371389600db2b197aa1f1b | 4e9c5e37a4380d5a11a27781187918a6aa31f3f9 | /dse-db-all-6.7.0/org/apache/cassandra/utils/progress/jmx/JMXNotificationProgressListener.java | e9febaf908a8e51b77f3588eacbf4cf2a66dbdfa | [] | no_license | jiafu1115/dse67 | 4a49b9a0d7521000e3c1955eaf0911929bc90d54 | 62c24079dd5148e952a6ff16bc1161952c222f9b | refs/heads/master | 2021-10-11T15:38:54.185842 | 2019-01-28T01:28:06 | 2019-01-28T01:28:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,402 | java | package org.apache.cassandra.utils.progress.jmx;
import java.util.Map;
import javax.management.Notification;
import javax.management.NotificationListener;
import org.apache.cassandra.utils.progress.ProgressEvent;
import org.apache.cassandra.utils.progress.ProgressEventType;
import org.apache.cassandra.utils.progress.P... | [
"superhackerzhang@sina.com"
] | superhackerzhang@sina.com |
7232a4cb081cb2e965240197b594ef5f9e5b95bb | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /pdk/apps/HelloPDK/src/com/example/android/helloPDK/telephony/DialerActivity.java | 3173120ecbaea1177510c8d732436e337fa7e265 | [
"MIT"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | Java | false | false | 1,641 | java | /*
* Copyright (C) 2012 The Android Open Source Project
*
* 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 app... | [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
6984b11e4eb5d1d378c6fc7c1461303c3318f5e1 | e820097c99fb212c1c819945e82bd0370b4f1cf7 | /gwt-sh/src/main/java/com/skynet/spms/manager/customerService/ExchangeService/Other/impl/ComponentFailureSafetyDataImpl.java | d0cddfbe8dff7722e9e65ad1f7fb2cdd4ae08a0b | [] | no_license | jayanttupe/springas-train-example | 7b173ca4298ceef543dc9cf8ae5f5ea365431453 | adc2e0f60ddd85d287995f606b372c3d686c3be7 | refs/heads/master | 2021-01-10T10:37:28.615899 | 2011-12-20T07:47:31 | 2011-12-20T07:47:31 | 36,887,613 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 286 | java | package com.skynet.spms.manager.customerService.ExchangeService.Other.impl;
import com.skynet.spms.manager.customerService.ExchangeService.Other.ComponentFailureSafetyDataManager;
public class ComponentFailureSafetyDataImpl implements
ComponentFailureSafetyDataManager {
}
| [
"usedtolove@3b6edebd-8678-f8c2-051a-d8e859c3524d"
] | usedtolove@3b6edebd-8678-f8c2-051a-d8e859c3524d |
e9f44837edb30fbe46e7ebfb548bf36ed6159138 | ea061388a30ab0fdfa79440b3baceb838c13599e | /desenvolvimento/backend/src/test/java/com/ramon/catchup/repository/UsuarioRepositoryTest.java | 617fe85b69ad73195d66d4217a49b66a733a7d45 | [] | no_license | ramoncgusmao/catchup | dba577ade63609e955a661da2c120ed16e98b157 | 54bbd83236047d6bf1c519a752ed9c39cad20f24 | refs/heads/master | 2020-12-02T18:32:17.040628 | 2020-01-09T02:52:58 | 2020-01-09T02:52:58 | 231,079,941 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,921 | java | package com.ramon.catchup.repository;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.Optional;
import javax.persistence.EntityManager;
import org.assertj.core.api.Assertions;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Auto... | [
"ramoncgusmao@gmail.com"
] | ramoncgusmao@gmail.com |
4378b152090cf7762dc88e7d2a24c712f010b65e | 316e7b55e04379c5534f1ec5ade1e7855671051b | /Lindley.DesarrolloxCliente/src/lindley/desarrolloxcliente/ws/bean/ConsultarResumenResponse.java | ef77dc235e2be2a08a8d7c839d1ddffdc9a6166f | [] | no_license | jels1988/msonicdroid | 5a4d118703b1b3449086a67f9f412ca5505f90e9 | eb36329e537c4963e1f6842d81f3c179fc8670e1 | refs/heads/master | 2021-01-10T09:02:11.276309 | 2013-07-18T21:16:08 | 2013-07-18T21:16:08 | 44,779,314 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 401 | java | package lindley.desarrolloxcliente.ws.bean;
import java.util.ArrayList;
import lindley.desarrolloxcliente.to.ResumenValueTO;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import net.msonic.lib.ResponseBase;
public class ConsultarResumenResponse extends ResponseBase {... | [
"mzegarra@gmail.com"
] | mzegarra@gmail.com |
debf9679e585670a8c0b6de3bc0fff84e8dc8e0f | c474b03758be154e43758220e47b3403eb7fc1fc | /apk/decompiled/com.tinder_2018-07-26_source_from_JADX/sources/com/google/android/m4b/maps/av/C4678g.java | 6ac28dae777ec63585a2671b769355f0f906daef | [] | no_license | EstebanDalelR/tinderAnalysis | f80fe1f43b3b9dba283b5db1781189a0dd592c24 | 941e2c634c40e5dbf5585c6876ef33f2a578b65c | refs/heads/master | 2020-04-04T09:03:32.659099 | 2018-11-23T20:41:28 | 2018-11-23T20:41:28 | 155,805,042 | 0 | 0 | null | 2018-11-18T16:02:45 | 2018-11-02T02:44:34 | null | UTF-8 | Java | false | false | 669 | java | package com.google.android.m4b.maps.av;
import com.google.android.m4b.maps.ar.C4664b;
/* renamed from: com.google.android.m4b.maps.av.g */
public final class C4678g {
/* renamed from: a */
public static final C4664b f17152a = new C4664b();
/* renamed from: b */
public static final C4664b f17153b = new... | [
"jdguzmans@hotmail.com"
] | jdguzmans@hotmail.com |
ec42e9891da1af053807bb496a9b1b04fbda7979 | 7e0297895eed263dc7d73955f996823bb6724053 | /ex-07-circuitbreaker/services/store-api/src/main/java/org/bookstore/store/domain/Author.java | a98da2d2cb31c7f66de840466fa8fe8fd17f40f8 | [] | no_license | agoncal/agoncal-formation-microservices | a4fe3072e33f4275c12cd0b02d420e290eb523f1 | a710c429044d7f1c50793d279c8b4143b0e07758 | refs/heads/master | 2020-03-30T03:07:22.217554 | 2018-10-05T18:43:47 | 2018-10-05T18:43:47 | 150,670,188 | 4 | 1 | null | 2018-11-12T11:01:05 | 2018-09-28T01:46:28 | Java | UTF-8 | Java | false | false | 4,488 | java | package org.bookstore.store.domain;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.bookstore.store.domain.enumeration.Language;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import java.io.Serializable;
import java.time.LocalDate;
im... | [
"antonio.goncalves@gmail.com"
] | antonio.goncalves@gmail.com |
ddf5aa9a7b3f4260611ee75e64a93182d2b9e2c6 | c37c3fa6b28887a979264fd28be33241c6ba9920 | /edu.eafit.maestria.activa.tva/src/tva/mpeg21/_2011/DescriptionMetadataType.java | 6e6c1b354da282b644787dfde2ef0397fd2b5a27 | [] | no_license | wvelezva/tesisgitrepository | 6d2e4410d7422015efde9dc40a0aaa3308830605 | 1296d4c2cabd5497cf83645e112f416fdd27c6db | refs/heads/master | 2021-01-01T16:20:24.999410 | 2012-07-12T23:45:53 | 2012-07-12T23:45:53 | 2,657,973 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,418 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5
// 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: 2012.05.23 at 05:28:0... | [
"wvelezva@gmail.com"
] | wvelezva@gmail.com |
198e59f6c186a2d8be1bb2aba4a16199781e60d9 | afc3a531b1aa528029e2d5c9834c1a2c0fc51235 | /src/main/java/sonar/logistics/info/providers/fluids/AE2ExternalFluidProvider.java | 4b36ce514bae2825a89312175cbc1ff308730ad6 | [] | no_license | naluisio/Practical-Logistics | fd61800bcc0e1ffd1511e373c5b384386fc9323a | 77853c064c9f2c5daf40328f3b7ff80c2d9e119b | refs/heads/master | 2021-01-15T16:47:04.807243 | 2016-02-18T15:40:36 | 2016-02-18T15:40:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,046 | java | package sonar.logistics.info.providers.fluids;
import java.util.List;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.util.ForgeDirection;
import sonar.core.fluid.StoredFluidStack;
import sonar.core.inventory.StoredItemStack;
import sonar.core.utils.ActionType;
import sonar.logistics.api.... | [
"ollielansdell@hotmail.co.uk"
] | ollielansdell@hotmail.co.uk |
65359c5e2e554b4dc5b0b2cbbd68f2112668bbca | f1d20d6c7e6ec5ed491274fcc11e74bb010c57d3 | /company-central-client/src/main/java/com/ihappy/partner/domain/dto/request/partner/AddInvateRegisterPartnerReqDTO.java | 1c78788f8038cc417fcf03538c9ee3321823aaa7 | [] | no_license | P79N6A/company-central | 79273c8e90732cf73f2f8b08c006654809e08736 | f1a83f62a5cf41f8bfcf79c708a54d736fb1a46b | refs/heads/master | 2020-04-12T02:41:38.769868 | 2018-12-18T07:45:31 | 2018-12-18T07:45:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,311 | java | package com.ihappy.partner.domain.dto.request.partner;
import com.ihappy.partner.exception.PartnerException;
import com.ihappy.company.common.enumtype.CompanyErrorCodeEnum;
import com.ihappy.gateway.dto.ICallRequestBaseDTO;
import com.ihappy.partner.common.enumtype.PartnerErrorCodeEnum;
import java.util.Date;
/**
*... | [
"zhangmengdan@ihappy.net.cn"
] | zhangmengdan@ihappy.net.cn |
9a56d1d35212efb190b33e7f41cce800986815e5 | 421f0a75a6b62c5af62f89595be61f406328113b | /generated_tests/no_seeding/85_shop-umd.cs.shop.JSListOperators-1.0-2/umd/cs/shop/JSListOperators_ESTest_scaffolding.java | 5f40e36469e77bc88918b1170b568a4669a42551 | [] | no_license | tigerqiu712/evosuite-model-seeding-empirical-evaluation | c78c4b775e5c074aaa5e6ca56bc394ec03c2c7c6 | 11a920b8213d9855082d3946233731c843baf7bc | refs/heads/master | 2020-12-23T21:04:12.152289 | 2019-10-30T08:02:29 | 2019-10-30T08:02:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 533 | java | /**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Mon Oct 28 15:00:29 GMT 2019
*/
package umd.cs.shop;
import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Before;
import org.junit.After;
import o... | [
"pderakhshanfar@bsr01.win.tue.nl"
] | pderakhshanfar@bsr01.win.tue.nl |
04b1e481a009f53f97f52c181dbe6a800c03fa23 | 8818d6a1111866a7e4ea525abdd881916c389ade | /src/main/java/com/blastedstudios/scab/ai/bt/actions/Aim.java | 6d9d9d891b2117cee80729a953b550f2fe6b3113 | [] | no_license | narfman0/scab | 5994ce446fce31d023781f74b406aaf60f4d22b2 | 8210cf6f6321f475fc46d957947e16d1af0496ee | refs/heads/master | 2021-01-10T07:00:28.536296 | 2016-08-20T05:49:10 | 2016-08-20T05:49:10 | 51,808,220 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,850 | java | // *******************************************************
// MACHINE GENERATED CODE
// DO NOT MODIFY
//
// Generated on 11/15/2014 22:29:17
// *****************************************... | [
"narfman0@gmail.com"
] | narfman0@gmail.com |
b7793459241b15d2340d8dce83fafb397a766925 | 647ec12ce50f06e7380fdbfb5b71e9e2d1ac03b4 | /com.tencent.mm/classes.jar/com/tencent/mm/plugin/textstatus/ui/TextStatusEditActivity$$ExternalSyntheticLambda14.java | 080329d5052646eb234483eb54ca1014c751f003 | [] | no_license | tsuzcx/qq_apk | 0d5e792c3c7351ab781957bac465c55c505caf61 | afe46ef5640d0ba6850cdefd3c11badbd725a3f6 | refs/heads/main | 2022-07-02T10:32:11.651957 | 2022-02-01T12:41:38 | 2022-02-01T12:41:38 | 453,860,108 | 36 | 9 | null | 2022-01-31T09:46:26 | 2022-01-31T02:43:22 | Java | UTF-8 | Java | false | false | 509 | java | package com.tencent.mm.plugin.textstatus.ui;
import android.view.View;
import android.view.View.OnClickListener;
public final class TextStatusEditActivity$$ExternalSyntheticLambda14
implements View.OnClickListener
{
public final void onClick(View arg1) {}
}
/* Location: L:\local\mybackup\... | [
"98632993+tsuzcx@users.noreply.github.com"
] | 98632993+tsuzcx@users.noreply.github.com |
aeb04afd49522e72ffca57ab736218e222ec6f8e | 7e43011c818cd95460e02930bec0981b65d032c7 | /src/main/java/com/github/badoualy/telegram/tl/api/TLInputGameShortName.java | ad1f836463c0a8792105fd1255c316b78b74b3a8 | [
"MIT"
] | permissive | shahrivari/kotlogram | 48faef9ff5cf1695c18cf02fb4fb3ed8edcc571e | 2281523c2a99692087bdcf6b2034bca6b2dc645c | refs/heads/master | 2020-09-07T11:37:15.597377 | 2019-11-10T12:18:56 | 2019-11-10T12:18:56 | 220,767,354 | 0 | 2 | MIT | 2019-11-10T09:20:24 | 2019-11-10T09:20:23 | null | UTF-8 | Java | false | false | 2,429 | java | package com.github.badoualy.telegram.tl.api;
import com.github.badoualy.telegram.tl.TLContext;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import static com.github.badoualy.telegram.tl.StreamUtils.readTLObject;
import static com.github.badoualy.telegram.tl.StreamUtils.readTLS... | [
"yann.badoual@gmail.com"
] | yann.badoual@gmail.com |
db7e6701eeb5f3a9db21ad7bd2842ee5b2d25f0a | e17dd7ee84962730b9f2b7c724b8f9dc4f857ab6 | /beautyeye_lnf/src/main/java/org/jb2011/lnf/beautyeye/ch3_button/__Icon9Factory__.java | 0b2813e48d711c99c40e99271878e0179fb27bdd | [
"Apache-2.0"
] | permissive | lnwazg/SWING-POM | 3ddade53497af03e6b86c06022f1892f40018527 | 12790a3a18c7d1ead046d1061aaff4a45dba5362 | refs/heads/master | 2022-12-15T02:49:32.565730 | 2019-08-29T12:01:04 | 2019-08-29T12:01:04 | 149,766,495 | 1 | 0 | Apache-2.0 | 2022-12-05T23:54:29 | 2018-09-21T13:21:14 | Java | UTF-8 | Java | false | false | 4,247 | java | /*
* Copyright (C) 2015 Jack Jiang(cngeeker.com) The BeautyEye Project.
* All rights reserved.
* Project URL:https://github.com/JackJiang2011/beautyeye
* Version 3.6
*
* Jack Jiang PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
* __Icon9Factory__.java at 2015-2-1 20:25:40, original version by J... | [
"lnwazg@126.com"
] | lnwazg@126.com |
e5b8b815e270a934aa2c806c288a2c094b70635b | a52151cd45a37c24513a72397bbb08bc01678bbd | /src/main/java/com/bosssoft/install/nontax/windows/action/InitConfig.java | 37ed4c3f3e4c3a928f6d5756d9379a8460cd25f3 | [] | no_license | 105032013072/notax_windows_install_new | 51e42826a99af01c2ce0f269531c1202e64a3db9 | 257b4ed5679f43ea7000827000351cc009a6c16a | refs/heads/master | 2021-01-01T04:38:40.198160 | 2017-09-13T11:42:22 | 2017-09-13T11:42:22 | 97,217,825 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,730 | java | package com.bosssoft.install.nontax.windows.action;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStreamWriter;
import java.io.StringWriter;
import java.util.Map;
import j... | [
"1337893145@qq.com"
] | 1337893145@qq.com |
491cb25ff3d83a6975c3919ef582edd27c8f90f8 | 17107bfc937d9d283e4846b87eb725b3fe6a9250 | /src/main/java/edu/ucsf/rbvi/scNetViz/internal/api/StringMatrix.java | d02c8ef78bad4da25020e0d420cbfa0fb32713bd | [
"Apache-2.0"
] | permissive | RBVI/scNetViz | 6b9713c632afd5f731a2a0df08613262c684cffa | 336ac63775f80a9842867f6005a3dc95622ed3fb | refs/heads/master | 2022-06-20T16:10:19.128310 | 2022-05-17T16:47:39 | 2022-05-17T16:47:39 | 154,605,796 | 7 | 3 | Apache-2.0 | 2021-08-02T17:17:21 | 2018-10-25T03:37:46 | Java | UTF-8 | Java | false | false | 445 | java | package edu.ucsf.rbvi.scNetViz.internal.api;
public interface StringMatrix extends Matrix {
public String[][] getStringMatrix();
public String[][] getStringMatrix(boolean tranpose);
public String[][] getStringMatrix(boolean tranpose, boolean excludeControls);
public String getValue(String rowLabel, String colLabel... | [
"scooter@cgl.ucsf.edu"
] | scooter@cgl.ucsf.edu |
467666fb7e2991ccb5e6a95fbb8a65bd428e8d18 | df58a5796a20f59942d4decb01ee9ee61b584e15 | /java/StructuralDP/FacadeDesign/BankAccountFacade.java | f2d0aa83902d703e02effb8436684904e4088654 | [] | no_license | daudzaidi/interview | 30da34f934902f0e871f485a9a9bd631b38174ed | 7beb4c632fbad1d3d73f30d31c2fb2428ec05c5f | refs/heads/master | 2021-01-23T00:28:55.941874 | 2017-01-16T17:54:06 | 2017-01-16T17:54:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,677 | java | package StructuralDP.FacadeDesign;
/**
* Created by shalvi on 09/04/16.
*/
public class BankAccountFacade {
private int accountNumber;
private int securityCode;
AccountNumberCheck accountChecker;
SecurityCodeCheck codeChecker;
FundsCheck fundsChecker;
WelcomeToBank welcomeToBank;
pub... | [
"shyamsunderpandita@SHYAMs-MacBook-Pro.local"
] | shyamsunderpandita@SHYAMs-MacBook-Pro.local |
11b15cad7d0d3d32bb76c05a7714edef45df5e07 | ed5159d056e98d6715357d0d14a9b3f20b764f89 | /test/irvine/oeis/a150/A150549Test.java | f517ab7a3b85fa072292cedbe0f378b6c30d504a | [] | no_license | flywind2/joeis | c5753169cf562939b04dd246f8a2958e97f74558 | e5efd6971a0062ac99f4fae21a7c78c9f9e74fea | refs/heads/master | 2020-09-13T18:34:35.080552 | 2019-11-19T05:40:55 | 2019-11-19T05:40:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 256 | java | package irvine.oeis.a150;
import irvine.oeis.AbstractSequenceTest;
/**
* Tests the corresponding class.
* @author Sean A. Irvine
*/
public class A150549Test extends AbstractSequenceTest {
@Override
protected int maxTerms() {
return 10;
}
}
| [
"sairvin@gmail.com"
] | sairvin@gmail.com |
406938af23a42597ab53f5e1493e483ba9f696cb | d9d7bf3d0dca265c853cb58c251ecae8390135e0 | /gcld/src/com/reign/gcld/slave/service/ISlaveService.java | cfdf81eef37fe1bfcb642f966f89de1907ba047b | [] | no_license | Crasader/workspace | 4da6bd746a3ae991a5f2457afbc44586689aa9d0 | 28e26c065a66b480e5e3b966be4871b44981b3d8 | refs/heads/master | 2020-05-04T21:08:49.911571 | 2018-11-19T08:14:27 | 2018-11-19T08:14:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 973 | java | package com.reign.gcld.slave.service;
import com.reign.gcld.player.dto.*;
import com.reign.gcld.slave.domain.*;
public interface ISlaveService
{
byte[] getSlaveInfo(final PlayerDto p0);
byte[] lash(final PlayerDto p0, final int p1);
byte[] makeCell(final PlayerDto p0);
byte[] escape(fin... | [
"359569198@qq.com"
] | 359569198@qq.com |
d3e01faca0aca382aa2fba00288cb3a4505db602 | 6b3a781d420c88a3a5129638073be7d71d100106 | /AdProxyPersist/src/main/java/com/ocean/persist/api/proxy/helian/HelianAdPuller.java | 93d35cfc3b6587f39106198f90b25022da2d0f87 | [] | no_license | Arthas-sketch/FrexMonitor | 02302e8f7be1a68895b9179fb3b30537a6d663bd | 125f61fcc92f20ce948057a9345432a85fe2b15b | refs/heads/master | 2021-10-26T15:05:59.996640 | 2019-04-13T07:52:57 | 2019-04-13T07:52:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,992 | java | package com.ocean.persist.api.proxy.helian;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import com.ocean.core.common.JsonUtils;
import com.ocean.core.common.http.Bean2Utils;
import com.ocean.core.common.http.Htt... | [
"569246607@qq.com"
] | 569246607@qq.com |
30a41331274da687e597130e7de45d5cc8413f0b | 8ae5724181c622b509e8456fe243dab3a840552c | /app/src/main/java/indexfragment/WashServiceIntroduce.java | 8a541729fd45e31b8caa396b1355e3eae1c16a51 | [] | no_license | youareapig/MyProject | b933aee74b91408fb68b0dbcb8f42de12bfbd650 | f0800c32b1564eac1060dc1f9027db7290f25642 | refs/heads/master | 2021-01-12T16:24:41.023858 | 2017-01-06T01:21:18 | 2017-01-06T01:21:18 | 71,990,504 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,228 | java | package indexfragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.myproject.R;
import myview.WashStep;
/**
* Created by Administrator on 2016/11... | [
"840855165@qq.com"
] | 840855165@qq.com |
09a8439764d67cbf994f86b4ab78a6c004fc66e0 | 6482753b5eb6357e7fe70e3057195e91682db323 | /io/netty/util/internal/shaded/org/jctools/queues/BaseLinkedQueuePad0.java | bc533c2cbb671fd3663e908ad1ac133ee2fd2502 | [] | no_license | TheShermanTanker/Server-1.16.3 | 45cf9996afa4cd4d8963f8fd0588ae4ee9dca93c | 48cc08cb94c3094ebddb6ccfb4ea25538492bebf | refs/heads/master | 2022-12-19T02:20:01.786819 | 2020-09-18T21:29:40 | 2020-09-18T21:29:40 | 296,730,962 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 403 | java | package io.netty.util.internal.shaded.org.jctools.queues;
import java.util.AbstractQueue;
abstract class BaseLinkedQueuePad0<E> extends AbstractQueue<E> implements MessagePassingQueue<E> {
long p00;
long p01;
long p02;
long p03;
long p04;
long p05;
long p06;
long p07;
long p10;
... | [
"tanksherman27@gmail.com"
] | tanksherman27@gmail.com |
2c294ba68d7634ae068175ada8bd00f89efbd689 | a9a16c8aff5943bc41759bcb1a14886c21916747 | /core/src/main/java/org/vertexium/path/PathFindingAlgorithm.java | 57a15412653465cdda5c2a5282c3a54b5a3e914f | [
"Apache-2.0"
] | permissive | amccurry/vertexium | 322104e657ab4866fa4ea21575de2a3dc5305b45 | d8338c420f8e6cf7f6e1d5577803df977a830aaf | refs/heads/master | 2020-12-31T03:41:07.063489 | 2015-04-22T13:04:33 | 2015-04-22T13:04:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 279 | java | package org.vertexium.path;
import org.vertexium.*;
import org.vertexium.*;
public interface PathFindingAlgorithm {
Iterable<Path> findPaths(Graph graph, Vertex sourceVertex, Vertex destVertex, int hops, ProgressCallback progressCallback, Authorizations authorizations);
}
| [
"joe@fernsroth.com"
] | joe@fernsroth.com |
7e1cfcff267b6c148fdb816dacff63e5f21571e5 | 6c466d86b1e13f640b11b553d7139d3f037deae5 | /fstcomp/examples/Modification/BerkeleyDB/project/src/com/sleepycat/bind/je/utilint/NotImplementedYetException.java | 45d02ca903154fa46cad3a0bf557aff01b00ca37 | [] | no_license | seanhoots/formol-featurehouse | a30af2f517fdff6a95c0f4a6b4fd9902aeb46f96 | 0cddc85e061398d6d653e4a4607d7e0f4c28fcc4 | refs/heads/master | 2021-01-17T06:35:11.489248 | 2012-03-08T13:51:46 | 2012-03-08T13:51:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 338 | java | package com.sleepycat.je.utilint;
import de.ovgu.cide.jakutil.*;
public class NotImplementedYetException extends RuntimeException {
public NotImplementedYetException(){ super(); }
public NotImplementedYetException( String message){ super(message); }
private Tracer t = new Tracer();
public Tracer getTracer... | [
"boxleitn"
] | boxleitn |
c2532a9e465a9894487ac85e9cd853c8c3519e5b | 2f0905644ee7282dab0c5a9f2ea11aa1c96d50b1 | /app/src/main/java/com/bozhengjianshe/shenghuobang/ui/activity/InspectionDetailActivity.java | 763023a6c4ae136dd15e6d49363e05145d8c31c3 | [] | no_license | chenzhiwei152/LifeHelp | b9ad701d9ced896ba71da41b1afde8a207ecfb26 | 4fa8672bd0df2bb8c81c9fa1aeaaf6bb8fbcd653 | refs/heads/master | 2021-09-15T02:51:02.183118 | 2018-05-24T12:55:20 | 2018-05-24T12:55:20 | 107,953,145 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,234 | java | package com.bozhengjianshe.shenghuobang.ui.activity;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import com.bozhengjianshe.shenghuobang.R;
import com.bozhengjianshe.shenghuobang.base.BaseActivity;
import com.bozhengjianshe.shenghuobang.base.EventBusCenter;
import com.bozhengjianshe.shengh... | [
"chen.zhiwei@jyall.com"
] | chen.zhiwei@jyall.com |
6ea047436506312c0a83269073c50e7521feea84 | 1ba27fc930ba20782e9ef703e0dc7b69391e191b | /Src/Base/src/main/java/com/compuware/caqs/domain/dataschemas/actionplan/ActionPlanElementBean.java | ed794f8f94ffb2580b76b3c28ac24fceb25b7fee | [] | no_license | LO-RAN/codeQualityPortal | b0d81c76968bdcfce659959d0122e398c647b09f | a7c26209a616d74910f88ce0d60a6dc148dda272 | refs/heads/master | 2023-07-11T18:39:04.819034 | 2022-03-31T15:37:56 | 2022-03-31T15:37:56 | 37,261,337 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,582 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.compuware.caqs.domain.dataschemas.actionplan;
import com.compuware.toolbox.util.resources.Internationalizable;
import java.io.Serializable;
import java.util.Locale;
/**
*
* @author cwfr-dzysman
*/
publi... | [
"laurent.izac@gmail.com"
] | laurent.izac@gmail.com |
68daded701238d107244325f44039969f9e11fb4 | e96172bcad99d9fddaa00c25d00a319716c9ca3a | /java-language-impl/src/main/java/com/intellij/java/language/impl/psi/impl/compiled/ClsProvidesStatementImpl.java | a5ccd409cd10b210a7db6078fb46f6ffc7eb100c | [
"Apache-2.0"
] | permissive | consulo/consulo-java | 8c1633d485833651e2a9ecda43e27c3cbfa70a8a | a96757bc015eff692571285c0a10a140c8c721f8 | refs/heads/master | 2023-09-03T12:33:23.746878 | 2023-08-29T07:26:25 | 2023-08-29T07:26:25 | 13,799,330 | 5 | 4 | Apache-2.0 | 2023-01-03T08:32:23 | 2013-10-23T09:56:39 | Java | UTF-8 | Java | false | false | 2,959 | java | /*
* Copyright 2000-2017 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... | [
"vistall.valeriy@gmail.com"
] | vistall.valeriy@gmail.com |
1328f778812f7023810eda80808a8768fd21472f | 9706e72ade5702c85a459b6ef6de82f82c5abcb6 | /JLC OOPs Lab/Lab340.java | d06e783b7dc66363214ebc42e37feee897fc768a | [] | no_license | saketkumar123/Java_OOPs | 81176f739f236035e2f3a44c4343ce2d73b138a0 | 8294673026f316dacd9e841a453f58d68a3e8aee | refs/heads/master | 2021-01-12T05:36:18.063666 | 2016-12-22T13:26:07 | 2016-12-22T13:26:07 | 77,146,486 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 698 | java | class Lab340
{
public static void main(String[] args)
{
new C();
}
}
class A
{
A()
{
System.out.println("A-> D.C.");
}
static
{
System.out.println("A-> S.B.");
}
{
System.out.println("A-> I.B.");
}
}
class B extends A
{
B()
{
System.out.println("B-> D.C.");
}
static
{
System.out.println("B... | [
"saket.ulsi@gmail.com"
] | saket.ulsi@gmail.com |
0ec6461cc02e6494b3cb0e1835b3058d2374f29e | bf141524c8b477a44fd8cb2d79cd2b5ca013c409 | /bagri-client/bagri-client-hazelcast/src/main/java/com/bagri/client/hazelcast/task/doc/DocumentsProvider.java | 4dbe3fc4ea6a831b1a718e54393ee5841aa34acc | [
"Apache-2.0"
] | permissive | dariagolub/bagri | 6f3e39f74c81b786b91c05afb337d2a418239e5f | 8718ec91feacbda32817c0b615323f3bae675406 | refs/heads/master | 2021-01-19T15:04:58.400194 | 2017-10-26T07:24:33 | 2017-10-26T07:24:33 | 100,942,600 | 0 | 0 | null | 2017-08-21T10:46:55 | 2017-08-21T10:46:55 | null | UTF-8 | Java | false | false | 1,302 | java | package com.bagri.client.hazelcast.task.doc;
import static com.bagri.client.hazelcast.serialize.TaskSerializationFactory.cli_ProvideDocumentsTask;
import java.io.IOException;
import java.util.Properties;
import java.util.concurrent.Callable;
import com.bagri.client.hazelcast.task.ContextAwareTask;
import co... | [
"dsukhoroslov@gmail.com"
] | dsukhoroslov@gmail.com |
f4525a1ce6dcc33c4bf82d34bd5d98b3da5b1ccc | cd314d79a2ff704b2b15d579315b21af41fb9ef5 | /app/src/main/java/com/yqx/mamajh/bean/ProdectItemEntity.java | ccf56fd59a2d7a0e1b7065ab4ba607782095e504 | [] | no_license | likeyizhi/mamajh | 8ba363755f9431561126f6e8887aa3234a6fe317 | 9e92d0f4eec74709943342e44a60819747c2068a | refs/heads/master | 2021-01-23T02:39:59.262330 | 2017-04-13T08:57:42 | 2017-04-13T08:57:42 | 86,013,678 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,642 | java | package com.yqx.mamajh.bean;
/**
* Created by young on 2017/3/7.
*/
public class ProdectItemEntity {
/**
* ID : 121
* Name : 完达山wondersun金装元乳婴儿配方奶粉1段(0-6个月)900g
* Number : 6902422060010
* Specifications :
* OPrice : 0.00
* Price : 0.00
* ScorePrice : 0
* ScoreOffset : 0.... | [
"aaxxzzz@qq.com"
] | aaxxzzz@qq.com |
febab4511453b39b08660b6e849abf1de444c506 | 52c36ce3a9d25073bdbe002757f08a267abb91c6 | /src/main/java/com/alipay/api/domain/AlipayPcreditHuabeiPcbenefitcoreBfactivitfacadeQueryModel.java | 331c170648eaf7014ce5b9751e02e500ad8f2110 | [
"Apache-2.0"
] | permissive | itc7/alipay-sdk-java-all | d2f2f2403f3c9c7122baa9e438ebd2932935afec | c220e02cbcdda5180b76d9da129147e5b38dcf17 | refs/heads/master | 2022-08-28T08:03:08.497774 | 2020-05-27T10:16:10 | 2020-05-27T10:16:10 | 267,271,062 | 0 | 0 | Apache-2.0 | 2020-05-27T09:02:04 | 2020-05-27T09:02:04 | null | UTF-8 | Java | false | false | 1,796 | java | package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 查询花呗营销分期贴息活动信息
*
* @author auto create
* @since 1.0, 2020-03-27 17:22:57
*/
public class AlipayPcred... | [
"ben.zy@antfin.com"
] | ben.zy@antfin.com |
276842d3a389d71238510d42872890bd0d95d68c | 51fa3cc281eee60058563920c3c9059e8a142e66 | /Java/src/testcases/CWE89_SQL_Injection/s01/CWE89_SQL_Injection__connect_tcp_executeUpdate_54a.java | 3e03f3becbb2d548a49a64119f0643452a245863 | [] | no_license | CU-0xff/CWE-Juliet-TestSuite-Java | 0b4846d6b283d91214fed2ab96dd78e0b68c945c | f616822e8cb65e4e5a321529aa28b79451702d30 | refs/heads/master | 2020-09-14T10:41:33.545462 | 2019-11-21T07:34:54 | 2019-11-21T07:34:54 | 223,105,798 | 1 | 4 | null | null | null | null | UTF-8 | Java | false | false | 6,654 | java | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE89_SQL_Injection__connect_tcp_executeUpdate_54a.java
Label Definition File: CWE89_SQL_Injection.label.xml
Template File: sources-sinks-54a.tmpl.java
*/
/*
* @description
* CWE: 89 SQL Injection
* BadSource: connect_tcp Read data using an outbound tcp connection
* Goo... | [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
d7ddd5ff83d9eaf5e525c3f4eec391b8cd83ee89 | 4a76b22fddd1430d994b67508544290922cdb3bc | /cafeteria-manage-api/src/main/java/com/poppo/dallab/cafeteria/domain/Menu.java | 09abf80b019d0e471db7e9aa0623013e6b956681 | [] | no_license | ccf05017/cafeteria-manage | 9e12fbe1bd93b608de51406e8db92304480f7306 | 310f672482713ac4ae34e4d23c10606e0b7833ff | refs/heads/master | 2020-08-03T12:35:15.835268 | 2020-03-07T08:12:53 | 2020-03-07T08:12:53 | 211,233,566 | 0 | 0 | null | 2019-09-27T04:04:45 | 2019-09-27T04:04:45 | null | UTF-8 | Java | false | false | 402 | java | package com.poppo.dallab.cafeteria.domain;
import lombok.*;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
@Entity
@Builder
@Getter
@NoArgsConstructor
@AllArgsConstructor
public class Menu {
@Id
@GeneratedValue(... | [
"saul@BcTech-Saului-MacBookPro.local"
] | saul@BcTech-Saului-MacBookPro.local |
bd6952ebfd7daece0e470184b79a592797600616 | 1f5c9b19b09f0fad775a5bb07473690ae6b0c814 | /salebusirule/src/public/nc/vo/so/custmatrel/entity/CustMatRelBVO.java | 57b7148a60838083b682bedc0a15acf567529fd8 | [] | no_license | hdulqs/NC65_SCM_SO | 8e622a7bb8c2ccd1b48371eedd50591001cd75c0 | aaf762285b10e7fef525268c2c90458aa4290bf6 | refs/heads/master | 2020-05-19T01:23:50.824879 | 2018-07-04T09:41:39 | 2018-07-04T09:41:39 | null | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 5,654 | java | package nc.vo.so.custmatrel.entity;
import nc.vo.pub.IVOMeta;
import nc.vo.pub.SuperVO;
import nc.vo.pub.lang.UFBoolean;
import nc.vo.pub.lang.UFDateTime;
import nc.vo.pubapp.pattern.model.meta.entity.vo.VOMetaFactory;
public class CustMatRelBVO extends SuperVO {
// 优先码
public static final String CPRIORITYCODE =... | [
"944482059@qq.com"
] | 944482059@qq.com |
565ff2936fcd32f617dae73d218670d2153baed7 | 3e9ba02fa687d4f9cf1b27f57d8a80c1123b25a7 | /src/org/encog/util/normalize/output/zaxis/OutputFieldZAxis.java | 63127a7af3a5517c38e29db0bb264db708159030 | [] | no_license | marianagmmacedo/CE_GP | e43b28aa5d3999e63fa43694608cb4966d27cf49 | ceadcb07a5049d8b5b2ff4ee00ad285cf33d46a4 | refs/heads/master | 2021-01-19T10:23:14.215122 | 2017-05-29T20:06:43 | 2017-05-29T20:06:43 | 87,858,418 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,381 | java | /*
* Encog(tm) Core v3.4 - Java Version
* http://www.heatonresearch.com/encog/
* https://github.com/encog/encog-java-core
* Copyright 2008-2016 Heaton Research, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
... | [
"carlos_judo@hotmail.com"
] | carlos_judo@hotmail.com |
d80844378bd3e81703dd7a22be024e44916edd68 | d8e695d863aea3293e04efd91f01f4298adbc3a0 | /apache-ode-1.3.5/ode-bpel-runtime/target/generated/apt/org/apache/ode/bpel/runtime/channels/ParentScopeChannel.java | 718b819d6243da2e6f7bec1a3cc01dced99c70e7 | [] | no_license | polyu-lsgi-xiaofei/bpelcube | 685469261d5ca9b7ee4c7288cf47a950d116b21f | 45b371a9353209bcc7c4b868cbae2ce500f54e01 | refs/heads/master | 2021-01-13T02:31:47.445295 | 2012-11-01T16:20:11 | 2012-11-01T16:20:11 | 35,921,433 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 680 | java | /*
* SOURCE FILE GENERATATED BY JACOB CHANNEL CLASS GENERATOR
*
* !!! DO NOT EDIT !!!!
*
* Generated On : Sat Jun 09 23:20:44 EEST 2012
* For Interface : org.apache.ode.bpel.runtime.channels.ParentScope
*/
package org.apache.ode.bpel.runtime.channels;
/**
* An auto-generated channel interfac... | [
"michael.pantazoglou@gmail.com@f004a122-f478-6e0f-c15d-9ccb889b5864"
] | michael.pantazoglou@gmail.com@f004a122-f478-6e0f-c15d-9ccb889b5864 |
046192b41965e46746c0599520a8d63cd3aae79f | 63f751519e64ac067e11189edaf6a34aeb3e5dba | /4.JavaCollections/src/com/javarush/task/task32/task3210/Solution.java | 51b67615420ac202b4832fb7ba8535e1833bd7f7 | [] | no_license | sharygin-vic/JavaRushTasks | 8507b96c2103828be4c8c3de29f6ad446b33b9df | 88e383a10a64286a2750bd67ec7f27d1a10a21dd | refs/heads/master | 2021-01-21T18:25:20.400669 | 2017-08-01T22:50:45 | 2017-08-01T22:50:45 | 92,046,759 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,122 | java | package com.javarush.task.task32.task3210;
import java.io.IOException;
import java.io.RandomAccessFile;
/*
Используем RandomAccessFile
*/
public class Solution {
public static void main(String... args) throws IOException {
String fileName = args[0];
long number = Long.parseLong(args[1]);
... | [
"lasprog@mail.ru"
] | lasprog@mail.ru |
58758fc9e69c62c7d8691011b71429d95e531a9f | dc0e271669780a11284b9626919846a51b00d54c | /service/com/hys/exam/service/local/impl/BannerManageImpl.java | 6e41924712466cdea3dc96c25a8d480a04abfd20 | [
"Apache-2.0"
] | permissive | 1224500506/NCME-Admin | 4a4b8e62f85b352dee0a96f096748b04fbf1b67e | e4f0969938ed6d9c076a9d647681dd56a1bf2679 | refs/heads/master | 2021-04-24T19:28:33.899711 | 2018-01-15T01:54:21 | 2018-01-15T01:54:21 | 117,482,274 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,524 | java | package com.hys.exam.service.local.impl;
import java.util.List;
import org.springframework.beans.factory.BeanFactory;
import com.hys.exam.dao.local.BannerManageDAO;
import com.hys.exam.model.Advert;
import com.hys.exam.model.SystemSite;
import com.hys.exam.model.SystemUser;
import com.hys.exam.service.local.BannerMa... | [
"weeho@DESKTOP-71D9DPN"
] | weeho@DESKTOP-71D9DPN |
ba0b30fd22356c3419307b086756d7c683ccab18 | 2cf1b02afc8280c669f2afb5a55908e671cdd147 | /src/main/java/com.malaganguo.athmsssm/model/TempAndHumModel.java | 79a5c73fa27708f876317e3a48ff05c42979d9cb | [] | no_license | malaganguo/athmsssm | 25c8aa7d27a8441d9d765ce0a5a89be26699ebc3 | d109c1a8776f755a182bafbaf00a48bdbb1a645d | refs/heads/master | 2022-02-10T13:05:57.292650 | 2019-05-09T03:24:54 | 2019-05-09T03:24:54 | 173,528,432 | 3 | 0 | null | 2022-02-07T06:50:16 | 2019-03-03T03:57:36 | JavaScript | UTF-8 | Java | false | false | 617 | java | package com.malaganguo.athmsssm.model;
public class TempAndHumModel {
private String date ;
private String temperature;
private String humidity;
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public String getTemperatu... | [
"admin@admin.com"
] | admin@admin.com |
9c867961c7d6f5e980c8c0dee4939db92bdfb409 | 1de2721fda45d5ac71547eda0ab912ddb5855b5e | /android-app/src/main/java/org/solovyev/android/calculator/math/edit/CalculatorOperatorsFragment.java | d8672c65daa9a0558b6a28feb46e11780bdb1fad | [] | no_license | GeekyTrash/android-calculatorpp | d0039cb3fd33cb8df3cf916deec34bfdb656ae0f | 73bcbde57bbe21121b7baac29ee06667560bd383 | refs/heads/master | 2020-12-25T03:10:30.856463 | 2013-04-01T09:08:05 | 2013-04-01T09:08:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,473 | java | package org.solovyev.android.calculator.math.edit;
import android.app.Activity;
import android.content.Context;
import android.text.ClipboardManager;
import jscl.math.operator.Operator;
import org.jetbrains.annotations.NotNull;
import org.solovyev.android.calculator.Locator;
import org.solovyev.android.calcula... | [
"se.solovyev@gmail.com"
] | se.solovyev@gmail.com |
9a7bd90ceaeff510079e777a54bf1f5879223582 | f41fa6720c00aa2f2d02ef68bc018ee5eef34abe | /org.marc.shic/src/main/java/org/marc/shic/core/LocationDemographic.java | 5ea2c8b74eff6dcd4e0822c7b16d73d230fcb5c2 | [
"Apache-2.0"
] | permissive | MohawkMEDIC/SharedHealthIntegrationComponents | e27f85d59cce75b89b3bb698d9c2787d45ba3f84 | dd0a3e97b03613be57be9cd9489e095096bee024 | refs/heads/master | 2020-04-09T20:27:59.837535 | 2018-12-05T21:42:57 | 2018-12-05T21:42:57 | 160,574,146 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,347 | java | /**
* Copyright 2013 Mohawk College of Applied Arts and Technology
*
* 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 ... | [
"nityan.khanna@mohawkcollege.ca"
] | nityan.khanna@mohawkcollege.ca |
23c2a5f5ebc49056436575329ec419f9409e5f08 | 2ba1ebe07175cc08fad982b4c6436bd145362180 | /src/main/java/com/warmer/dp/common/AbstractApplePhoneService.java | 79a1ce86c2fe4a2c540da876768b9bcef250322d | [] | no_license | MiracleTanC/designPattern | 4d47f172517127eeae15909d7a85f77d6fadeb9c | c8007642a6d131337b0f70c7d09cb447f0551753 | refs/heads/master | 2020-03-27T17:32:13.701218 | 2018-10-07T07:38:10 | 2018-10-07T07:38:10 | 146,857,651 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 355 | java | package com.warmer.dp.common;
import com.warmer.dp.service.AbstractFactoryService;
import com.warmer.dp.service.PhoneService;
import com.warmer.dp.service.impl.ApplePhoneServiceImpl;
public class AbstractApplePhoneService implements AbstractFactoryService{
@Override
public PhoneService GetPhoneService() {
return... | [
"1130196938@qq.com"
] | 1130196938@qq.com |
72f85faef36d79703b836783a99c8ee9286e24a5 | 95d20c83d8aff34e314c56a3ecb2b87c9fa9fc86 | /Ghidra/Framework/Graph/src/main/java/ghidra/graph/viewer/shape/VisualGraphShapePickSupport.java | 317eaefe2996d2ebdf07286ffc63a165da3dd142 | [
"GPL-1.0-or-later",
"GPL-3.0-only",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"LGPL-2.1-only",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | NationalSecurityAgency/ghidra | 969fe0d2ca25cb8ac72f66f0f90fc7fb2dbfa68d | 7cc135eb6bfabd166cbc23f7951dae09a7e03c39 | refs/heads/master | 2023-08-31T21:20:23.376055 | 2023-08-29T23:08:54 | 2023-08-29T23:08:54 | 173,228,436 | 45,212 | 6,204 | Apache-2.0 | 2023-09-14T18:00:39 | 2019-03-01T03:27:48 | Java | UTF-8 | Java | false | false | 3,404 | java | /* ###
* IP: GHIDRA
*
* 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 writin... | [
"46821332+nsadeveloper789@users.noreply.github.com"
] | 46821332+nsadeveloper789@users.noreply.github.com |
209b5c3c01dc1b7b9b5b1a16b4a575af1db4f340 | 131c50a29ad34eedbc231362f6d845ad04af5150 | /azkarra-api/src/test/java/io/streamthoughts/azkarra/api/streams/rocksdb/DefaultRocksDBConfigSetterTest.java | a22c6952d5686f37e4a574278ac5dbd157abe2a0 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | arujit/azkarra-streams | d76474d945d68d20c7076944d623277b4fbfe89f | 4fd90efb8d0848b869d989155a38f45c920b390c | refs/heads/master | 2022-07-06T15:57:03.377519 | 2020-05-09T10:38:17 | 2020-05-09T10:43:48 | 262,531,268 | 1 | 0 | Apache-2.0 | 2020-05-09T09:03:43 | 2020-05-09T09:03:42 | null | UTF-8 | Java | false | false | 2,211 | java | /*
* Copyright 2019 StreamThoughts.
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Vers... | [
"florian.hussonnois@gmail.com"
] | florian.hussonnois@gmail.com |
a7f1ae9e5317952bf3b736fd9aa042717bfc7276 | fa1408365e2e3f372aa61e7d1e5ea5afcd652199 | /src/testcases/CWE190_Integer_Overflow/s01/CWE190_Integer_Overflow__byte_console_readLine_multiply_68b.java | 918094ae7d036a9c881d808ca0989527456bfe0e | [] | no_license | bqcuong/Juliet-Test-Case | 31e9c89c27bf54a07b7ba547eddd029287b2e191 | e770f1c3969be76fdba5d7760e036f9ba060957d | refs/heads/master | 2020-07-17T14:51:49.610703 | 2019-09-03T16:22:58 | 2019-09-03T16:22:58 | 206,039,578 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 2,491 | java | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE190_Integer_Overflow__byte_console_readLine_multiply_68b.java
Label Definition File: CWE190_Integer_Overflow.label.xml
Template File: sources-sinks-68b.tmpl.java
*/
/*
* @description
* CWE: 190 Integer Overflow
* BadSource: console_readLine Read data from the ... | [
"bqcuong2212@gmail.com"
] | bqcuong2212@gmail.com |
24d57aa99d5b6308d7ba467b9aadeac5d41e36d0 | 0e06e096a9f95ab094b8078ea2cd310759af008b | /sources/com/tapjoy/internal/cv.java | 6006dddfb3538760a93927abfcfd21f1433efe4f | [] | no_license | Manifold0/adcom_decompile | 4bc2907a057c73703cf141dc0749ed4c014ebe55 | fce3d59b59480abe91f90ba05b0df4eaadd849f7 | refs/heads/master | 2020-05-21T02:01:59.787840 | 2019-05-10T00:36:27 | 2019-05-10T00:36:27 | 185,856,424 | 1 | 2 | null | 2019-05-10T00:36:28 | 2019-05-09T19:04:28 | Java | UTF-8 | Java | false | false | 283 | java | package com.tapjoy.internal;
import java.util.Collection;
public final class cv {
/* renamed from: a */
static final cq f7299a = new cq(", ");
/* renamed from: a */
public static Collection m7342a(Iterable iterable) {
return (Collection) iterable;
}
}
| [
"querky1231@gmail.com"
] | querky1231@gmail.com |
a7369f569f1a4961d94f8b9af3d1727c0fe0768e | 4c304a7a7aa8671d7d1b9353acf488fdd5008380 | /src/main/java/com/alipay/api/domain/AlipayOpenMiniDataVisitQueryModel.java | 4e70df809d05cddb714ce8c799ecf804df099167 | [
"Apache-2.0"
] | permissive | zhaorongxi/alipay-sdk-java-all | c658983d390e432c3787c76a50f4a8d00591cd5c | 6deda10cda38a25dcba3b61498fb9ea839903871 | refs/heads/master | 2021-02-15T19:39:11.858966 | 2020-02-16T10:44:38 | 2020-02-16T10:44:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,249 | java | package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 小程序当日访问数据查询
*
* @author auto create
* @since 1.0, 2019-06-12 12:04:36
*/
public class AlipayOpenMiniDataVisitQueryModel extends AlipayObject {
private static final long serialV... | [
"ben.zy@antfin.com"
] | ben.zy@antfin.com |
483fa6101aa784e979da9b8bad8e59f2eab4e681 | 4417886f50f85f3348a44b417e57c1ecac9930a4 | /src/main/java/com/sliu/framework/app/wfw/model/ZsTsfl.java | 954d21e91be24c1f5a823b63f07fb53308056be8 | [] | no_license | itxiaojian/wechatpf | 1fcf2ecc783c36c5c84d8408d78639de22263bde | bdf2b36c9733b1125feabb5d078e84f51034f718 | refs/heads/master | 2021-01-19T20:55:50.196667 | 2017-04-19T02:20:35 | 2017-04-19T02:20:35 | 88,578,665 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,260 | java | package com.sliu.framework.app.wfw.model;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* 图书分类
* @author d... | [
"2629690209@qq.com"
] | 2629690209@qq.com |
59104744cde7fbbff5377e80d573ef3adeee0263 | 0f75c551a193c546b3db7f57e70e36bf2c192552 | /bigdata-module/bigdata-tx-manager/src/main/java/com/bosssoft/bigdata/manager/redis/RedisServerService.java | d8f5f64611e8e2e46243fb60a8f35f80302fc9b0 | [] | no_license | coomia/big-parent | f4ca69a0afdcabdefbf243add9bb26755647010e | ab33f26a47dd363eb99a2053bd7af951346f8ae5 | refs/heads/master | 2020-05-27T23:18:28.295712 | 2019-04-25T00:54:52 | 2019-04-25T00:54:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 649 | java | package com.bosssoft.bigdata.manager.redis;
import java.util.List;
import com.bosssoft.bigdata.manager.netty.model.TxGroup;
/**
* @author LCN on 2019/11/11
*/
public interface RedisServerService {
String loadNotifyJson();
void saveTransaction(String key, String json);
TxGroup getTxGroupByKey(String key);
v... | [
"975668939@qq.com"
] | 975668939@qq.com |
8e148a1dc16f4969b23752f687933c7e47fdb7e2 | 995fccc3026fa474da6af9cb87237ba4640a25e9 | /src/main/java/com/lothrazar/cyclicmagic/module/EnchantModule.java | 06a4333306607467f12b5820352aec7e4a884582 | [
"MIT"
] | permissive | Aemande123/Cyclic | 51c8f9d9068c95783dbb6c426e28e86a26bd58b5 | f457d243104ab2495b06f7acca0fda453b401145 | refs/heads/master | 2021-04-09T16:19:24.329957 | 2018-03-18T03:24:45 | 2018-03-18T03:24:45 | 99,875,313 | 0 | 0 | null | 2017-08-10T03:06:18 | 2017-08-10T03:06:18 | null | UTF-8 | Java | false | false | 6,544 | java | /*******************************************************************************
* The MIT License (MIT)
*
* Copyright (C) 2014-2018 Sam Bassett (aka Lothrazar)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software")... | [
"samson.bassett@gmail.com"
] | samson.bassett@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.