hexsha stringlengths 40 40 | size int64 3 1.05M | ext stringclasses 1
value | lang stringclasses 1
value | max_stars_repo_path stringlengths 5 1.02k | max_stars_repo_name stringlengths 4 126 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses list | max_stars_count float64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 5 1.02k | max_issues_repo_name stringlengths 4 114 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses list | max_issues_count float64 1 92.2k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 5 1.02k | max_forks_repo_name stringlengths 4 136 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses list | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | avg_line_length float64 2.55 99.9 | max_line_length int64 3 1k | alphanum_fraction float64 0.25 1 | index int64 0 1M | content stringlengths 3 1.05M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3e188ead3bfaa264a957cac8f8f1d5021ad7ee39 | 1,747 | java | Java | src/main/java/com/jillesvangurp/iterables/FilteringIterable.java | jillesvangurp/iterables-support | a0a967d82fb7d8d5504a50eb19d5e7f1541b2771 | [
"MIT"
] | null | null | null | src/main/java/com/jillesvangurp/iterables/FilteringIterable.java | jillesvangurp/iterables-support | a0a967d82fb7d8d5504a50eb19d5e7f1541b2771 | [
"MIT"
] | 1 | 2019-05-20T10:45:44.000Z | 2019-05-20T10:53:09.000Z | src/main/java/com/jillesvangurp/iterables/FilteringIterable.java | jillesvangurp/iterables-support | a0a967d82fb7d8d5504a50eb19d5e7f1541b2771 | [
"MIT"
] | null | null | null | 29.116667 | 83 | 0.482541 | 10,439 | package com.jillesvangurp.iterables;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Filter the elements in an Iterable using a {@link Filter}.
*
* @param <T> the type that is filtered
*/
public class FilteringIterable<T> implements Iterable<T> {
private final Iterable<T> iterable;
... |
3e188ec8577643f2891d938867e736604eb895c6 | 1,287 | java | Java | AndroidStudio/answers/assignments/fundamentals/2nd/ControllerAssignment3/app/src/main/java/jp/mixi/assignment/controller/adv/TitleFragment.java | harus2rock/AndroidTraining | b10a35143295d0e4b2248502f46d659631680c71 | [
"Apache-2.0"
] | 746 | 2015-01-03T01:36:11.000Z | 2022-03-23T10:14:26.000Z | AndroidStudio/answers/assignments/fundamentals/2nd/ControllerAssignment3/app/src/main/java/jp/mixi/assignment/controller/adv/TitleFragment.java | harus2rock/AndroidTraining | b10a35143295d0e4b2248502f46d659631680c71 | [
"Apache-2.0"
] | 108 | 2015-01-01T12:28:45.000Z | 2022-01-21T05:04:17.000Z | AndroidStudio/answers/assignments/fundamentals/2nd/ControllerAssignment3/app/src/main/java/jp/mixi/assignment/controller/adv/TitleFragment.java | harus2rock/AndroidTraining | b10a35143295d0e4b2248502f46d659631680c71 | [
"Apache-2.0"
] | 314 | 2015-01-02T08:12:22.000Z | 2022-01-21T05:06:13.000Z | 26.265306 | 75 | 0.683761 | 10,440 | package jp.mixi.assignment.controller.adv;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
/**
* A simple {@link Fragment} subclass.
* Use the {@link TitleFragment#newInstance} factory method to
* creat... |
3e188ecc50aaa5cdfd846b64d14bc93e345b9f89 | 280 | java | Java | app/src/main/java/com/lt/integrate/frame/demo/listener/HttpsListenerInterface.java | LeWaves/Seconds-frameWork | 6754fbdb1d20c582a75c79f89cee604151b2de78 | [
"MIT"
] | 1 | 2018-01-05T09:40:57.000Z | 2018-01-05T09:40:57.000Z | app/src/main/java/com/lt/integrate/frame/demo/listener/HttpsListenerInterface.java | LeWaves/App-FrameWork | 6754fbdb1d20c582a75c79f89cee604151b2de78 | [
"MIT"
] | null | null | null | app/src/main/java/com/lt/integrate/frame/demo/listener/HttpsListenerInterface.java | LeWaves/App-FrameWork | 6754fbdb1d20c582a75c79f89cee604151b2de78 | [
"MIT"
] | null | null | null | 18.666667 | 55 | 0.735714 | 10,441 | package com.lt.integrate.frame.demo.listener;
import android.view.View;
import java.util.List;
/**
* Created by iclick on 2017/9/26.
*/
public interface HttpsListenerInterface {
void onSucessHttps(List<Object> list,String data );
void onErrorHttps(String error );
}
|
3e188f66c198032dec1327b82b4bd64265d08e36 | 3,583 | java | Java | algorithms.complexities.ide/src-gen/algorithms/complexities/ide/contentassist/antlr/ComplexitiesParser.java | vicegd/algorithms.complexities | d51b15b6216336b28db634317ca2bf9afcc2244a | [
"MIT"
] | null | null | null | algorithms.complexities.ide/src-gen/algorithms/complexities/ide/contentassist/antlr/ComplexitiesParser.java | vicegd/algorithms.complexities | d51b15b6216336b28db634317ca2bf9afcc2244a | [
"MIT"
] | null | null | null | algorithms.complexities.ide/src-gen/algorithms/complexities/ide/contentassist/antlr/ComplexitiesParser.java | vicegd/algorithms.complexities | d51b15b6216336b28db634317ca2bf9afcc2244a | [
"MIT"
] | null | null | null | 49.082192 | 126 | 0.808261 | 10,442 | /*
* generated by Xtext 2.12.0
*/
package algorithms.complexities.ide.contentassist.antlr;
import algorithms.complexities.ide.contentassist.antlr.internal.InternalComplexitiesParser;
import algorithms.complexities.services.ComplexitiesGrammarAccess;
import com.google.inject.Inject;
import java.util.HashMap;
import j... |
3e188f8e3f9cfee88577c8e4e2f1beac12bce452 | 15,434 | java | Java | caliper/src/main/java/com/google/caliper/options/ParsedOptions.java | Aexyn/caliper | 5edf5db29d06243d3ef7754cd433601edbb9fdb7 | [
"Apache-2.0"
] | null | null | null | caliper/src/main/java/com/google/caliper/options/ParsedOptions.java | Aexyn/caliper | 5edf5db29d06243d3ef7754cd433601edbb9fdb7 | [
"Apache-2.0"
] | 1 | 2018-09-21T23:06:43.000Z | 2018-09-21T23:06:43.000Z | caliper/src/main/java/com/google/caliper/options/ParsedOptions.java | Aexyn/caliper | 5edf5db29d06243d3ef7754cd433601edbb9fdb7 | [
"Apache-2.0"
] | null | null | null | 38.297767 | 100 | 0.564857 | 10,443 | /*
* Copyright (C) 2011 Google 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 law or agreed to in ... |
3e188fb62f38eea7f9b2061c5ef51d56e2f108e9 | 8,814 | java | Java | src/main/java/org/olat/resource/accesscontrol/provider/paypal/ui/PaypalMasterAccountController.java | JHDSonline/OpenOLAT | 449e1f1753162aac458dda15a6baac146ecbdb16 | [
"Apache-2.0"
] | 191 | 2018-03-29T09:55:44.000Z | 2022-03-23T06:42:12.000Z | src/main/java/org/olat/resource/accesscontrol/provider/paypal/ui/PaypalMasterAccountController.java | JHDSonline/OpenOLAT | 449e1f1753162aac458dda15a6baac146ecbdb16 | [
"Apache-2.0"
] | 68 | 2018-05-11T06:19:00.000Z | 2022-01-25T18:03:26.000Z | src/main/java/org/olat/resource/accesscontrol/provider/paypal/ui/PaypalMasterAccountController.java | JHDSonline/OpenOLAT | 449e1f1753162aac458dda15a6baac146ecbdb16 | [
"Apache-2.0"
] | 139 | 2018-04-27T09:46:11.000Z | 2022-03-27T08:52:50.000Z | 33.942308 | 128 | 0.746856 | 10,444 | /**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* ... |
3e1890dc6e885d11d3995f9e127d1944517b7a31 | 5,869 | java | Java | src/java/Servlets/UsuarioServlet.java | csalgadolizana/MisOfertasWeb | bc54ed3cb277a89f388950676ab2a84d2232b5ca | [
"MIT"
] | null | null | null | src/java/Servlets/UsuarioServlet.java | csalgadolizana/MisOfertasWeb | bc54ed3cb277a89f388950676ab2a84d2232b5ca | [
"MIT"
] | null | null | null | src/java/Servlets/UsuarioServlet.java | csalgadolizana/MisOfertasWeb | bc54ed3cb277a89f388950676ab2a84d2232b5ca | [
"MIT"
] | null | null | null | 39.389262 | 123 | 0.645596 | 10,445 | /*
* 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 Servlets;
import servicios.Cliente;
import servicios.Persona;
import servicios.Usuario;
import java.io.IOException;
import jav... |
3e1892247eb42de7324706aa29c4f925085a060e | 148 | java | Java | Auth/src/main/java/com/auth/mapper/RoleMapper.java | EtachGu/OAuth2SSO | 521eeebcf0f638383d90020e95821be26dacff4b | [
"MIT"
] | 2 | 2019-03-24T06:02:06.000Z | 2019-03-25T02:07:12.000Z | Auth/src/main/java/com/auth/mapper/RoleMapper.java | EtachGu/OAuth2SSO | 521eeebcf0f638383d90020e95821be26dacff4b | [
"MIT"
] | null | null | null | Auth/src/main/java/com/auth/mapper/RoleMapper.java | EtachGu/OAuth2SSO | 521eeebcf0f638383d90020e95821be26dacff4b | [
"MIT"
] | null | null | null | 21.142857 | 50 | 0.797297 | 10,446 | package com.auth.mapper;
import com.auth.entity.Role;
import tk.mybatis.mapper.common.Mapper;
public interface RoleMapper extends Mapper<Role> {
} |
3e1892e14c558d57b33e473e76465d9b38bc8ffe | 1,007 | java | Java | src/main/java/com/github/crimsondawn45/basicshields/object/BasicShieldEnchantment.java | ogpaulw/Basic-Shields-Fabric | dc1d92e91bed751a59d266543a1aec2fc116558f | [
"CC0-1.0"
] | 3 | 2022-01-09T10:10:13.000Z | 2022-03-27T03:31:42.000Z | src/main/java/com/github/crimsondawn45/basicshields/object/BasicShieldEnchantment.java | ogpaulw/Basic-Shields-Fabric | dc1d92e91bed751a59d266543a1aec2fc116558f | [
"CC0-1.0"
] | 32 | 2021-12-31T23:22:02.000Z | 2022-03-25T18:39:31.000Z | src/main/java/com/github/crimsondawn45/basicshields/object/BasicShieldEnchantment.java | ogpaulw/Basic-Shields-Fabric | dc1d92e91bed751a59d266543a1aec2fc116558f | [
"CC0-1.0"
] | 2 | 2022-02-11T12:27:34.000Z | 2022-03-21T20:03:24.000Z | 27.972222 | 113 | 0.718967 | 10,447 | package com.github.crimsondawn45.basicshields.object;
import com.github.crimsondawn45.basicshields.initializers.BasicShields;
import com.github.crimsondawn45.fabricshieldlib.lib.object.FabricShieldEnchantment;
import net.minecraft.util.Identifier;
import net.minecraft.util.registry.Registry;
public class BasicShield... |
3e18935c369ff28daa483ebf2f49918c00da1f96 | 12,598 | java | Java | src/main/java/com/ning/billing/recurly/model/RecurlyUnitCurrency.java | demetrio812/recurly-java-library | 7e1ee6310bcb736d2a629a4b9d44c7846c934b99 | [
"Apache-2.0"
] | 27 | 2015-01-16T08:06:16.000Z | 2022-02-22T22:43:50.000Z | src/main/java/com/ning/billing/recurly/model/RecurlyUnitCurrency.java | demetrio812/recurly-java-library | 7e1ee6310bcb736d2a629a4b9d44c7846c934b99 | [
"Apache-2.0"
] | 277 | 2015-01-02T14:46:22.000Z | 2022-03-11T10:29:53.000Z | src/main/java/com/ning/billing/recurly/model/RecurlyUnitCurrency.java | demetrio812/recurly-java-library | 7e1ee6310bcb736d2a629a4b9d44c7846c934b99 | [
"Apache-2.0"
] | 78 | 2015-01-12T20:33:11.000Z | 2022-02-22T22:43:52.000Z | 33.240106 | 109 | 0.653834 | 10,448 | /*
* Copyright 2010-2014 Ning, Inc.
* Copyright 2014-2015 The Billing Project, LLC
*
* The Billing Project licenses this file to you under the Apache License, version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* http:/... |
3e189378fd3ad7334bae76a4ef0f6523b0aeba7a | 1,728 | java | Java | src/main/java/fr/ritaly/dungeonmaster/actuator/HasActuators.java | laurentd75/yadmjc | 70f23697bf6060ae2dceccbd0bc9ac92b6c6d29f | [
"Apache-2.0"
] | 4 | 2016-11-24T16:25:43.000Z | 2019-04-05T06:57:14.000Z | src/main/java/fr/ritaly/dungeonmaster/actuator/HasActuators.java | laurentd75/yadmjc | 70f23697bf6060ae2dceccbd0bc9ac92b6c6d29f | [
"Apache-2.0"
] | 1 | 2020-11-21T14:58:26.000Z | 2020-11-22T13:08:56.000Z | src/main/java/fr/ritaly/dungeonmaster/actuator/HasActuators.java | laurentd75/yadmjc | 70f23697bf6060ae2dceccbd0bc9ac92b6c6d29f | [
"Apache-2.0"
] | 6 | 2017-01-14T20:36:50.000Z | 2021-04-04T16:41:36.000Z | 34.039216 | 73 | 0.714286 | 10,449 | /**
* 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... |
3e18940fd1e5e82ba34372d60a9e351acd1ea644 | 1,194 | java | Java | casadocodigo/src/main/java/br/com/casadocodigo/controllers/EstadoController.java | HennanGadelha/orange-talents-05-template-casa-do-codigo | 86fe4078513ff9b1e4b0ec87a5fe829e409bdbe0 | [
"Apache-2.0"
] | null | null | null | casadocodigo/src/main/java/br/com/casadocodigo/controllers/EstadoController.java | HennanGadelha/orange-talents-05-template-casa-do-codigo | 86fe4078513ff9b1e4b0ec87a5fe829e409bdbe0 | [
"Apache-2.0"
] | null | null | null | casadocodigo/src/main/java/br/com/casadocodigo/controllers/EstadoController.java | HennanGadelha/orange-talents-05-template-casa-do-codigo | 86fe4078513ff9b1e4b0ec87a5fe829e409bdbe0 | [
"Apache-2.0"
] | null | null | null | 27.767442 | 92 | 0.832496 | 10,450 | package br.com.casadocodigo.controllers;
import br.com.casadocodigo.config.validacoes.ValidacaoEstadoPorPais;
import br.com.casadocodigo.dtos.dtosRequest.EstadoDto;
import br.com.casadocodigo.models.Estado;
import br.com.casadocodigo.repositories.EstadoRepository;
import br.com.casadocodigo.repositories.PaisRepository... |
3e1894efcc536c067edb8bac882b9667b8d64bea | 505 | java | Java | Collection/src/linkedlist/linkedlist_search.java | engineerscodes/JavaWorkSpaceHUB | 576fc0c0417c33948110d408ce0fd010706abbf3 | [
"MIT"
] | 4 | 2020-09-02T16:13:58.000Z | 2022-02-01T00:05:08.000Z | Collection/src/linkedlist/linkedlist_search.java | engineerscodes/JavaWorkSpaceHUB | 576fc0c0417c33948110d408ce0fd010706abbf3 | [
"MIT"
] | null | null | null | Collection/src/linkedlist/linkedlist_search.java | engineerscodes/JavaWorkSpaceHUB | 576fc0c0417c33948110d408ce0fd010706abbf3 | [
"MIT"
] | 5 | 2020-09-05T11:51:47.000Z | 2021-10-01T07:23:41.000Z | 16.290323 | 52 | 0.657426 | 10,451 | /**
*
*/
package linkedlist;
import java.util.*;
/**
* @author M.NAVEEN
RANDOM CODER'S
*
*/
public class linkedlist_search
{
static linkedlist l;
static Scanner nav;
public linkedlist_search()
{
l=new linkedlist();
nav=new Scanner(System.in);
}
public static void main(String[] args)
{ ... |
3e18951e37234d781beef110a6a53a9fe05c3fab | 1,703 | java | Java | spartanizer-plugin/src/main/java/il/org/spartan/spartanizer/research/nanos/CachingPattern.java | SpartanRefactoring/spartanizer | 158ab742d27dca1b42edb0b9858ae8753f4b22d1 | [
"MIT"
] | 76 | 2016-09-20T00:30:39.000Z | 2017-05-02T13:09:24.000Z | spartanizer-plugin/src/main/java/il/org/spartan/spartanizer/research/nanos/CachingPattern.java | mittelman/spartan-refactoring | 158ab742d27dca1b42edb0b9858ae8753f4b22d1 | [
"MIT"
] | 1,190 | 2016-09-06T21:23:25.000Z | 2017-05-01T20:48:00.000Z | spartanizer-plugin/src/main/java/il/org/spartan/spartanizer/research/nanos/CachingPattern.java | SpartanRefactoring/spartan-refactoring | 158ab742d27dca1b42edb0b9858ae8753f4b22d1 | [
"MIT"
] | 61 | 2016-09-07T07:13:02.000Z | 2017-01-20T11:59:26.000Z | 37.021739 | 109 | 0.741632 | 10,452 | package il.org.spartan.spartanizer.research.nanos;
import static il.org.spartan.spartanizer.ast.navigate.step.parent;
import static il.org.spartan.spartanizer.research.TipperFactory.statementsPattern;
import org.eclipse.jdt.core.dom.Block;
import org.eclipse.jdt.core.dom.IfStatement;
import il.org.spartan.spartanize... |
3e1896421affadb8a9dd30354b5632ac918c19f1 | 3,605 | java | Java | OpenAMASE/src/Core/avtas/data/DelimetedReader.java | afrl-rq/OpenAMASE | f5d0c856ea01335e96ac98157cfd0777fa00195f | [
"NASA-1.3"
] | 23 | 2018-01-12T02:22:50.000Z | 2022-01-27T18:06:01.000Z | OpenAMASE/src/Core/avtas/data/DelimetedReader.java | sahabi/OpenAMASE | b50f5a71265a1f1644c49cce2161b40b108c65fe | [
"NASA-1.3"
] | 7 | 2017-06-23T16:26:16.000Z | 2021-05-27T16:49:08.000Z | OpenAMASE/src/Core/avtas/data/DelimetedReader.java | sahabi/OpenAMASE | b50f5a71265a1f1644c49cce2161b40b108c65fe | [
"NASA-1.3"
] | 32 | 2017-07-10T21:18:50.000Z | 2021-11-22T14:38:31.000Z | 31.902655 | 105 | 0.568932 | 10,453 | // ===============================================================================
// Authors: AFRL/RQQD
// Organization: Air Force Research Laboratory, Aerospace Systems Directorate, Power and Control Division
//
// Copyright (c) 2017 Government of the United State of America, as represented by
// the Secretary of th... |
3e189667e30fb2ccdd740e822e21720475e817b0 | 4,983 | java | Java | shardingsphere-sql-parser/shardingsphere-sql-parser-binder/src/main/java/org/apache/shardingsphere/sql/parser/binder/metadata/column/ColumnMetaDataLoader.java | forachange/sharding-jdbc | d44ee3ba864b001bf4f02f6a13bcad918f7d0ec2 | [
"Apache-2.0"
] | 2 | 2020-07-17T09:46:21.000Z | 2020-07-17T09:46:29.000Z | shardingsphere-sql-parser/shardingsphere-sql-parser-binder/src/main/java/org/apache/shardingsphere/sql/parser/binder/metadata/column/ColumnMetaDataLoader.java | forachange/sharding-jdbc | d44ee3ba864b001bf4f02f6a13bcad918f7d0ec2 | [
"Apache-2.0"
] | null | null | null | shardingsphere-sql-parser/shardingsphere-sql-parser-binder/src/main/java/org/apache/shardingsphere/sql/parser/binder/metadata/column/ColumnMetaDataLoader.java | forachange/sharding-jdbc | d44ee3ba864b001bf4f02f6a13bcad918f7d0ec2 | [
"Apache-2.0"
] | 1 | 2020-12-07T07:55:06.000Z | 2020-12-07T07:55:06.000Z | 44.097345 | 161 | 0.671884 | 10,454 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
3e18967a9adbccc2dac4030f93e70dbd8b347f89 | 4,239 | java | Java | src/main/java/com/github/nosan/embedded/cassandra/cql/CqlDataSet.java | eugenediatlov/embedded-cassandra | 0ecb21ac27a07be49ff4b78fe947671337a6f4ff | [
"Apache-2.0"
] | 64 | 2018-06-26T14:38:54.000Z | 2022-03-17T02:09:57.000Z | src/main/java/com/github/nosan/embedded/cassandra/cql/CqlDataSet.java | eugenediatlov/embedded-cassandra | 0ecb21ac27a07be49ff4b78fe947671337a6f4ff | [
"Apache-2.0"
] | 133 | 2018-07-09T13:47:28.000Z | 2022-03-31T11:52:34.000Z | src/main/java/com/github/nosan/embedded/cassandra/cql/CqlDataSet.java | eugenediatlov/embedded-cassandra | 0ecb21ac27a07be49ff4b78fe947671337a6f4ff | [
"Apache-2.0"
] | 15 | 2018-07-23T12:55:31.000Z | 2022-03-14T16:48:22.000Z | 30.717391 | 85 | 0.72352 | 10,455 | /*
* Copyright 2020-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
3e18972cabe6a2cd5175f767043d8e32d2d96684 | 1,007 | java | Java | 1.JavaSyntax/src/com/javarush/task/pro/task09/task0914/Solution.java | rfedorenkov/JavaRushTasks | 1ab103fa3bf50a0bd955b5b71bac5131969ef738 | [
"MIT"
] | null | null | null | 1.JavaSyntax/src/com/javarush/task/pro/task09/task0914/Solution.java | rfedorenkov/JavaRushTasks | 1ab103fa3bf50a0bd955b5b71bac5131969ef738 | [
"MIT"
] | null | null | null | 1.JavaSyntax/src/com/javarush/task/pro/task09/task0914/Solution.java | rfedorenkov/JavaRushTasks | 1ab103fa3bf50a0bd955b5b71bac5131969ef738 | [
"MIT"
] | null | null | null | 29.617647 | 104 | 0.67428 | 10,456 | package com.javarush.task.pro.task09.task0914;
/**
* Обновление пути
* Реализуй метод changePath(String, String) так, чтобы он заменял версию jdk в пути,
* полученном первым параметром метода, на версию, полученную вторым параметром, и возвращал новый путь.
* Версия jdk расположена между третьим и четвертым "/".
... |
3e18975467fe309fc119cc718cfd165c09dd06db | 6,750 | java | Java | infinispan/core/src/test/java/org/infinispan/test/fwk/UnitTestTestNGListener.java | nmldiegues/stibt | 1ee662b7d4ed1f80e6092c22e235a3c994d1d393 | [
"Apache-2.0"
] | 4 | 2015-01-28T20:46:14.000Z | 2021-11-16T06:45:27.000Z | infinispan/core/src/test/java/org/infinispan/test/fwk/UnitTestTestNGListener.java | cloudtm/sti-bt | ef80d454627cc376d35d434a48088c311bdf3408 | [
"FTL"
] | 5 | 2022-01-21T23:13:01.000Z | 2022-02-09T23:01:28.000Z | infinispan/core/src/test/java/org/infinispan/test/fwk/UnitTestTestNGListener.java | cloudtm/sti-bt | ef80d454627cc376d35d434a48088c311bdf3408 | [
"FTL"
] | 2 | 2015-05-29T00:07:29.000Z | 2019-05-22T17:52:45.000Z | 40.22619 | 150 | 0.684818 | 10,457 | /*
* JBoss, Home of Professional Open Source
* Copyright 2010 Red Hat Inc. and/or its affiliates and other
* contributors as indicated by the @author tags. All rights reserved.
* See the copyright.txt in the distribution for a full listing of
* individual contributors.
*
* This is free software; you can redistri... |
3e1897f383cd45eb4ac57df475e8cbe72bad8c0f | 2,340 | java | Java | shout/src/instrumentTest/java/org/whispercomm/shout/id/KeyStorageImplTest.java | jackhe-umich/Shout-revised | 603f98c1a0c4a30136e09976bc6f3df785b26424 | [
"Apache-2.0"
] | 2 | 2018-11-11T01:06:55.000Z | 2020-05-30T06:44:04.000Z | shout/src/instrumentTest/java/org/whispercomm/shout/id/KeyStorageImplTest.java | jackhe-umich/Shout-revised | 603f98c1a0c4a30136e09976bc6f3df785b26424 | [
"Apache-2.0"
] | null | null | null | shout/src/instrumentTest/java/org/whispercomm/shout/id/KeyStorageImplTest.java | jackhe-umich/Shout-revised | 603f98c1a0c4a30136e09976bc6f3df785b26424 | [
"Apache-2.0"
] | 2 | 2018-11-11T01:07:00.000Z | 2019-10-30T22:26:05.000Z | 24.375 | 68 | 0.741453 | 10,458 |
package org.whispercomm.shout.id;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import or... |
3e18989166d62b34fad8f3db3539859c1fca7b7d | 3,851 | java | Java | java/java.source.base/test/unit/src/org/netbeans/modules/java/source/transform/Transformer.java | tusharvjoshi/incubator-netbeans | a61bd21f4324f7e73414633712522811cb20ac93 | [
"Apache-2.0"
] | 1,056 | 2019-04-25T20:00:35.000Z | 2022-03-30T04:46:14.000Z | java/java.source.base/test/unit/src/org/netbeans/modules/java/source/transform/Transformer.java | Marc382/netbeans | 4bee741d24a3fdb05baf135de5e11a7cd95bd64e | [
"Apache-2.0"
] | 1,846 | 2019-04-25T20:50:05.000Z | 2022-03-31T23:40:41.000Z | java/java.source.base/test/unit/src/org/netbeans/modules/java/source/transform/Transformer.java | Marc382/netbeans | 4bee741d24a3fdb05baf135de5e11a7cd95bd64e | [
"Apache-2.0"
] | 550 | 2019-04-25T20:04:33.000Z | 2022-03-25T17:43:01.000Z | 34.079646 | 95 | 0.712802 | 10,459 | /*
* 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 ... |
3e1898f0bfc7eb3d2d4710e977ba9a92c1ae52a4 | 680 | java | Java | SpringBoot-Mybatis-Audit/src/main/java/cn/z201/audit/service/impl/AuditServiceImpl.java | z201/code-example | 391591a3ff48f7c66cebec516132ea74e8178337 | [
"Unlicense"
] | null | null | null | SpringBoot-Mybatis-Audit/src/main/java/cn/z201/audit/service/impl/AuditServiceImpl.java | z201/code-example | 391591a3ff48f7c66cebec516132ea74e8178337 | [
"Unlicense"
] | 8 | 2022-01-27T02:57:11.000Z | 2022-02-07T14:13:03.000Z | SpringBoot-Mybatis-Audit/src/main/java/cn/z201/audit/service/impl/AuditServiceImpl.java | z201/code-example | 391591a3ff48f7c66cebec516132ea74e8178337 | [
"Unlicense"
] | null | null | null | 24.428571 | 62 | 0.747076 | 10,460 | package cn.z201.audit.service.impl;
import cn.z201.audit.repository.AuditRepository;
import cn.z201.audit.service.AuditServiceI;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* @author efpyi@example.com
**/
@Servic... |
3e189901e90da17784e7a24e726782ed2a80d64e | 324 | java | Java | 10_Printf/src/Program.java | martin919191/JavaIntermedio | a5b109e771da058b46bdcafd287255c1e5118a19 | [
"MIT"
] | null | null | null | 10_Printf/src/Program.java | martin919191/JavaIntermedio | a5b109e771da058b46bdcafd287255c1e5118a19 | [
"MIT"
] | null | null | null | 10_Printf/src/Program.java | martin919191/JavaIntermedio | a5b109e771da058b46bdcafd287255c1e5118a19 | [
"MIT"
] | null | null | null | 20.25 | 84 | 0.626543 | 10,461 |
public class Program {
public static void main(String[] args) {
float f1 = 0.38134F;
float f2 = 37.9999F;
System.out.printf("El primer numero es %.2f y el segundo numero es %.2f\n",f1,f2);
String s = "texto en minuscula";
System.out.printf("%s", s);
System.out.printf("El numero es \"%.2f\"",f1);
}... |
3e189a37b131f4094f25da68af08efce7b155711 | 1,068 | java | Java | src/main/java/com/ichess/jvoodoo/ParameterPredicat.java | i-chess/jvoodoo | c1a2a509c98281b6322d2fe9a1133c92f9beaa28 | [
"MIT"
] | null | null | null | src/main/java/com/ichess/jvoodoo/ParameterPredicat.java | i-chess/jvoodoo | c1a2a509c98281b6322d2fe9a1133c92f9beaa28 | [
"MIT"
] | null | null | null | src/main/java/com/ichess/jvoodoo/ParameterPredicat.java | i-chess/jvoodoo | c1a2a509c98281b6322d2fe9a1133c92f9beaa28 | [
"MIT"
] | null | null | null | 28.105263 | 80 | 0.574906 | 10,462 | //==============================================================================
// Copyright (c) 2009-2014 ichess.co.il
//
//This document contains confidential information which is protected by
//copyright and is proprietary to ichess.co.il. No part
//of this document may be used, copied, disclosed, or con... |
3e189a6b524797b8d108344d8531e6aa7938ad00 | 3,415 | java | Java | osc-domain/src/main/java/org/osc/core/broker/model/entities/virtualization/openstack/VM.java | lakodali/osc-core | 5f006a1a543d79695dd86485cc15a016f2ea015e | [
"Apache-2.0"
] | 46 | 2017-06-28T16:21:25.000Z | 2022-02-26T03:27:52.000Z | osc-domain/src/main/java/org/osc/core/broker/model/entities/virtualization/openstack/VM.java | lakodali/osc-core | 5f006a1a543d79695dd86485cc15a016f2ea015e | [
"Apache-2.0"
] | 216 | 2017-06-28T16:47:06.000Z | 2018-07-21T04:04:19.000Z | osc-domain/src/main/java/org/osc/core/broker/model/entities/virtualization/openstack/VM.java | lakodali/osc-core | 5f006a1a543d79695dd86485cc15a016f2ea015e | [
"Apache-2.0"
] | 30 | 2017-06-29T03:13:02.000Z | 2021-08-16T03:01:54.000Z | 26.679688 | 100 | 0.641874 | 10,463 | /*******************************************************************************
* Copyright (c) Intel Corporation
* Copyright (c) 2017
*
* 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
... |
3e189acdfb3aa595c5626c96c051304a3266d1df | 20,561 | java | Java | src/main/java/com/paraam/cpeagent/core/CpeActions.java | LuKePicci/tr069-simulator | 72612814329257477411a6039b83718db96d118a | [
"MIT"
] | 4 | 2019-08-07T08:19:37.000Z | 2021-08-17T06:45:59.000Z | src/main/java/com/paraam/cpeagent/core/CpeActions.java | LuKePicci/tr069-simulator | 72612814329257477411a6039b83718db96d118a | [
"MIT"
] | 2 | 2017-11-28T09:09:59.000Z | 2019-04-03T14:35:09.000Z | src/main/java/com/paraam/cpeagent/core/CpeActions.java | LuKePicci/tr069-simulator | 72612814329257477411a6039b83718db96d118a | [
"MIT"
] | 10 | 2017-06-30T22:57:31.000Z | 2021-01-26T13:38:55.000Z | 41.287149 | 129 | 0.692622 | 10,464 | package com.paraam.cpeagent.core;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Random;
import org.dslforum.cwmp_1_0.AccessList;
import org.dslforum.cwmp_1_0.AddObject;
import org.dslforum.cwmp_1_... |
3e189b29b3274140830d584bf6fa7a9296a9bfe7 | 510 | java | Java | jmx/src/main/java/org/suggs/sandbox/jmx/jmxbook/components/propertymanager/PropertyManagerMBean.java | suggitpe/java-sandbox | 0abfb9282e12d40eef0d1c4e7dc925b1b39f728d | [
"Apache-2.0"
] | null | null | null | jmx/src/main/java/org/suggs/sandbox/jmx/jmxbook/components/propertymanager/PropertyManagerMBean.java | suggitpe/java-sandbox | 0abfb9282e12d40eef0d1c4e7dc925b1b39f728d | [
"Apache-2.0"
] | null | null | null | jmx/src/main/java/org/suggs/sandbox/jmx/jmxbook/components/propertymanager/PropertyManagerMBean.java | suggitpe/java-sandbox | 0abfb9282e12d40eef0d1c4e7dc925b1b39f728d | [
"Apache-2.0"
] | null | null | null | 22.173913 | 99 | 0.713725 | 10,465 | /*
* PropertyManagerMBean.java created on 20 Feb 2008 19:18:14 by suggitpe for project SandBox - JMX
*
*/
package org.suggs.sandbox.jmx.jmxbook.components.propertymanager;
import java.util.Enumeration;
/**
* MBean interface for setting properties
*/
public interface PropertyManagerMBean {
publ... |
3e189b4a6ccef17d7f2071d8a6283938ee5a49cc | 2,122 | java | Java | cfsdk/src/main/java/io/harness/cfsdk/cloud/core/model/AuthenticationResponse.java | milos85vasic/ff-android-client-sdk | 1f6f4696ff56227be7563d583ea22440c794efcd | [
"Apache-2.0"
] | 2 | 2021-04-29T17:42:30.000Z | 2021-05-07T16:25:53.000Z | cfsdk/src/main/java/io/harness/cfsdk/cloud/core/model/AuthenticationResponse.java | milos85vasic/ff-android-client-sdk | 1f6f4696ff56227be7563d583ea22440c794efcd | [
"Apache-2.0"
] | 3 | 2021-05-13T13:47:44.000Z | 2021-06-12T08:47:29.000Z | cfsdk/src/main/java/io/harness/cfsdk/cloud/core/model/AuthenticationResponse.java | milos85vasic/ff-android-client-sdk | 1f6f4696ff56227be7563d583ea22440c794efcd | [
"Apache-2.0"
] | 2 | 2021-03-02T02:42:54.000Z | 2021-03-02T09:52:51.000Z | 22.774194 | 109 | 0.684608 | 10,466 | /*
* Harness feature flag service client apis
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
* Contact: anpch@example.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-gener... |
3e189be3ee90913f97c0a6f8051565bed2b86384 | 806 | java | Java | src/java/runtime/intrinsic/_f2i.java | bhosmer/mesh | e8f7bca498a91d9fd447fa3ffe00f8d96fa01b1b | [
"MIT"
] | 6 | 2017-02-24T05:38:25.000Z | 2021-06-14T12:06:15.000Z | src/java/runtime/intrinsic/_f2i.java | bhosmer/mesh | e8f7bca498a91d9fd447fa3ffe00f8d96fa01b1b | [
"MIT"
] | null | null | null | src/java/runtime/intrinsic/_f2i.java | bhosmer/mesh | e8f7bca498a91d9fd447fa3ffe00f8d96fa01b1b | [
"MIT"
] | 2 | 2016-09-19T03:12:33.000Z | 2017-02-24T05:38:29.000Z | 22.388889 | 61 | 0.666253 | 10,467 | /**
* ADOBE SYSTEMS INCORPORATED
* Copyright 2009-2013 Adobe Systems Incorporated
* All Rights Reserved.
*
* NOTICE: Adobe permits you to use, modify, and distribute
* this file in accordance with the terms of the MIT license,
* a copy of which can be found in the LICENSE.txt file or at
* http://opensource.org/... |
3e189c339e25e3e04a44855bec6dec61cdd76128 | 2,680 | java | Java | src/main/java/seedu/address/storage/StorageManager.java | lirc572/tp | b533d4f1aa3cc51b9d42540bbafe2763c5ea8f8a | [
"MIT"
] | 3 | 2021-02-09T08:52:39.000Z | 2021-02-24T10:28:02.000Z | src/main/java/seedu/address/storage/StorageManager.java | lirc572/tp | b533d4f1aa3cc51b9d42540bbafe2763c5ea8f8a | [
"MIT"
] | 370 | 2021-02-21T07:02:45.000Z | 2021-04-15T18:08:53.000Z | src/main/java/seedu/address/storage/StorageManager.java | lirc572/tp | b533d4f1aa3cc51b9d42540bbafe2763c5ea8f8a | [
"MIT"
] | 5 | 2021-02-13T12:59:17.000Z | 2021-04-12T13:36:39.000Z | 33.924051 | 117 | 0.724627 | 10,468 | package seedu.address.storage;
import java.io.IOException;
import java.nio.file.Path;
import java.util.Optional;
import java.util.logging.Logger;
import seedu.address.commons.core.LogsCenter;
import seedu.address.commons.exceptions.DataConversionException;
import seedu.address.model.ReadOnlyColabFolder;
import seedu.... |
3e189cda9c66e353f121b94afc4f2de0820aaace | 58,112 | java | Java | MetaVisualizer/src/main/java/com/entoptic/metaVisualizer/misc/WMV_Utilities.java | spatialized/MetaVisualizer | 9818de99e3599a7890443a72d917b3119eab4cb7 | [
"Apache-2.0"
] | null | null | null | MetaVisualizer/src/main/java/com/entoptic/metaVisualizer/misc/WMV_Utilities.java | spatialized/MetaVisualizer | 9818de99e3599a7890443a72d917b3119eab4cb7 | [
"Apache-2.0"
] | null | null | null | MetaVisualizer/src/main/java/com/entoptic/metaVisualizer/misc/WMV_Utilities.java | spatialized/MetaVisualizer | 9818de99e3599a7890443a72d917b3119eab4cb7 | [
"Apache-2.0"
] | null | null | null | 28.969093 | 268 | 0.659124 | 10,469 | package main.java.com.entoptic.metaVisualizer.misc;
import processing.core.PApplet;
import processing.core.PConstants;
import processing.core.PImage;
import processing.core.PVector;
import processing.data.IntList;
import java.awt.image.BufferedImage;
import java.io.BufferedReader;
import java.io.File;
import java.io.... |
3e189d7f39c9e3f7e61f77473b884adf68c79e3d | 718 | java | Java | common-core-open/src/main/java/com/bbn/bue/common/files/KeyValueSink.java | rgabbard-bbn/bue-common-open | d618652674d647867306e2e4b987a21b7c29c015 | [
"MIT"
] | null | null | null | common-core-open/src/main/java/com/bbn/bue/common/files/KeyValueSink.java | rgabbard-bbn/bue-common-open | d618652674d647867306e2e4b987a21b7c29c015 | [
"MIT"
] | 10 | 2019-03-17T15:48:45.000Z | 2019-03-17T15:49:01.000Z | common-core-open/src/main/java/com/bbn/bue/common/files/KeyValueSink.java | rgabbard-bbn/bue-common-open | d618652674d647867306e2e4b987a21b7c29c015 | [
"MIT"
] | null | null | null | 27.615385 | 88 | 0.724234 | 10,470 | package com.bbn.bue.common.files;
import java.io.IOException;
/**
* Something which accepts key value pairs. Typically this will write to some data store
* which can later be opened as a {@link KeyValueSource}, but this is not required.
*
* Some standard implementations are provided in {@link KeyValueSinks}.
*
... |
3e189e5827dca079e7e0f83080c1bc5eb4447d9c | 170 | java | Java | core-lib/es5/src/main/java/def/dom/OES_element_index_uint.java | chfeiler/jsweet | 2421eea53d6f83b8e0cd1574de50492a41ccd385 | [
"Apache-2.0"
] | 1,374 | 2015-11-18T19:09:59.000Z | 2022-03-27T16:33:01.000Z | core-lib/es5/src/main/java/def/dom/OES_element_index_uint.java | chfeiler/jsweet | 2421eea53d6f83b8e0cd1574de50492a41ccd385 | [
"Apache-2.0"
] | 661 | 2015-11-22T08:00:56.000Z | 2022-03-07T07:11:15.000Z | core-lib/es5/src/main/java/def/dom/OES_element_index_uint.java | chfeiler/jsweet | 2421eea53d6f83b8e0cd1574de50492a41ccd385 | [
"Apache-2.0"
] | 193 | 2015-12-04T16:00:18.000Z | 2022-03-22T06:06:07.000Z | 24.285714 | 59 | 0.794118 | 10,471 | package def.dom;
public class OES_element_index_uint extends def.js.Object {
public static OES_element_index_uint prototype;
public OES_element_index_uint(){}
}
|
3e189e5c13b0812bb118f75ec060300ed22c968f | 17,259 | java | Java | app/src/main/java/com/romickid/simpbook/fragments/FragmentExpense.java | romic7x/Simpbook | ee71b8dd8714bbc3dd2932fdcd34358fbaf1fce3 | [
"BSD-3-Clause"
] | 1 | 2019-01-03T22:15:50.000Z | 2019-01-03T22:15:50.000Z | app/src/main/java/com/romickid/simpbook/fragments/FragmentExpense.java | romic7x/Simpbook | ee71b8dd8714bbc3dd2932fdcd34358fbaf1fce3 | [
"BSD-3-Clause"
] | null | null | null | app/src/main/java/com/romickid/simpbook/fragments/FragmentExpense.java | romic7x/Simpbook | ee71b8dd8714bbc3dd2932fdcd34358fbaf1fce3 | [
"BSD-3-Clause"
] | null | null | null | 30.709964 | 113 | 0.61481 | 10,472 | package com.romickid.simpbook.fragments;
import android.content.Context;
import android.content.Intent;
import android.database.sqlite.SQLiteDatabase;
import android.net.Uri;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.v4.app.Fragment;
import android.view... |
3e189e7e2ec6cfee69dbc9c58081672552348c0a | 1,904 | java | Java | driver-pulsar/src/main/java/io/nosqlbench/driver/pulsar/ops/PulsarBatchProducerStartOp.java | MC-JY/nosqlbench | 5902239cba6063d2394ca495f1f5100eb49ca7c1 | [
"Apache-2.0"
] | null | null | null | driver-pulsar/src/main/java/io/nosqlbench/driver/pulsar/ops/PulsarBatchProducerStartOp.java | MC-JY/nosqlbench | 5902239cba6063d2394ca495f1f5100eb49ca7c1 | [
"Apache-2.0"
] | null | null | null | driver-pulsar/src/main/java/io/nosqlbench/driver/pulsar/ops/PulsarBatchProducerStartOp.java | MC-JY/nosqlbench | 5902239cba6063d2394ca495f1f5100eb49ca7c1 | [
"Apache-2.0"
] | null | null | null | 38.08 | 133 | 0.718487 | 10,473 | /*
* Copyright (c) 2022 nosqlbench
*
* 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 ... |
3e189ea6a716f13f0c653c2ab5b630d9a3a1646d | 5,306 | java | Java | sharding-spring/sharding-jdbc-spring/sharding-jdbc-spring-namespace/src/main/java/org/apache/shardingsphere/shardingjdbc/spring/namespace/parser/EncryptDataSourceBeanDefinitionParser.java | rayoo/incubator-shardingsphere | 04682faf3d31eef68fa066c256ba8574920bb7b5 | [
"Apache-2.0"
] | null | null | null | sharding-spring/sharding-jdbc-spring/sharding-jdbc-spring-namespace/src/main/java/org/apache/shardingsphere/shardingjdbc/spring/namespace/parser/EncryptDataSourceBeanDefinitionParser.java | rayoo/incubator-shardingsphere | 04682faf3d31eef68fa066c256ba8574920bb7b5 | [
"Apache-2.0"
] | 2 | 2022-01-21T23:50:46.000Z | 2022-02-16T01:21:32.000Z | sharding-spring/sharding-jdbc-spring/sharding-jdbc-spring-namespace/src/main/java/org/apache/shardingsphere/shardingjdbc/spring/namespace/parser/EncryptDataSourceBeanDefinitionParser.java | rayoo/incubator-shardingsphere | 04682faf3d31eef68fa066c256ba8574920bb7b5 | [
"Apache-2.0"
] | null | null | null | 54.142857 | 153 | 0.797588 | 10,474 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... |
3e189ef28c4037b4779734ffdcbf601de6720883 | 1,209 | java | Java | eLMaze-Desktop/core/src/com/mygdx/elmaze/view/menus/ButtonFactory.java | FilipaDurao/LPOO-eLMaze | b4ed7e2ebe98a6e496f2154dd73f79014b2fa992 | [
"MIT"
] | null | null | null | eLMaze-Desktop/core/src/com/mygdx/elmaze/view/menus/ButtonFactory.java | FilipaDurao/LPOO-eLMaze | b4ed7e2ebe98a6e496f2154dd73f79014b2fa992 | [
"MIT"
] | null | null | null | eLMaze-Desktop/core/src/com/mygdx/elmaze/view/menus/ButtonFactory.java | FilipaDurao/LPOO-eLMaze | b4ed7e2ebe98a6e496f2154dd73f79014b2fa992 | [
"MIT"
] | null | null | null | 31 | 124 | 0.716294 | 10,475 | package com.mygdx.elmaze.view.menus;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.scenes.scene2d.ui.Button;
import com.badlogic.gdx.scenes.scene2d.utils.TextureRegionDrawable;
import com.badlogic.gdx.utils.Align;
/**
* Implements functions rela... |
3e18a0799bcd48b72d149c55a942d84629e12e82 | 37,960 | java | Java | TerrainViewer/src/ch/ethz/karto/map3d/Map3DViewer.java | OSUCartography/TerrainViewer | 588f51a23c66ae7fd06cc0df11bb021f820f4bb7 | [
"MIT"
] | 2 | 2015-01-16T19:27:33.000Z | 2017-11-01T15:56:13.000Z | TerrainViewer/src/ch/ethz/karto/map3d/Map3DViewer.java | OSUCartography/TerrainViewer | 588f51a23c66ae7fd06cc0df11bb021f820f4bb7 | [
"MIT"
] | null | null | null | TerrainViewer/src/ch/ethz/karto/map3d/Map3DViewer.java | OSUCartography/TerrainViewer | 588f51a23c66ae7fd06cc0df11bb021f820f4bb7 | [
"MIT"
] | null | null | null | 31.294312 | 101 | 0.595601 | 10,476 | package ch.ethz.karto.map3d;
import ch.ethz.karto.map3d.gui.Map3DOptionsPanel;
import javax.media.opengl.DebugGL2;
import javax.media.opengl.GL;
import javax.media.opengl.GL2;
import javax.media.opengl.GLAutoDrawable;
import javax.media.opengl.GLCapabilities;
import javax.media.opengl.GLProfile;
import javax.media.op... |
3e18a13a55e43f3b0925ae12c955eb44ed488646 | 1,885 | java | Java | src/main/java/com/swemel/sevenzip/CRC.java | srebrinb/OraSevenZip | 258f06063e2519bf0dde8efa01210071ab8e71fd | [
"Apache-2.0"
] | null | null | null | src/main/java/com/swemel/sevenzip/CRC.java | srebrinb/OraSevenZip | 258f06063e2519bf0dde8efa01210071ab8e71fd | [
"Apache-2.0"
] | null | null | null | src/main/java/com/swemel/sevenzip/CRC.java | srebrinb/OraSevenZip | 258f06063e2519bf0dde8efa01210071ab8e71fd | [
"Apache-2.0"
] | null | null | null | 21.420455 | 76 | 0.523077 | 10,477 | // SevenZip/CRC.java
package com.swemel.sevenzip;
public class CRC
{
static public int[] Table = new int[256];
static
{
for (int i = 0; i < 256; i++)
{
int r = i;
for (int j = 0; j < 8; j++)
if ((r & 1) != 0)
r = (r >>> 1) ^ 0xEDB88320;
else
r >>>= 1;
Table[i] = r;
}
}
int _val... |
3e18a2710790447889ed90e5641f468f305788fa | 1,559 | java | Java | server-java/freetank-plugin/src/main/java/org/youngmonkeys/freetank/plugin/PluginEntry.java | blackdragon09796/freetank | cca6d5c355fb7094b8a20d4c486e6c390a09ec20 | [
"Apache-1.1"
] | 1 | 2021-08-01T12:24:11.000Z | 2021-08-01T12:24:11.000Z | server-java/freetank-plugin/src/main/java/org/youngmonkeys/freetank/plugin/PluginEntry.java | blackdragon09796/freetank | cca6d5c355fb7094b8a20d4c486e6c390a09ec20 | [
"Apache-1.1"
] | null | null | null | server-java/freetank-plugin/src/main/java/org/youngmonkeys/freetank/plugin/PluginEntry.java | blackdragon09796/freetank | cca6d5c355fb7094b8a20d4c486e6c390a09ec20 | [
"Apache-1.1"
] | 1 | 2021-07-27T14:06:33.000Z | 2021-07-27T14:06:33.000Z | 29.415094 | 91 | 0.74984 | 10,478 | /**
*
*/
package org.youngmonkeys.freetank.plugin;
import java.util.Properties;
import com.tvd12.ezyfox.bean.EzyBeanContextBuilder;
import com.tvd12.ezyfoxserver.context.EzyPluginContext;
import com.tvd12.ezyfoxserver.context.EzyZoneContext;
import com.tvd12.ezyfoxserver.setting.EzyPluginSetting;
import com.tvd12.... |
3e18a2e40070da3a811a081460a25750308453e0 | 705 | java | Java | kxmall-data/src/main/java/com/kxmall/market/data/dto/CouponSkuDTO.java | zhengkaixing/kxmall | 572d4b9361a429c7770eac0fc50ec1fe4dff3736 | [
"Apache-2.0"
] | 99 | 2020-11-05T08:50:08.000Z | 2022-03-31T01:43:40.000Z | kxmall-data/src/main/java/com/kxmall/market/data/dto/CouponSkuDTO.java | canicula718/kxmall | 51e59ca3564cc0eacc04d830b307bcc7d12c977c | [
"Apache-2.0"
] | 2 | 2022-01-04T09:12:20.000Z | 2022-01-13T07:54:15.000Z | kxmall-data/src/main/java/com/kxmall/market/data/dto/CouponSkuDTO.java | canicula718/kxmall | 51e59ca3564cc0eacc04d830b307bcc7d12c977c | [
"Apache-2.0"
] | 16 | 2020-11-17T00:36:54.000Z | 2022-03-17T08:54:53.000Z | 17.195122 | 56 | 0.602837 | 10,479 | package com.kxmall.market.data.dto;
import com.kxmall.market.data.annotation.DtoDescription;
import lombok.Data;
/**
* 活动管理商品DTO
*
* @author kaixin
*/
@Data
public class CouponSkuDTO extends SuperDTO {
/**
* 活动主表id
*/
@DtoDescription(description = "优惠券id")
private Long couponId;
/**
... |
3e18a55cc86c8877a78b486bafbceeff27f54303 | 1,186 | java | Java | src/main/java/com/majruszs_difficulty/features/monster_spawn/ChargeCreeperOnSpawn.java | Majrusz/MajruszsProgressiveDifficulty | decf28085fdbc7872d661de9f934f39cb5802894 | [
"MIT"
] | 5 | 2020-12-24T20:09:36.000Z | 2022-01-05T05:09:13.000Z | src/main/java/com/majruszs_difficulty/features/monster_spawn/ChargeCreeperOnSpawn.java | Majrusz/MajruszsProgressiveDifficulty | decf28085fdbc7872d661de9f934f39cb5802894 | [
"MIT"
] | 78 | 2020-12-31T00:29:22.000Z | 2022-03-24T19:59:46.000Z | src/main/java/com/majruszs_difficulty/features/monster_spawn/ChargeCreeperOnSpawn.java | Majrusz/MajruszsProgressiveDifficulty | decf28085fdbc7872d661de9f934f39cb5802894 | [
"MIT"
] | 10 | 2021-04-26T01:50:19.000Z | 2022-03-27T18:43:06.000Z | 33.885714 | 81 | 0.790894 | 10,480 | package com.majruszs_difficulty.features.monster_spawn;
import com.majruszs_difficulty.GameState;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.entity.EntityType;
import net.minecraft.world.entity.LightningBolt;
import net.minecraft.world.entity.LivingEntity;
import net.minecraft.world.enti... |
3e18a56524c8ea7ff587c8dba0a8d9b3a5aae758 | 886 | java | Java | src/main/java/com/cutajarjames/codility/countingelements/FrogRiverOne.java | cutajarj/CodilityInJava | 20ba4a1348ce05270aa852a9c69d6402be38a3d1 | [
"MIT"
] | 23 | 2019-06-11T02:29:55.000Z | 2022-03-20T15:52:17.000Z | src/main/java/com/cutajarjames/codility/countingelements/FrogRiverOne.java | cutajarj/CodilityInJava | 20ba4a1348ce05270aa852a9c69d6402be38a3d1 | [
"MIT"
] | 1 | 2021-03-23T20:24:58.000Z | 2021-03-23T20:24:58.000Z | src/main/java/com/cutajarjames/codility/countingelements/FrogRiverOne.java | cutajarj/CodilityInJava | 20ba4a1348ce05270aa852a9c69d6402be38a3d1 | [
"MIT"
] | 26 | 2019-05-24T06:59:16.000Z | 2022-03-03T18:30:55.000Z | 31.642857 | 94 | 0.553047 | 10,481 | package com.cutajarjames.codility.countingelements;
/**
* This is the solution for CountingElements > FrogRiverOne
* <p>
* This is marked as PAINLESS difficulty
*/
public class FrogRiverOne {
public int solution(int X, int[] A) {
boolean[] riverPositions = new boolean[X + 1];
for (int time = 0;... |
3e18a62b6e7066b716f1f83cdd24aa1b6825eed5 | 2,860 | java | Java | iwxxmCore/src/test/resources/iwxxm/2.1/output/net/opengis/sampling/_2/SFSamplingFeatureCollectionType.java | cb-steven-matison/iwxxmConverter | b2c0ac96f23680c667db11183d0689bc28cddf80 | [
"Apache-2.0"
] | 8 | 2019-12-18T06:46:04.000Z | 2020-10-14T10:13:56.000Z | iwxxmCore/src/test/resources/iwxxm/2.1/output/net/opengis/sampling/_2/SFSamplingFeatureCollectionType.java | cb-steven-matison/iwxxmConverter | b2c0ac96f23680c667db11183d0689bc28cddf80 | [
"Apache-2.0"
] | 8 | 2019-07-15T12:51:38.000Z | 2022-01-10T11:06:54.000Z | iwxxmCore/src/test/resources/iwxxm/2.1/output/net/opengis/sampling/_2/SFSamplingFeatureCollectionType.java | cb-steven-matison/iwxxmConverter | b2c0ac96f23680c667db11183d0689bc28cddf80 | [
"Apache-2.0"
] | 7 | 2019-06-11T10:25:12.000Z | 2020-10-14T10:13:58.000Z | 31.086957 | 135 | 0.678671 | 10,482 | //
// 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: 2018.02.... |
3e18a66827592535108f0139c0f4a918644dfbc1 | 1,526 | java | Java | addressbook-web-tests/src/test/java/ru/stqa/pft/addressbook/tests/ContactEditionTests.java | Apakulya/java_pft | 23dc0c8dce2e6705445b9c11fa0125b1427f90f6 | [
"Apache-2.0"
] | null | null | null | addressbook-web-tests/src/test/java/ru/stqa/pft/addressbook/tests/ContactEditionTests.java | Apakulya/java_pft | 23dc0c8dce2e6705445b9c11fa0125b1427f90f6 | [
"Apache-2.0"
] | null | null | null | addressbook-web-tests/src/test/java/ru/stqa/pft/addressbook/tests/ContactEditionTests.java | Apakulya/java_pft | 23dc0c8dce2e6705445b9c11fa0125b1427f90f6 | [
"Apache-2.0"
] | null | null | null | 38.15 | 151 | 0.716252 | 10,483 | package ru.stqa.pft.addressbook.tests;
import org.hamcrest.CoreMatchers;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import ru.stqa.pft.addressbook.model.ContactData;
import ru.stqa.pft.addressbook.model.Contacts;
import ru.stqa.pft.addressbook.model.GroupData;
import java.io.File... |
3e18a66e6f23af04ff11ce4b671887d007f1d50f | 3,064 | java | Java | jOOQ/src/main/java/org/jooq/impl/Radians.java | Celebrate-future/jOOQ | 9ac7eb99bd5126198341ee56cb9549cf531dce85 | [
"Apache-2.0"
] | null | null | null | jOOQ/src/main/java/org/jooq/impl/Radians.java | Celebrate-future/jOOQ | 9ac7eb99bd5126198341ee56cb9549cf531dce85 | [
"Apache-2.0"
] | null | null | null | jOOQ/src/main/java/org/jooq/impl/Radians.java | Celebrate-future/jOOQ | 9ac7eb99bd5126198341ee56cb9549cf531dce85 | [
"Apache-2.0"
] | null | null | null | 24.125984 | 94 | 0.558094 | 10,484 | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed ... |
3e18a6d9858ed0395878e978e1c9f99914136e5a | 1,015 | java | Java | api/src/main/java/ca/bc/gov/educ/grad/report/model/common/party/address/PostalAddress.java | bcgov/EDUC-GRAD-REPORT-API | 25dd01fe780af5d9cfd85a38dac1bba28cc9e07e | [
"Apache-2.0"
] | null | null | null | api/src/main/java/ca/bc/gov/educ/grad/report/model/common/party/address/PostalAddress.java | bcgov/EDUC-GRAD-REPORT-API | 25dd01fe780af5d9cfd85a38dac1bba28cc9e07e | [
"Apache-2.0"
] | 20 | 2021-07-06T00:04:38.000Z | 2022-03-29T16:34:59.000Z | api/src/main/java/ca/bc/gov/educ/grad/report/model/common/party/address/PostalAddress.java | bcgov/EDUC-GRAD-REPORT-API | 25dd01fe780af5d9cfd85a38dac1bba28cc9e07e | [
"Apache-2.0"
] | null | null | null | 40.6 | 80 | 0.53202 | 10,485 | /* *********************************************************************
* Copyright (c) 2016, Ministry of Education, BC.
*
* All rights reserved.
* This information contained herein may not be used in whole
* or in part without the express written consent of the
* Government of British Columbia, Canad... |
3e18a6e037ee2732384619fa62c7ee8d477e7115 | 39,993 | java | Java | google/cloud/notebooks/v1/google-cloud-notebooks-v1-java/proto-google-cloud-notebooks-v1-java/src/main/java/com/google/cloud/notebooks/v1/GetInstanceHealthResponse.java | googleapis/googleapis-gen | d84824c78563d59b0e58d5664bfaa430e9ad7e7a | [
"Apache-2.0"
] | 7 | 2021-02-21T10:39:41.000Z | 2021-12-07T07:31:28.000Z | google/cloud/notebooks/v1/google-cloud-notebooks-v1-java/proto-google-cloud-notebooks-v1-java/src/main/java/com/google/cloud/notebooks/v1/GetInstanceHealthResponse.java | googleapis/googleapis-gen | d84824c78563d59b0e58d5664bfaa430e9ad7e7a | [
"Apache-2.0"
] | 6 | 2021-02-02T23:46:11.000Z | 2021-11-15T01:46:02.000Z | google/cloud/notebooks/v1/google-cloud-notebooks-v1-java/proto-google-cloud-notebooks-v1-java/src/main/java/com/google/cloud/notebooks/v1/GetInstanceHealthResponse.java | googleapis/googleapis-gen | d84824c78563d59b0e58d5664bfaa430e9ad7e7a | [
"Apache-2.0"
] | 4 | 2021-01-28T23:25:45.000Z | 2021-08-30T01:55:16.000Z | 34.447028 | 173 | 0.667967 | 10,486 | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/notebooks/v1/service.proto
package com.google.cloud.notebooks.v1;
/**
* <pre>
* Response for checking if a notebook instance is healthy.
* </pre>
*
* Protobuf type {@code google.cloud.notebooks.v1.GetInstanceHealthResponse}
*/
p... |
3e18a774d95ad53dd8376d3217781b871bd9d599 | 10,392 | java | Java | smithy-diff/src/main/java/software/amazon/smithy/diff/ModelDiff.java | rschmitt/smithy | e480e6f856c21e8837b139b3e4eae96fbcc0b605 | [
"Apache-2.0"
] | 903 | 2019-06-18T21:07:54.000Z | 2022-03-28T07:13:30.000Z | smithy-diff/src/main/java/software/amazon/smithy/diff/ModelDiff.java | rschmitt/smithy | e480e6f856c21e8837b139b3e4eae96fbcc0b605 | [
"Apache-2.0"
] | 277 | 2019-06-19T17:10:48.000Z | 2022-03-28T20:19:39.000Z | smithy-diff/src/main/java/software/amazon/smithy/diff/ModelDiff.java | rschmitt/smithy | e480e6f856c21e8837b139b3e4eae96fbcc0b605 | [
"Apache-2.0"
] | 90 | 2019-06-19T20:08:34.000Z | 2022-03-21T23:04:22.000Z | 35.71134 | 112 | 0.612683 | 10,487 | /*
* Copyright 2020 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" ... |
3e18a78a1c3a2e4b76e0f227f3aacfe92aed1578 | 4,496 | java | Java | fhir-rest/src/main/java/com/kodality/fhir/rest/filter/FormatInterceptor.java | kodality/blaze | a5984a7bc14241a4bfae13bf49d2b5ad0ec96e75 | [
"Apache-2.0"
] | 1 | 2019-02-05T17:39:02.000Z | 2019-02-05T17:39:02.000Z | fhir-rest/src/main/java/com/kodality/fhir/rest/filter/FormatInterceptor.java | kodality/blaze | a5984a7bc14241a4bfae13bf49d2b5ad0ec96e75 | [
"Apache-2.0"
] | 1 | 2020-09-10T13:19:22.000Z | 2020-09-10T13:19:22.000Z | fhir-rest/src/main/java/com/kodality/fhir/rest/filter/FormatInterceptor.java | kodality/blaze | a5984a7bc14241a4bfae13bf49d2b5ad0ec96e75 | [
"Apache-2.0"
] | 1 | 2020-09-02T05:51:04.000Z | 2020-09-02T05:51:04.000Z | 35.401575 | 105 | 0.706406 | 10,488 | /* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed... |
3e18a89745b9152ed09c0a0f4fa1e944a3fbcf83 | 8,118 | java | Java | app/src/main/java/net/gsantner/markor/activity/DocumentShareIntoFragment.java | cham3333/markor | 39fb3427c7ee4d3142758ed735af348936a0a3d1 | [
"MIT"
] | null | null | null | app/src/main/java/net/gsantner/markor/activity/DocumentShareIntoFragment.java | cham3333/markor | 39fb3427c7ee4d3142758ed735af348936a0a3d1 | [
"MIT"
] | null | null | null | app/src/main/java/net/gsantner/markor/activity/DocumentShareIntoFragment.java | cham3333/markor | 39fb3427c7ee4d3142758ed735af348936a0a3d1 | [
"MIT"
] | null | null | null | 40.79397 | 259 | 0.677014 | 10,489 | /*
* Copyright (c) 2017 Gregor Santner and Markor contributors
*
* Licensed under the MIT license. See LICENSE file in the project root for details.
*/
package net.gsantner.markor.activity;
import android.content.Context;
import android.graphics.Color;
import android.os.Bundle;
import android.support.annotation.No... |
3e18a8c93506a476eab78d13ebeda2f6ec90d235 | 10,458 | java | Java | testing/src/test/java/org/motechproject/wa/testing/it/utils/RegionHelper.java | washacademy/wa-motech-implementation | b6a4b4aa9cf63c4d975fc662ccecc28a1f30eab8 | [
"BSD-3-Clause"
] | null | null | null | testing/src/test/java/org/motechproject/wa/testing/it/utils/RegionHelper.java | washacademy/wa-motech-implementation | b6a4b4aa9cf63c4d975fc662ccecc28a1f30eab8 | [
"BSD-3-Clause"
] | null | null | null | testing/src/test/java/org/motechproject/wa/testing/it/utils/RegionHelper.java | washacademy/wa-motech-implementation | b6a4b4aa9cf63c4d975fc662ccecc28a1f30eab8 | [
"BSD-3-Clause"
] | 1 | 2020-10-08T06:30:30.000Z | 2020-10-08T06:30:30.000Z | 30.313043 | 133 | 0.617231 | 10,490 | package org.motechproject.wa.testing.it.utils;
import org.motechproject.wa.region.domain.*;
import org.motechproject.wa.region.repository.CircleDataService;
import org.motechproject.wa.region.repository.DistrictDataService;
import org.motechproject.wa.region.repository.LanguageDataService;
import org.motechproject.wa.... |
3e18a949c33d2e697e02f2fa10541b5c94bbb807 | 3,259 | java | Java | estimote/Demos/src/main/java/com/estimote/examples/demos/activities/ListEddystoneActivity.java | thirdbridge/android_beacon | ab014c8b2eec2c267dc6a18492edebb543b761a3 | [
"MIT"
] | null | null | null | estimote/Demos/src/main/java/com/estimote/examples/demos/activities/ListEddystoneActivity.java | thirdbridge/android_beacon | ab014c8b2eec2c267dc6a18492edebb543b761a3 | [
"MIT"
] | null | null | null | estimote/Demos/src/main/java/com/estimote/examples/demos/activities/ListEddystoneActivity.java | thirdbridge/android_beacon | ab014c8b2eec2c267dc6a18492edebb543b761a3 | [
"MIT"
] | null | null | null | 32.039216 | 98 | 0.724908 | 10,491 | package com.estimote.examples.demos.activities;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ListView;
import com.estimote.examples.demos.R;
import com.estimote.examples.demos.adapters.EddystonesList... |
3e18aa1c2b74728a5a9092af3fb687857c0b99b0 | 7,200 | java | Java | app/helper/WebgatherUtils.java | pellerito/to.science.api | d1a48f610f8b35b6cfad77c7af36c443867570db | [
"Apache-2.0"
] | 1 | 2020-12-04T01:15:28.000Z | 2020-12-04T01:15:28.000Z | app/helper/WebgatherUtils.java | pellerito/to.science.api | d1a48f610f8b35b6cfad77c7af36c443867570db | [
"Apache-2.0"
] | 99 | 2015-01-15T07:41:41.000Z | 2020-07-01T18:32:44.000Z | app/helper/WebgatherUtils.java | pellerito/to.science.api | d1a48f610f8b35b6cfad77c7af36c443867570db | [
"Apache-2.0"
] | 5 | 2016-03-02T13:24:20.000Z | 2020-11-12T12:57:06.000Z | 35.121951 | 139 | 0.6925 | 10,492 | /*
* Copyright 2017 hbz NRW (http://www.hbz-nrw.de/)
*
* 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... |
3e18ab46dfa53f00da460ce1b66d07619ec9a41b | 3,755 | java | Java | core/src/test/java/google/registry/tmch/TmchCrlActionTest.java | hstonec/nomulus | 59abc1d154ac17650fa3f22aa9996f8213565b76 | [
"Apache-2.0"
] | 1,644 | 2016-10-18T15:05:43.000Z | 2022-03-19T21:45:23.000Z | core/src/test/java/google/registry/tmch/TmchCrlActionTest.java | hstonec/nomulus | 59abc1d154ac17650fa3f22aa9996f8213565b76 | [
"Apache-2.0"
] | 332 | 2016-10-18T15:33:58.000Z | 2022-03-30T12:48:37.000Z | core/src/test/java/google/registry/tmch/TmchCrlActionTest.java | hstonec/nomulus | 59abc1d154ac17650fa3f22aa9996f8213565b76 | [
"Apache-2.0"
] | 270 | 2016-10-18T14:56:43.000Z | 2022-03-27T17:54:07.000Z | 42.670455 | 98 | 0.757656 | 10,493 | // Copyright 2017 The Nomulus Authors. 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 a... |
3e18ab7aced782cb842920d059b7c52044a2fd4e | 2,367 | java | Java | src/main/java/org/spongepowered/common/mixin/core/block/tiles/MixinTileEntityBeacon.java | phroa/SpongeCommon | cc9dfd77b67852a1442af771021cc41993fe9a44 | [
"MIT"
] | null | null | null | src/main/java/org/spongepowered/common/mixin/core/block/tiles/MixinTileEntityBeacon.java | phroa/SpongeCommon | cc9dfd77b67852a1442af771021cc41993fe9a44 | [
"MIT"
] | null | null | null | src/main/java/org/spongepowered/common/mixin/core/block/tiles/MixinTileEntityBeacon.java | phroa/SpongeCommon | cc9dfd77b67852a1442af771021cc41993fe9a44 | [
"MIT"
] | null | null | null | 40.810345 | 95 | 0.757076 | 10,494 | /*
* This file is part of Sponge, licensed under the MIT License (MIT).
*
* Copyright (c) SpongePowered <https://www.spongepowered.org>
* Copyright (c) contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwar... |
3e18ac24a4842f5ebb4864d1c7619cfdd26426f0 | 5,803 | java | Java | mowl.metamodel.edit/src/mowl/provider/ObjectMaxCardinalityItemProvider.java | cabrerac/mowl | b7fcc67e49c47e5837ffb3981aa8648b87484939 | [
"MIT"
] | null | null | null | mowl.metamodel.edit/src/mowl/provider/ObjectMaxCardinalityItemProvider.java | cabrerac/mowl | b7fcc67e49c47e5837ffb3981aa8648b87484939 | [
"MIT"
] | null | null | null | mowl.metamodel.edit/src/mowl/provider/ObjectMaxCardinalityItemProvider.java | cabrerac/mowl | b7fcc67e49c47e5837ffb3981aa8648b87484939 | [
"MIT"
] | null | null | null | 30.867021 | 139 | 0.74496 | 10,495 | /**
*/
package mowl.provider;
import java.util.Collection;
import java.util.List;
import mowl.ObjectMaxCardinality;
import mowl.mowlPackage;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
impor... |
3e18add3a357356e56807c9432848cea28279833 | 1,376 | java | Java | src/main/java/com/yjh/cqa/command/JenkinsCommand.java | yangjinhe/jcqrobot | 3b1e5444b810c13264572dfdf5e571a5281616ed | [
"MIT"
] | null | null | null | src/main/java/com/yjh/cqa/command/JenkinsCommand.java | yangjinhe/jcqrobot | 3b1e5444b810c13264572dfdf5e571a5281616ed | [
"MIT"
] | null | null | null | src/main/java/com/yjh/cqa/command/JenkinsCommand.java | yangjinhe/jcqrobot | 3b1e5444b810c13264572dfdf5e571a5281616ed | [
"MIT"
] | null | null | null | 34.4 | 115 | 0.505087 | 10,496 | package com.yjh.cqa.command;
import cn.hutool.core.util.StrUtil;
import com.yjh.cqa.util.NetworkMonitor;
/**
* Created by yangjh on 2019/7/20.
*/
public class JenkinsCommand extends BaseCommand {
@Override
public void exec(Long fromGroup, long fromQQ, String msg) {
try {
if (msg.equals(... |
3e18ae15776e55211b3af21a86ba22b98a846408 | 6,234 | java | Java | hudson-service/src/main/java/org/hudsonci/service/internal/ServicePreconditions.java | mcculls/hudson | 7e94773277c2067a38c9929ac818dcec53f3855b | [
"MIT"
] | 15 | 2015-03-04T20:19:23.000Z | 2021-08-05T07:13:40.000Z | hudson-service/src/main/java/org/hudsonci/service/internal/ServicePreconditions.java | mcculls/hudson | 7e94773277c2067a38c9929ac818dcec53f3855b | [
"MIT"
] | 2 | 2021-02-03T19:30:28.000Z | 2022-03-02T07:14:30.000Z | hudson-service/src/main/java/org/hudsonci/service/internal/ServicePreconditions.java | hudson/hudson-2.x | 82286f0890b72c47fc4a8ea848d86cbbc5bbd868 | [
"MIT"
] | 14 | 2015-02-11T04:29:14.000Z | 2021-05-02T07:06:29.000Z | 36.244186 | 105 | 0.684151 | 10,497 | /**
* The MIT License
*
* Copyright (c) 2010-2011 Sonatype, Inc. 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 limitatio... |
3e18aea9f23e63eebc837c78d85eb7d2bc5564a2 | 867 | java | Java | Java_Advanced_2021/src/JavaAdvancedRetakeExam16December2020/P03Openning/bakery/Employee.java | lmarinov/Java_Basics_And_Advanced_Repo | e08e4f2ee3c1e6e1e47172cdee9ae3cbfa514f15 | [
"MIT"
] | null | null | null | Java_Advanced_2021/src/JavaAdvancedRetakeExam16December2020/P03Openning/bakery/Employee.java | lmarinov/Java_Basics_And_Advanced_Repo | e08e4f2ee3c1e6e1e47172cdee9ae3cbfa514f15 | [
"MIT"
] | null | null | null | Java_Advanced_2021/src/JavaAdvancedRetakeExam16December2020/P03Openning/bakery/Employee.java | lmarinov/Java_Basics_And_Advanced_Repo | e08e4f2ee3c1e6e1e47172cdee9ae3cbfa514f15 | [
"MIT"
] | null | null | null | 20.162791 | 104 | 0.592849 | 10,498 | package JavaAdvancedRetakeExam16December2020.P03Openning.bakery;
public class Employee {
private String name;
private int age;
private String country;
public Employee(String name, int age, String country) {
this.name = name;
this.age = age;
this.country = country;
}
pu... |
3e18af6dbc14eb2697f8b4f72e7f464e063ef74b | 1,736 | java | Java | app/src/main/java/newsapp/xtapp/com/staggeredpic/view/personal/PersonalLowerFragment.java | dadaTang/xtan | e41bbe0532c76e5ce44d487f09ff8248c2a59e05 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/newsapp/xtapp/com/staggeredpic/view/personal/PersonalLowerFragment.java | dadaTang/xtan | e41bbe0532c76e5ce44d487f09ff8248c2a59e05 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/newsapp/xtapp/com/staggeredpic/view/personal/PersonalLowerFragment.java | dadaTang/xtan | e41bbe0532c76e5ce44d487f09ff8248c2a59e05 | [
"Apache-2.0"
] | null | null | null | 26.30303 | 74 | 0.677995 | 10,499 | package newsapp.xtapp.com.staggeredpic.view.personal;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.View;
import android.widget.TextView;
import butterknife.BindView;
import butterknife.OnClick;
import newsapp.xtapp.com.staggeredpic.R;
import... |
3e18b27ae72339d6a4bc7f82ebedfc9fdc788e66 | 14,328 | java | Java | core/viewer-restfulobjects-applib/src/main/java/org/apache/isis/viewer/restfulobjects/applib/util/Parser.java | kshithijiyer/isis | b99a6a9057fdcd4af25b0a2f36f7b32efa6f137c | [
"ECL-2.0",
"Apache-2.0"
] | 1 | 2019-03-17T03:19:33.000Z | 2019-03-17T03:19:33.000Z | core/viewer-restfulobjects-applib/src/main/java/org/apache/isis/viewer/restfulobjects/applib/util/Parser.java | DalavanCloud/isis | 2af2ef3e2edcb807d742f089839e0571d8132bd9 | [
"Apache-2.0"
] | null | null | null | core/viewer-restfulobjects-applib/src/main/java/org/apache/isis/viewer/restfulobjects/applib/util/Parser.java | DalavanCloud/isis | 2af2ef3e2edcb807d742f089839e0571d8132bd9 | [
"Apache-2.0"
] | null | null | null | 33.166667 | 136 | 0.50328 | 10,500 | /*
* 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")... |
3e18b4635c429ef3202d56699074a9e53d3696cd | 3,218 | java | Java | src/main/java/com/linetoart/core/solver/AbstractDepthSolver.java | arglin/linetoart-core | 42d292b806b965235b24f8dc304dfb2c0176b667 | [
"MIT"
] | 8 | 2022-02-05T14:54:43.000Z | 2022-03-15T12:01:48.000Z | src/main/java/com/linetoart/core/solver/AbstractDepthSolver.java | arglin/linetoart-core | 42d292b806b965235b24f8dc304dfb2c0176b667 | [
"MIT"
] | null | null | null | src/main/java/com/linetoart/core/solver/AbstractDepthSolver.java | arglin/linetoart-core | 42d292b806b965235b24f8dc304dfb2c0176b667 | [
"MIT"
] | null | null | null | 39.243902 | 121 | 0.699814 | 10,501 | /*
* MIT License
*
* Copyright (c) 2022.
*
* Author: arglin
*
* 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 rights
* to use, ... |
3e18b4dc2ae37dd3136e82f576915587767c29b9 | 369 | java | Java | projekt6/src/hr/fer/zemris/java/primjeri/DatumIVrijeme.java | DomagojGalic/java_tutorial | bfe6fa320bf29ad17eb9ba799617a0f085bd395c | [
"MIT"
] | null | null | null | projekt6/src/hr/fer/zemris/java/primjeri/DatumIVrijeme.java | DomagojGalic/java_tutorial | bfe6fa320bf29ad17eb9ba799617a0f085bd395c | [
"MIT"
] | null | null | null | projekt6/src/hr/fer/zemris/java/primjeri/DatumIVrijeme.java | DomagojGalic/java_tutorial | bfe6fa320bf29ad17eb9ba799617a0f085bd395c | [
"MIT"
] | null | null | null | 20.5 | 63 | 0.696477 | 10,502 | package hr.fer.zemris.java.primjeri;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DatumIVrijeme implements IIspisivo {
private String format;
public DatumIVrijeme(String format) {
this.format = format;
}
@Override
public String poruka() {
return new Sim... |
3e18b4ddb403fbcc3e22e0807cc9e5c486a877cc | 419 | java | Java | src/main/java/pt/it/av/tnav/ml/dataset/Dataset.java | mariolpantunes/ml | a07b8d9c642ebafb142fe5d83800c011c53c4e90 | [
"MIT"
] | 7 | 2015-11-26T16:37:50.000Z | 2021-09-01T07:00:34.000Z | src/main/java/pt/it/av/tnav/ml/dataset/Dataset.java | mariolpantunes/ml | a07b8d9c642ebafb142fe5d83800c011c53c4e90 | [
"MIT"
] | 2 | 2018-06-12T00:10:05.000Z | 2018-06-12T00:16:46.000Z | src/main/java/pt/it/av/tnav/ml/dataset/Dataset.java | mariolpantunes/ml | a07b8d9c642ebafb142fe5d83800c011c53c4e90 | [
"MIT"
] | 2 | 2018-06-05T10:19:02.000Z | 2018-06-19T22:31:09.000Z | 17.458333 | 77 | 0.615752 | 10,503 | package pt.it.av.tnav.ml.dataset;
import pt.it.av.tnav.utils.structures.Distance;
import java.util.List;
/**
*
* @param <T>
*/
public interface Dataset<T extends Distance<T>> {
/**
* Returns a {@link List} of {@link Vector} with the data from the dataset.
*
* @return a {@link List} of {@link Vector} wi... |
3e18b51d33f047aa40a501897bca05bd60a6897c | 4,165 | java | Java | aws/src/main/java/org/apache/iceberg/aws/AssumeRoleAwsClientFactory.java | kingeasternsun/iceberg | 1634ab6c9861e8934d9f8f7e823b6a87ce76fd63 | [
"Apache-2.0"
] | 2,161 | 2020-05-28T01:20:01.000Z | 2022-03-31T14:48:04.000Z | aws/src/main/java/org/apache/iceberg/aws/AssumeRoleAwsClientFactory.java | kingeasternsun/iceberg | 1634ab6c9861e8934d9f8f7e823b6a87ce76fd63 | [
"Apache-2.0"
] | 3,096 | 2020-05-27T20:57:13.000Z | 2022-03-31T22:55:42.000Z | aws/src/main/java/org/apache/iceberg/aws/AssumeRoleAwsClientFactory.java | kingeasternsun/iceberg | 1634ab6c9861e8934d9f8f7e823b6a87ce76fd63 | [
"Apache-2.0"
] | 879 | 2020-05-28T01:20:01.000Z | 2022-03-31T12:48:48.000Z | 37.522523 | 108 | 0.768547 | 10,504 | /*
* 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 ... |
3e18b5741030172f945e7f7e09e4340ed34cc22c | 1,359 | java | Java | src/main/java/cn/edu/jxnu/leetcode/Leetcode_455.java | yangzaiqiong/cs-summary-reflection | 3356520e44a0f892c72b37f93e6836f8422cd3ae | [
"Apache-2.0"
] | 1 | 2019-08-27T16:42:22.000Z | 2019-08-27T16:42:22.000Z | src/main/java/cn/edu/jxnu/leetcode/Leetcode_455.java | yangzaiqiong/cs-summary-reflection | 3356520e44a0f892c72b37f93e6836f8422cd3ae | [
"Apache-2.0"
] | null | null | null | src/main/java/cn/edu/jxnu/leetcode/Leetcode_455.java | yangzaiqiong/cs-summary-reflection | 3356520e44a0f892c72b37f93e6836f8422cd3ae | [
"Apache-2.0"
] | null | null | null | 24.267857 | 80 | 0.534952 | 10,505 | package cn.edu.jxnu.leetcode;
import java.util.Arrays;
/**
* @author 梦境迷离
* @description 题目描述:每个孩子都有一个满足度,每个饼干都有一个大小,只有饼干的大小大于一个孩子的满足度,该孩子才会获得满足。
* 求解最多可以获得满足的孩子数量。
*
* 因为最小的孩子最容易得到满足,因此先满足最小孩子。给一个孩子的饼干应当尽量小又能满足该孩子,
* 这样大饼干就能拿来给满足度比较大的孩子。
*
* 证明:假设在某次选择中,贪... |
3e18b72bcda8c9a16b0d96219a37458fff17814c | 352 | java | Java | src/main/java/com/infomaximum/cluster/graphql/utils/ExceptionUtils.java | Infomaximum/cluster-graphql | b3ea646e3319068a8d15b1c82f2317f5b4e76cfc | [
"Apache-2.0"
] | null | null | null | src/main/java/com/infomaximum/cluster/graphql/utils/ExceptionUtils.java | Infomaximum/cluster-graphql | b3ea646e3319068a8d15b1c82f2317f5b4e76cfc | [
"Apache-2.0"
] | null | null | null | src/main/java/com/infomaximum/cluster/graphql/utils/ExceptionUtils.java | Infomaximum/cluster-graphql | b3ea646e3319068a8d15b1c82f2317f5b4e76cfc | [
"Apache-2.0"
] | null | null | null | 25.142857 | 82 | 0.684659 | 10,506 | package com.infomaximum.cluster.graphql.utils;
public class ExceptionUtils {
public static RuntimeException coercionRuntimeException(Throwable throwable) {
if (throwable instanceof RuntimeException) {
return (RuntimeException) throwable;
} else {
return new RuntimeException... |
3e18b838eaa5707d7432b4a30a6be8acdf63de8c | 5,058 | java | Java | core/src/test/java/edu/northwestern/bioinformatics/studycalendar/xml/writers/ScheduledActivityStateXmlSerializerTest.java | NUBIC/psc-mirror | d9930757ae31fe365f5df7ae49cb03e629ddb8b8 | [
"BSD-3-Clause"
] | 1 | 2017-03-02T11:39:40.000Z | 2017-03-02T11:39:40.000Z | core/src/test/java/edu/northwestern/bioinformatics/studycalendar/xml/writers/ScheduledActivityStateXmlSerializerTest.java | NUBIC/psc-mirror | d9930757ae31fe365f5df7ae49cb03e629ddb8b8 | [
"BSD-3-Clause"
] | null | null | null | core/src/test/java/edu/northwestern/bioinformatics/studycalendar/xml/writers/ScheduledActivityStateXmlSerializerTest.java | NUBIC/psc-mirror | d9930757ae31fe365f5df7ae49cb03e629ddb8b8 | [
"BSD-3-Clause"
] | null | null | null | 41.121951 | 128 | 0.739818 | 10,507 | package edu.northwestern.bioinformatics.studycalendar.xml.writers;
import edu.northwestern.bioinformatics.studycalendar.domain.ScheduledActivityMode;
import edu.northwestern.bioinformatics.studycalendar.domain.ScheduledActivityState;
import edu.northwestern.bioinformatics.studycalendar.core.StudyCalendarXmlTestCase;
i... |
3e18b8bb2ae0336f2a00a0711f5d1b2c8feec07a | 6,237 | java | Java | app/src/main/java/com/codemelinux/HUSAP/main/pickImageBase/PickImageActivity.java | codemelinux/HUSAP | 641a73aca35a5d36db186f51100fc15e7bb65d4c | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/codemelinux/HUSAP/main/pickImageBase/PickImageActivity.java | codemelinux/HUSAP | 641a73aca35a5d36db186f51100fc15e7bb65d4c | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/codemelinux/HUSAP/main/pickImageBase/PickImageActivity.java | codemelinux/HUSAP | 641a73aca35a5d36db186f51100fc15e7bb65d4c | [
"Apache-2.0"
] | null | null | null | 39.726115 | 151 | 0.684784 | 10,508 |
package com.codemelinux.HUSAP.main.pickImageBase;
import android.Manifest;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.graphics.drawable.Drawable;
import android.net.Uri;
import android.os.Bundle;
import a... |
3e18b8fd096976a0634d8bd2dadea383d4ec1cc5 | 369 | java | Java | TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/workflow/filter/FilterType.java | woniuxia/TLS-Attacker | 09dd837deb49f79158c99177c2f1ec6b7dcbc106 | [
"ECL-2.0",
"Apache-2.0"
] | 1 | 2021-02-11T01:13:15.000Z | 2021-02-11T01:13:15.000Z | TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/workflow/filter/FilterType.java | woniuxia/TLS-Attacker | 09dd837deb49f79158c99177c2f1ec6b7dcbc106 | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/workflow/filter/FilterType.java | woniuxia/TLS-Attacker | 09dd837deb49f79158c99177c2f1ec6b7dcbc106 | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | 23.0625 | 68 | 0.734417 | 10,509 | /**
* TLS-Attacker - A Modular Penetration Testing Framework for TLS
*
* Copyright 2014-2020 Ruhr University Bochum, Paderborn University,
* and Hackmanit GmbH
*
* Licensed under Apache License 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
package de.rub.nds.tlsattacker.core.workflow.filter;
public enum ... |
3e18b9935d094fdc06194a545f84903dada98108 | 1,035 | java | Java | mycateye-agent/src/main/java/io/mycat/eye/agent/mapper/MycatSqlSumMapper.java | karakapi/Mycat-Web | 4901c32658fffbaa4f542e27d369b5cff5283fd3 | [
"Apache-2.0"
] | 2 | 2020-06-04T05:14:13.000Z | 2020-11-25T05:54:05.000Z | mycateye-agent/src/main/java/io/mycat/eye/agent/mapper/MycatSqlSumMapper.java | karakapi/Mycat-Web | 4901c32658fffbaa4f542e27d369b5cff5283fd3 | [
"Apache-2.0"
] | null | null | null | mycateye-agent/src/main/java/io/mycat/eye/agent/mapper/MycatSqlSumMapper.java | karakapi/Mycat-Web | 4901c32658fffbaa4f542e27d369b5cff5283fd3 | [
"Apache-2.0"
] | null | null | null | 31.363636 | 116 | 0.795169 | 10,511 | package io.mycat.eye.agent.mapper;
import io.mycat.eye.agent.bean.MycatSqlSum;
import io.mycat.eye.agent.bean.MycatSqlSumExample;
import io.mycat.eye.agent.bean.MycatSqlSumKey;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface Myca... |
3e18b9bedb9511fa6268059e43772e226cdf720c | 3,368 | java | Java | src/com/m00ware/ftpindex/indexer/IndexerScheduler.java | gilles-duboscq/m00FTPIndex | 9e74d39f159f9113c0ab1a034db2146471da6bfe | [
"MIT"
] | 1 | 2020-01-24T05:16:29.000Z | 2020-01-24T05:16:29.000Z | src/com/m00ware/ftpindex/indexer/IndexerScheduler.java | gilles-duboscq/m00FTPIndex | 9e74d39f159f9113c0ab1a034db2146471da6bfe | [
"MIT"
] | null | null | null | src/com/m00ware/ftpindex/indexer/IndexerScheduler.java | gilles-duboscq/m00FTPIndex | 9e74d39f159f9113c0ab1a034db2146471da6bfe | [
"MIT"
] | null | null | null | 35.829787 | 203 | 0.610154 | 10,512 | package com.m00ware.ftpindex.indexer;
import java.net.SocketTimeoutException;
import java.util.*;
import java.util.concurrent.*;
import com.m00ware.ftpindex.*;
/**
* @author Wooden
*
*/
public class IndexerScheduler {
private FilesDB db;
private long indexingDelay;
private ScheduledExecutorService ex... |
3e18b9da522b36d97b2ccda9ad527ff2196f114e | 1,664 | java | Java | test/algorithms/AlgorithmTest.java | HanzehogeschoolSICT/ITV1D-Louis-Sorting | fb0a9bddcbc57c8facda2532199f08e981a2ce58 | [
"MIT"
] | null | null | null | test/algorithms/AlgorithmTest.java | HanzehogeschoolSICT/ITV1D-Louis-Sorting | fb0a9bddcbc57c8facda2532199f08e981a2ce58 | [
"MIT"
] | null | null | null | test/algorithms/AlgorithmTest.java | HanzehogeschoolSICT/ITV1D-Louis-Sorting | fb0a9bddcbc57c8facda2532199f08e981a2ce58 | [
"MIT"
] | 2 | 2017-03-08T10:50:51.000Z | 2017-05-06T12:21:52.000Z | 29.714286 | 103 | 0.667067 | 10,513 | package algorithms;
import models.DataSetModel;
import org.junit.jupiter.api.Test;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.function.Function;
import static org.junit.jupiter.api.Assertions.*;
class AlgorithmTest {
/**
* Test the Bubble Sort Algorithm.
*/
@Test
vo... |
3e18ba1b25c67ba3efba5befc25bb4c31b914f8d | 3,360 | java | Java | java/sho/largest-rectangle-in-histogram.java | jaredkoontz/lintcode | 228f3326381f6356d7be2f249d6b74bf394f844e | [
"MIT"
] | null | null | null | java/sho/largest-rectangle-in-histogram.java | jaredkoontz/lintcode | 228f3326381f6356d7be2f249d6b74bf394f844e | [
"MIT"
] | null | null | null | java/sho/largest-rectangle-in-histogram.java | jaredkoontz/lintcode | 228f3326381f6356d7be2f249d6b74bf394f844e | [
"MIT"
] | null | null | null | 28.235294 | 384 | 0.511607 | 10,514 | public class Solution {
/**
* @param height: A list of integer
* @return: The area of largest rectangle in the histogram
*/
// 9/18 cases passed, wrong solution.
public int largestRectangleArea2(int[] height) {
// write your code here
int len = height.length;
if (len =... |
3e18baa7e84c0167f8974a7c8c3723f60af6793e | 4,281 | java | Java | LearningTicTacToe-java/src/main/java/TicTacToe.java | poojakokane/assignmentCodes | 9b789c2b0f5a6196ed4c48b3c5b0d48402ceecec | [
"MIT"
] | null | null | null | LearningTicTacToe-java/src/main/java/TicTacToe.java | poojakokane/assignmentCodes | 9b789c2b0f5a6196ed4c48b3c5b0d48402ceecec | [
"MIT"
] | null | null | null | LearningTicTacToe-java/src/main/java/TicTacToe.java | poojakokane/assignmentCodes | 9b789c2b0f5a6196ed4c48b3c5b0d48402ceecec | [
"MIT"
] | null | null | null | 34.524194 | 135 | 0.502219 | 10,515 | /**
* Board/State representation for the game of Shift Tac Toe.
*
*/
public class TicTacToe {
// Consider adding some more instance variables to help represent the board.
// Although you do need to be able to represent the board as a String,
// it is probably a lot easier to do board operations (drop, s... |
3e18baf4cd4a0d9762e8d9d1d42fed93dea19c4a | 2,260 | java | Java | src/main/java/net/warvale/prison/items/substances/AbstractSubstance.java | Warvale/Locked | 10da666cbf59a11e2ffbd29bf40916ec9ce5541e | [
"Apache-2.0"
] | 3 | 2017-08-09T14:28:17.000Z | 2017-08-12T13:09:50.000Z | src/main/java/net/warvale/prison/items/substances/AbstractSubstance.java | Warvale/Locked | 10da666cbf59a11e2ffbd29bf40916ec9ce5541e | [
"Apache-2.0"
] | null | null | null | src/main/java/net/warvale/prison/items/substances/AbstractSubstance.java | Warvale/Locked | 10da666cbf59a11e2ffbd29bf40916ec9ce5541e | [
"Apache-2.0"
] | null | null | null | 27.901235 | 111 | 0.649558 | 10,516 | package net.warvale.prison.items.substances;
import net.warvale.prison.items.substances.substances.Blast;
import net.warvale.prison.items.substances.substances.Coco;
import net.warvale.prison.items.substances.substances.EnergyDrink;
import net.warvale.prison.items.substances.substances.Sugar;
import org.bukkit.ChatCol... |
3e18bb764159c5b61a8af36b09818836628b4a7a | 966 | java | Java | raw_dataset/64594234@unite@OK.java | zthang/code2vec_treelstm | 0c5f98d280b506317738ba603b719cac6036896f | [
"MIT"
] | 1 | 2020-04-24T03:35:40.000Z | 2020-04-24T03:35:40.000Z | raw_dataset/64594234@unite@OK.java | ruanyuan115/code2vec_treelstm | 0c5f98d280b506317738ba603b719cac6036896f | [
"MIT"
] | 2 | 2020-04-23T21:14:28.000Z | 2021-01-21T01:07:18.000Z | raw_dataset/64594234@unite@OK.java | zthang/code2vec_treelstm | 0c5f98d280b506317738ba603b719cac6036896f | [
"MIT"
] | null | null | null | 46 | 110 | 0.611801 | 10,517 | void unite(int a, int b, long edge) {
a = get(a);
b = get(b);
if (rank[a] > rank[b]) {
parent[b] = a;
cost_of_comp[a] += edge + cost_of_comp[b] - max(min_cost_for_station[a].x, min_cost_for_station[b].x);
if (min_cost_for_station[a].x > min_cost_for_station[b].x)
min_cost... |
3e18bbb3f2828d3d4668da8758dace490abdfcf5 | 3,274 | java | Java | RxJavaAndRetrofitSimple/library/src/main/java/com/android/qzy/library/flycodialog/BaseAnimatorSet.java | zongyangqu/RxJavaAndRetrofitSimple | 33583ac979dfd13b78ef1caba90ff6ffc41fea30 | [
"Apache-2.0"
] | 1 | 2020-03-03T14:16:40.000Z | 2020-03-03T14:16:40.000Z | RxJavaAndRetrofitSimple/library/src/main/java/com/android/qzy/library/flycodialog/BaseAnimatorSet.java | zongyangqu/RxJavaAndRetrofitSimple | 33583ac979dfd13b78ef1caba90ff6ffc41fea30 | [
"Apache-2.0"
] | null | null | null | RxJavaAndRetrofitSimple/library/src/main/java/com/android/qzy/library/flycodialog/BaseAnimatorSet.java | zongyangqu/RxJavaAndRetrofitSimple | 33583ac979dfd13b78ef1caba90ff6ffc41fea30 | [
"Apache-2.0"
] | null | null | null | 27.057851 | 71 | 0.608125 | 10,518 | package com.android.qzy.library.flycodialog;
import android.view.View;
import android.view.animation.Interpolator;
import com.nineoldandroids.animation.Animator;
import com.nineoldandroids.animation.AnimatorSet;
import com.nineoldandroids.view.ViewHelper;
/**
* 作者:quzongyang
*
* 创建时间:2017/4/11
*
* 类描述:Dialog动画基... |
3e18bbe2e82ce00b7ea56abe88c2b972766d62b2 | 3,286 | java | Java | web/src/main/java/gr/helix/lab/web/config/HttpClientConfiguration.java | HELIX-GR/lab | 5d481941098fe4851538e3428b4c932bf1506921 | [
"Apache-2.0"
] | null | null | null | web/src/main/java/gr/helix/lab/web/config/HttpClientConfiguration.java | HELIX-GR/lab | 5d481941098fe4851538e3428b4c932bf1506921 | [
"Apache-2.0"
] | 10 | 2018-12-07T14:32:30.000Z | 2022-03-08T23:03:27.000Z | web/src/main/java/gr/helix/lab/web/config/HttpClientConfiguration.java | HELIX-GR/lab | 5d481941098fe4851538e3428b4c932bf1506921 | [
"Apache-2.0"
] | null | null | null | 37.770115 | 117 | 0.695679 | 10,519 | package gr.helix.lab.web.config;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.net.ssl.SSLContext;
import org.apache.http.client.HttpClient;
import org.apache.http.config.RegistryBuilder;
import org.apache.http.conn.socket.ConnectionSocketFactory;
import org.apache.http.conn... |
3e18bc801d5eab15e7b18b027ce60110338458a0 | 1,467 | java | Java | src/main/java/br/ufjf/dcc082/Client/ErrorCounter.java | SouzaJBR/adptive-rtp | 95b79a1ab9908ce9b590d850bd739dcaf3e91781 | [
"MIT"
] | 7 | 2018-05-08T22:49:39.000Z | 2020-10-30T16:55:13.000Z | src/main/java/br/ufjf/dcc082/Client/ErrorCounter.java | SouzaJBR/adptive-rtp | 95b79a1ab9908ce9b590d850bd739dcaf3e91781 | [
"MIT"
] | 2 | 2017-12-07T19:37:31.000Z | 2017-12-09T15:19:59.000Z | src/main/java/br/ufjf/dcc082/Client/ErrorCounter.java | SouzaJBR/adptive-rtp | 95b79a1ab9908ce9b590d850bd739dcaf3e91781 | [
"MIT"
] | null | null | null | 24.864407 | 91 | 0.536469 | 10,520 | package br.ufjf.dcc082.Client;
public class ErrorCounter {
private Object key = new Object();
private volatile int errorCount = 0;
private int goodThreshold;
private int badThreshold;
private int goodCount;
private int badCount;
private int minToGood;
private int minToBad;
public ... |
3e18bc930bc52704118db9891b479fad2127c4f4 | 1,090 | java | Java | app/src/main/java/com/finitebits/boilerPlate/Repository/Model/SampleModelGroup.java | Olunuga/AndroidProjectBoilerPlate | 635887d62782d69829a08669e37d77020a6d55c8 | [
"MIT"
] | null | null | null | app/src/main/java/com/finitebits/boilerPlate/Repository/Model/SampleModelGroup.java | Olunuga/AndroidProjectBoilerPlate | 635887d62782d69829a08669e37d77020a6d55c8 | [
"MIT"
] | null | null | null | app/src/main/java/com/finitebits/boilerPlate/Repository/Model/SampleModelGroup.java | Olunuga/AndroidProjectBoilerPlate | 635887d62782d69829a08669e37d77020a6d55c8 | [
"MIT"
] | null | null | null | 20.961538 | 94 | 0.66789 | 10,521 | package com.finitebits.boilerPlate.Repository.Model;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/**
* Created by myorh on 06/09/2018.
*/
public class SampleModelGroup {
private String name;
private String seemMore;
@SerializedName("data")
private List<SampleModel> ... |
3e18bd2ff5fca0876ecb38b3b086f479a04d2646 | 2,291 | java | Java | FacturaNet_Negocio/src/co/edu/uco/facturanet/negocio/ensamblador/implementacion/CiudadEnsamblador.java | DanielAristy/Transplus | 70773092d503e91360df216cf81d3a81871ade89 | [
"Apache-2.0"
] | null | null | null | FacturaNet_Negocio/src/co/edu/uco/facturanet/negocio/ensamblador/implementacion/CiudadEnsamblador.java | DanielAristy/Transplus | 70773092d503e91360df216cf81d3a81871ade89 | [
"Apache-2.0"
] | 8 | 2020-07-17T02:10:35.000Z | 2022-03-02T04:06:45.000Z | FacturaNet_Negocio/src/co/edu/uco/facturanet/negocio/ensamblador/implementacion/CiudadEnsamblador.java | DanielAristy/Transplus | 70773092d503e91360df216cf81d3a81871ade89 | [
"Apache-2.0"
] | null | null | null | 33.202899 | 126 | 0.78481 | 10,522 | package co.edu.uco.facturanet.negocio.ensamblador.implementacion;
import co.edu.uco.facturanet.dominio.CiudadDominio;
import static co.edu.uco.facturanet.negocio.ensamblador.implementacion.DepartamentoEnsamblador.obtenerDepartamentoEnsamblador;
import java.util.List;
import co.edu.uco.facturanet.dominio.Departamento... |
3e18bd53c3821092e02cbc96bbed0c8030b5e440 | 4,363 | java | Java | common/src/main/java/io/netty/util/ConstantPool.java | mh47838704/netty | 70b2e05c692fe7c1e5a4b70787658275e982a3de | [
"Apache-2.0"
] | 4 | 2018-03-03T03:09:01.000Z | 2020-03-26T10:58:31.000Z | common/src/main/java/io/netty/util/ConstantPool.java | mh47838704/netty | 70b2e05c692fe7c1e5a4b70787658275e982a3de | [
"Apache-2.0"
] | null | null | null | common/src/main/java/io/netty/util/ConstantPool.java | mh47838704/netty | 70b2e05c692fe7c1e5a4b70787658275e982a3de | [
"Apache-2.0"
] | 3 | 2018-05-31T03:42:00.000Z | 2020-06-01T15:04:03.000Z | 31.846715 | 114 | 0.643135 | 10,523 | /*
* Copyright 2013 The Netty Project
*
* The Netty Project licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless ... |
3e18bd61a950fce3d4efc672e2e48fa2d4e63dab | 483 | java | Java | src/main/java/com/mcjty/mytutorial/setup/ServerProxy.java | kmcnaught/YouTubeModding14 | d6771070983a530a4dc4e0c9ba3dd13c2c355e0c | [
"MIT"
] | null | null | null | src/main/java/com/mcjty/mytutorial/setup/ServerProxy.java | kmcnaught/YouTubeModding14 | d6771070983a530a4dc4e0c9ba3dd13c2c355e0c | [
"MIT"
] | null | null | null | src/main/java/com/mcjty/mytutorial/setup/ServerProxy.java | kmcnaught/YouTubeModding14 | d6771070983a530a4dc4e0c9ba3dd13c2c355e0c | [
"MIT"
] | null | null | null | 21 | 72 | 0.695652 | 10,524 | package com.mcjty.mytutorial.setup;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.world.World;
public class ServerProxy implements IProxy {
@Override
public void init() {
}
@Override
public World getClientWorld() {
throw new IllegalStateException("Only run this o... |
3e18bde92c48d22131d367b5fb68f7a9da31bded | 350 | java | Java | android/upstream/javax/sip/header/ErrorInfoHeader.java | gordonjohnpatrick/XobotOS | 888ed3b8cc8d8e0a54b1858bfa5a3572545f4d2f | [
"Apache-2.0"
] | 263 | 2015-01-04T16:39:18.000Z | 2022-01-05T17:52:38.000Z | android/upstream/javax/sip/header/ErrorInfoHeader.java | mcanthony/XobotOS | f20db6295e878a2f298c5e3896528e240785805b | [
"Apache-2.0"
] | 3 | 2015-09-06T09:06:39.000Z | 2019-10-15T00:52:49.000Z | android/upstream/javax/sip/header/ErrorInfoHeader.java | mcanthony/XobotOS | f20db6295e878a2f298c5e3896528e240785805b | [
"Apache-2.0"
] | 105 | 2015-01-11T11:45:12.000Z | 2022-02-22T07:26:36.000Z | 23.333333 | 68 | 0.76 | 10,525 | package javax.sip.header;
import java.text.ParseException;
import javax.sip.address.URI;
public interface ErrorInfoHeader extends Header, Parameters {
String NAME = "Error-Info";
URI getErrorInfo();
void setErrorInfo(URI errorInfo);
String getErrorMessage();
void setErrorMessage(String errorMess... |
3e18c04f3186808884df34071f1047d92b9e61d8 | 2,021 | java | Java | clean-architecture-example/application/io/src/main/java/com/mageddo/bank/moneytransference/io/cli/MoneyTransferenceCli.java | mageddo/java-examples | 666cd8a1b822e3102bb3edcc952b0862ec3b2cfd | [
"Apache-2.0"
] | 19 | 2019-02-14T21:22:49.000Z | 2022-02-23T20:25:36.000Z | clean-architecture-example/application/io/src/main/java/com/mageddo/bank/moneytransference/io/cli/MoneyTransferenceCli.java | mageddo/java-examples | 666cd8a1b822e3102bb3edcc952b0862ec3b2cfd | [
"Apache-2.0"
] | 4 | 2021-03-11T06:40:41.000Z | 2022-02-27T10:54:28.000Z | clean-architecture-example/application/io/src/main/java/com/mageddo/bank/moneytransference/io/cli/MoneyTransferenceCli.java | mageddo/java-examples | 666cd8a1b822e3102bb3edcc952b0862ec3b2cfd | [
"Apache-2.0"
] | 10 | 2019-09-05T04:44:15.000Z | 2022-02-02T04:51:03.000Z | 32.596774 | 98 | 0.787729 | 10,526 | package com.mageddo.bank.moneytransference.io.cli;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.mageddo.bank.moneytransference.entity.Account;
import com.mageddo.bank.moneytransference.entity.Transference;
import com.mageddo.bank.moneytransf... |
3e18c12e45ed1ff5f6f21e385afac6bb48300259 | 302 | java | Java | objects/src/main/java/org/cthul/objects/instance/Instance.java | derari/cthul | 7d1208e633840a0a23b4ccc090f10e89736a5a14 | [
"MIT"
] | 7 | 2015-02-22T08:05:56.000Z | 2019-06-15T01:03:36.000Z | objects/src/main/java/org/cthul/objects/instance/Instance.java | derari/cthul | 7d1208e633840a0a23b4ccc090f10e89736a5a14 | [
"MIT"
] | null | null | null | objects/src/main/java/org/cthul/objects/instance/Instance.java | derari/cthul | 7d1208e633840a0a23b4ccc090f10e89736a5a14 | [
"MIT"
] | 1 | 2019-01-08T01:46:44.000Z | 2019-01-08T01:46:44.000Z | 20.133333 | 44 | 0.718543 | 10,527 | package org.cthul.objects.instance;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Instance {
String key() default "";
Class<?> impl() default void.class;
String factory() default "";
}
|
3e18c20a9ad848fa6e179f6d4a7de6e99c555631 | 543 | java | Java | config-manager/config-mapper/src/main/java/com/amos/dao/HardwareCategoryMapper.java | amos-chen/ConfigSystem | 58dd4b1538e4e65f676c9aae2cfb8ef07ddf25ee | [
"Apache-2.0"
] | 1 | 2019-10-13T06:27:32.000Z | 2019-10-13T06:27:32.000Z | config-manager/config-mapper/src/main/java/com/amos/dao/HardwareCategoryMapper.java | amos-chen/ConfigSystem | 58dd4b1538e4e65f676c9aae2cfb8ef07ddf25ee | [
"Apache-2.0"
] | 2 | 2021-01-20T21:58:33.000Z | 2021-12-09T19:47:46.000Z | config-manager/config-mapper/src/main/java/com/amos/dao/HardwareCategoryMapper.java | amos-chen/ConfigSystem | 58dd4b1538e4e65f676c9aae2cfb8ef07ddf25ee | [
"Apache-2.0"
] | null | null | null | 20.884615 | 62 | 0.764273 | 10,528 | package com.amos.dao;
import com.amos.pojo.HardwareCategory;
import java.util.List;
/**
* Created by ${chenlunwei} on 2018/4/11.
*/
public interface HardwareCategoryMapper {
int insertCategory(HardwareCategory hardwareCategory);
HardwareCategory selectByPrimaryKey(Integer id);
int updateByPrimaryKey... |
3e18c2a80d18ba53320e16562114d15963ad9551 | 12,325 | java | Java | xio-core/src/main/java/com/xjeffrose/xio/config/thrift/IpRule.java | manimaul/xio | cd3e24fa61f0d4bd2a3582077071ea9f0218a5fe | [
"Apache-2.0"
] | 40 | 2016-08-18T21:09:50.000Z | 2022-01-26T11:38:19.000Z | xio-core/src/main/java/com/xjeffrose/xio/config/thrift/IpRule.java | manimaul/xio | cd3e24fa61f0d4bd2a3582077071ea9f0218a5fe | [
"Apache-2.0"
] | 78 | 2015-01-27T05:45:46.000Z | 2021-03-31T18:47:13.000Z | xio-core/src/main/java/com/xjeffrose/xio/config/thrift/IpRule.java | manimaul/xio | cd3e24fa61f0d4bd2a3582077071ea9f0218a5fe | [
"Apache-2.0"
] | 29 | 2015-10-09T16:52:37.000Z | 2019-04-10T01:07:44.000Z | 29.842615 | 100 | 0.671481 | 10,529 | /**
* Autogenerated by Thrift Compiler (0.9.3)
*
* <p>DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*
* @generated
*/
package com.xjeffrose.xio.config.thrift;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.BitSet;
import java.util.Collections;... |
3e18c314224b4f9493fd5138993010f205013557 | 1,249 | java | Java | src/main/java/ru/job4j/accident/model/AccidentType.java | IvanPJF/job4j_car_accident | 0d4484a3f5d1d7b1bbe241a8851aa2050a34ba29 | [
"Apache-2.0"
] | null | null | null | src/main/java/ru/job4j/accident/model/AccidentType.java | IvanPJF/job4j_car_accident | 0d4484a3f5d1d7b1bbe241a8851aa2050a34ba29 | [
"Apache-2.0"
] | 1 | 2022-02-16T01:13:11.000Z | 2022-02-16T01:13:11.000Z | src/main/java/ru/job4j/accident/model/AccidentType.java | IvanPJF/job4j_car_accident | 0d4484a3f5d1d7b1bbe241a8851aa2050a34ba29 | [
"Apache-2.0"
] | null | null | null | 18.924242 | 56 | 0.549239 | 10,530 | package ru.job4j.accident.model;
import javax.persistence.*;
import java.util.Objects;
@Entity
@Table(name = "accident_type")
public class AccidentType {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
@Column(name = "name")
private String name;
... |
3e18c4777311ec27cf947c964e1b56f091268cf6 | 1,711 | java | Java | worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BiomeRegistry.java | LaudateCorpus1/WorldEdit | de6fa17b01c08161aacd8ef3c7ee05fe0f7f77d5 | [
"BSD-3-Clause"
] | 1,428 | 2019-01-02T21:08:08.000Z | 2022-03-30T20:23:10.000Z | worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BiomeRegistry.java | LaudateCorpus1/WorldEdit | de6fa17b01c08161aacd8ef3c7ee05fe0f7f77d5 | [
"BSD-3-Clause"
] | 884 | 2019-01-21T22:45:13.000Z | 2022-03-28T16:21:00.000Z | worldedit-core/src/main/java/com/sk89q/worldedit/world/registry/BiomeRegistry.java | LaudateCorpus1/WorldEdit | de6fa17b01c08161aacd8ef3c7ee05fe0f7f77d5 | [
"BSD-3-Clause"
] | 453 | 2015-01-10T02:27:18.000Z | 2018-12-29T18:35:16.000Z | 31.685185 | 73 | 0.714787 | 10,531 | /*
* WorldEdit, a Minecraft world manipulation toolkit
* Copyright (C) sk89q <http://www.sk89q.com>
* Copyright (C) WorldEdit team and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software F... |
3e18c52517ae15a6be7ac8b3b5a2bbffa93844d8 | 3,236 | java | Java | enhanced/java/classlib/modules/awt/src/test/impl/boot/java/awt/geom/QuadCurve2DDoubleTest.java | qinFamily/freeVM | 9caa0256b4089d74186f84b8fb2afc95a0afc7bc | [
"Apache-2.0"
] | 5 | 2017-03-08T20:32:39.000Z | 2021-07-10T10:12:38.000Z | enhanced/java/classlib/modules/awt/src/test/impl/boot/java/awt/geom/QuadCurve2DDoubleTest.java | qinFamily/freeVM | 9caa0256b4089d74186f84b8fb2afc95a0afc7bc | [
"Apache-2.0"
] | 1 | 2021-10-17T13:03:49.000Z | 2021-10-17T13:03:49.000Z | enhanced/java/classlib/modules/awt/src/test/impl/boot/java/awt/geom/QuadCurve2DDoubleTest.java | qinFamily/freeVM | 9caa0256b4089d74186f84b8fb2afc95a0afc7bc | [
"Apache-2.0"
] | 4 | 2015-07-07T07:06:59.000Z | 2018-06-19T22:38:04.000Z | 28.892857 | 94 | 0.589926 | 10,532 | /*
* 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... |
3e18c544d79b4d198b51b1d35c503d6833c42afd | 11,118 | java | Java | mock-infrastructure/src/generated/com/sequenceiq/mock/swagger/model/ApiActivity.java | drorke/cloudbreak | 8a1d4749fe9d1d683f5bec3102e8b86f59928f67 | [
"Apache-2.0"
] | 174 | 2017-07-14T03:20:42.000Z | 2022-03-25T05:03:18.000Z | mock-infrastructure/src/generated/com/sequenceiq/mock/swagger/model/ApiActivity.java | drorke/cloudbreak | 8a1d4749fe9d1d683f5bec3102e8b86f59928f67 | [
"Apache-2.0"
] | 2,242 | 2017-07-12T05:52:01.000Z | 2022-03-31T15:50:08.000Z | mock-infrastructure/src/generated/com/sequenceiq/mock/swagger/model/ApiActivity.java | drorke/cloudbreak | 8a1d4749fe9d1d683f5bec3102e8b86f59928f67 | [
"Apache-2.0"
] | 172 | 2017-07-12T08:53:48.000Z | 2022-03-24T12:16:33.000Z | 23.909677 | 170 | 0.670714 | 10,533 | package com.sequenceiq.mock.swagger.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.sequenceiq.mock.swagger.model.ApiActivityStatus;
import com.sequenceiq.mock.swagger.model.ApiActivityType;
import io.swagger.annotat... |
3e18c5c5dedbc752b591cc561077f2d3cf18779d | 224 | java | Java | BackEnd_Learn/Java/auth/src/main/java/io/github/leeseojune53/auth/error/ErrorResponse.java | leeseojune53/TIL | 6a27b56f8e3899c6ff0a427fc0eac34d3b7e504e | [
"MIT"
] | 12 | 2020-04-23T15:53:46.000Z | 2021-07-14T07:56:31.000Z | BackEnd_Learn/Java/auth/src/main/java/io/github/leeseojune53/auth/error/ErrorResponse.java | leeseojune53/BOJ | 3c477f4e977d7ffac6db6e79e6bf412525fd9c4a | [
"MIT"
] | 18 | 2021-05-27T23:48:37.000Z | 2022-02-27T23:20:07.000Z | BackEnd_Learn/Java/auth/src/main/java/io/github/leeseojune53/auth/error/ErrorResponse.java | leeseojune53/BOJ | 3c477f4e977d7ffac6db6e79e6bf412525fd9c4a | [
"MIT"
] | 3 | 2020-04-23T15:53:53.000Z | 2021-11-08T11:09:01.000Z | 18.666667 | 42 | 0.794643 | 10,534 | package io.github.leeseojune53.auth.error;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public class ErrorResponse {
private final int status;
private final String message;
}
|
3e18c65a33d51cfe9c5a37b76ce534a739c999ae | 6,737 | java | Java | src/test/java/com/enremmeta/rtb/proto/adx/AdXAdapterSpec_Constructor.java | opencmo/lot49 | 11d5a7bad792683f11ebd41f8185c0c303d9f1ea | [
"RSA-MD"
] | 1 | 2019-07-04T03:57:41.000Z | 2019-07-04T03:57:41.000Z | src/test/java/com/enremmeta/rtb/proto/adx/AdXAdapterSpec_Constructor.java | opencmo/lot49 | 11d5a7bad792683f11ebd41f8185c0c303d9f1ea | [
"RSA-MD"
] | null | null | null | src/test/java/com/enremmeta/rtb/proto/adx/AdXAdapterSpec_Constructor.java | opencmo/lot49 | 11d5a7bad792683f11ebd41f8185c0c303d9f1ea | [
"RSA-MD"
] | 2 | 2018-01-05T18:13:24.000Z | 2020-07-09T02:35:23.000Z | 37.220994 | 174 | 0.645836 | 10,535 | package com.enremmeta.rtb.proto.adx;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.File;
import java.io.IOException;
import java.io.StringReader;
import java.nio.charset.Charset;
import java.util.HashSet;
import java.util.Ma... |
3e18c7157954774fd4f0c6aaa41890f60b981c3b | 4,798 | java | Java | src/com/comparetraits/servlet/DemoServlet.java | Naraharibharathkumar/TeamMavericks-CompareTraits | 6f438328350e3a4a31e0c7045b36d93c3c9e2357 | [
"Apache-2.0"
] | null | null | null | src/com/comparetraits/servlet/DemoServlet.java | Naraharibharathkumar/TeamMavericks-CompareTraits | 6f438328350e3a4a31e0c7045b36d93c3c9e2357 | [
"Apache-2.0"
] | null | null | null | src/com/comparetraits/servlet/DemoServlet.java | Naraharibharathkumar/TeamMavericks-CompareTraits | 6f438328350e3a4a31e0c7045b36d93c3c9e2357 | [
"Apache-2.0"
] | null | null | null | 31.359477 | 88 | 0.721342 | 10,536 | package com.comparetraits.servlet;
import java.io.IOException;
import java.net.URI;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.annotation.MultipartConfig;
import javax.servlet.http.HttpServlet;
... |
3e18c720387464f559630fdc267b352bc295cb4e | 58 | java | Java | kukulkan-shell-plugin-generator/src/main/java/mx/infotec/dads/kukulkan/shell/commands/kukulkan/package-info.java | mosbaldo/kukulkan-shell | d4272c99cdb84c5a22501e38830f91cfa0166bf2 | [
"Apache-2.0"
] | null | null | null | kukulkan-shell-plugin-generator/src/main/java/mx/infotec/dads/kukulkan/shell/commands/kukulkan/package-info.java | mosbaldo/kukulkan-shell | d4272c99cdb84c5a22501e38830f91cfa0166bf2 | [
"Apache-2.0"
] | 20 | 2018-04-20T16:25:36.000Z | 2018-10-17T16:30:17.000Z | kukulkan-shell-plugin-generator/src/main/java/mx/infotec/dads/kukulkan/shell/commands/kukulkan/package-info.java | mosbaldo/kukulkan-shell | d4272c99cdb84c5a22501e38830f91cfa0166bf2 | [
"Apache-2.0"
] | 3 | 2018-01-31T22:30:11.000Z | 2021-08-21T03:59:55.000Z | 29 | 57 | 0.844828 | 10,537 | package mx.infotec.dads.kukulkan.shell.commands.kukulkan;
|
3e18c89ef56760b4201852da556cb04e8a33e60b | 6,123 | java | Java | console/src/main/java/com/alibaba/nacos/console/security/nacos/NacosAuthManager.java | yangzhiwei256/alibaba_nacos | 5543089822626582b67dc53bdc267eea0ab3605f | [
"Apache-2.0"
] | null | null | null | console/src/main/java/com/alibaba/nacos/console/security/nacos/NacosAuthManager.java | yangzhiwei256/alibaba_nacos | 5543089822626582b67dc53bdc267eea0ab3605f | [
"Apache-2.0"
] | 6 | 2021-01-21T01:27:56.000Z | 2022-02-27T08:47:48.000Z | console/src/main/java/com/alibaba/nacos/console/security/nacos/NacosAuthManager.java | yangzhiwei256/alibaba_nacos | 5543089822626582b67dc53bdc267eea0ab3605f | [
"Apache-2.0"
] | null | null | null | 38.26875 | 154 | 0.713866 | 10,538 | /*
* Copyright 1999-2018 Alibaba Group Holding Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... |
3e18c927fee1a4771b86ec2fbcec0b209253804b | 228 | java | Java | src/main/java/com/swampus/excercise/task/Task3Junior.java | swampus/EXCERSICE__OOP | b78a0cd20d3b6c490c104e56bedb0c8ca1ac4f93 | [
"Apache-2.0"
] | null | null | null | src/main/java/com/swampus/excercise/task/Task3Junior.java | swampus/EXCERSICE__OOP | b78a0cd20d3b6c490c104e56bedb0c8ca1ac4f93 | [
"Apache-2.0"
] | null | null | null | src/main/java/com/swampus/excercise/task/Task3Junior.java | swampus/EXCERSICE__OOP | b78a0cd20d3b6c490c104e56bedb0c8ca1ac4f93 | [
"Apache-2.0"
] | null | null | null | 19 | 65 | 0.798246 | 10,539 | package com.swampus.excercise.task;
import com.swampus.excercise.not.modify.clazz.ExtenderForJunior3;
/**
* Ovveride method doSomeUnsafeStaff is should do NOTHING
*/
public class Task3Junior extends ExtenderForJunior3 {
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.