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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3e2a3bd80dd6d31468bcd0d8d2a7359a9b1f03cd | 921 | java | Java | 10/antlr_learning/listener_visitor/visitor/PropertyFileListener.java | SummerLife/building-my-computer | 2f3c8598c739f6299a46667334696b3daae4105c | [
"MIT"
] | 10 | 2020-07-30T22:59:21.000Z | 2021-11-16T08:47:40.000Z | 10/antlr_learning/listener_visitor/visitor/PropertyFileListener.java | SummerLife/building-my-computer | 2f3c8598c739f6299a46667334696b3daae4105c | [
"MIT"
] | null | null | null | 10/antlr_learning/listener_visitor/visitor/PropertyFileListener.java | SummerLife/building-my-computer | 2f3c8598c739f6299a46667334696b3daae4105c | [
"MIT"
] | null | null | null | 31.758621 | 74 | 0.739414 | 17,870 | // Generated from PropertyFile.g4 by ANTLR 4.9
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**
* This interface defines a complete listener for a parse tree produced by
* {@link PropertyFileParser}.
*/
public interface PropertyFileListener extends ParseTreeListener {
/**
* Enter a parse tree produced by ... |
3e2a3c0f5839cfb925b6ab69126c95c677d0c816 | 560 | java | Java | PRG/TodasActividadesUnidad1/javaexercises3/_11_NumbersCalc.java | velikGeorgiev/School | fb0a8d4db95b23870dd9ed0f2f1327429fbdd0db | [
"MIT"
] | null | null | null | PRG/TodasActividadesUnidad1/javaexercises3/_11_NumbersCalc.java | velikGeorgiev/School | fb0a8d4db95b23870dd9ed0f2f1327429fbdd0db | [
"MIT"
] | null | null | null | PRG/TodasActividadesUnidad1/javaexercises3/_11_NumbersCalc.java | velikGeorgiev/School | fb0a8d4db95b23870dd9ed0f2f1327429fbdd0db | [
"MIT"
] | null | null | null | 20 | 74 | 0.55 | 17,871 |
package javaexercises3;
import java.math.BigInteger;
/**
*
* @author Velik Georgiev Chelebiev
*/
public class _11_NumbersCalc {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int sum = 0;
BigInteger product = new BigInteger("1");
... |
3e2a3d239b70f0f70139ff4b34eb79dd69d4ba7d | 676 | java | Java | 309 maxProfit_with_cool(Solution 2).java | OliveStar/leetcodecpp | 4558d90cf5633adea9d9fd785fdd36a001442d67 | [
"MIT"
] | null | null | null | 309 maxProfit_with_cool(Solution 2).java | OliveStar/leetcodecpp | 4558d90cf5633adea9d9fd785fdd36a001442d67 | [
"MIT"
] | null | null | null | 309 maxProfit_with_cool(Solution 2).java | OliveStar/leetcodecpp | 4558d90cf5633adea9d9fd785fdd36a001442d67 | [
"MIT"
] | null | null | null | 35.578947 | 60 | 0.578402 | 17,872 | class Solution {
// 空间复杂度优化版本
// 交易次数k不限,k为正无穷,那么k和k-1就是一样的,不影响dp数组,可以降维
// 每次sell之后要等1天后才能交易,那么第i天选择buy的时候,要从i-2的状态进行转移,而不是i-1
public int maxProfit(int[] prices) {
int n = prices.length;
// dp_i_0 表示当前不持有股票的最大利润,dp_i_1表示当前持有股票的最大利润
int dp_i_0 = 0, dp_i_1 = Integer.MIN_VALUE;
... |
3e2a3da48aa5de2c4f8468e843a683b08d4a7538 | 1,785 | java | Java | common/src/main/java/de/uniulm/omi/cloudiator/lance/application/ApplicationInstanceId.java | rakes7/Cloudiator | 5a817ba7fd088e7d4be53df0834e8566f9db690d | [
"Apache-2.0"
] | 1 | 2016-06-09T22:23:50.000Z | 2016-06-09T22:23:50.000Z | common/src/main/java/de/uniulm/omi/cloudiator/lance/application/ApplicationInstanceId.java | rakes7/Cloudiator | 5a817ba7fd088e7d4be53df0834e8566f9db690d | [
"Apache-2.0"
] | 5 | 2018-08-31T11:34:35.000Z | 2019-06-30T02:21:36.000Z | common/src/main/java/de/uniulm/omi/cloudiator/lance/application/ApplicationInstanceId.java | rakes7/Cloudiator | 5a817ba7fd088e7d4be53df0834e8566f9db690d | [
"Apache-2.0"
] | 4 | 2016-04-02T10:11:35.000Z | 2019-02-23T19:29:05.000Z | 30.254237 | 87 | 0.670588 | 17,873 | /*
* Copyright (c) 2014-2015 University of Ulm
*
* See the NOTICE file distributed with this work for additional information
* regarding copyright ownership. 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 ... |
3e2a3e60158605faa0f2ecee29d50907fe260601 | 1,879 | java | Java | src/main/java/com/wickedwitch/config/SpringSecurityConfig.java | WickedWitchWarsaw/ThymeleafSpringDemo | 4de49aed418d8dc5f87f7708b2fcd4416f5a4de6 | [
"MIT"
] | 4 | 2017-03-19T19:24:32.000Z | 2017-10-26T20:11:43.000Z | src/main/java/com/wickedwitch/config/SpringSecurityConfig.java | WickedWitchWarsaw/ThymeleafSpringDemo | 4de49aed418d8dc5f87f7708b2fcd4416f5a4de6 | [
"MIT"
] | null | null | null | src/main/java/com/wickedwitch/config/SpringSecurityConfig.java | WickedWitchWarsaw/ThymeleafSpringDemo | 4de49aed418d8dc5f87f7708b2fcd4416f5a4de6 | [
"MIT"
] | 6 | 2017-01-18T21:06:53.000Z | 2021-08-30T04:18:55.000Z | 34.796296 | 107 | 0.616817 | 17,874 | package com.wickedwitch.config;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.w... |
3e2a3f74461c28f5feea79c002c2130f101592b0 | 434 | java | Java | src/main/java/leetcode/leetcode543.java | pengczx/interview_code | 39d306853e0147cca08f5bb0f25548c07e02cbd6 | [
"Apache-2.0"
] | null | null | null | src/main/java/leetcode/leetcode543.java | pengczx/interview_code | 39d306853e0147cca08f5bb0f25548c07e02cbd6 | [
"Apache-2.0"
] | null | null | null | src/main/java/leetcode/leetcode543.java | pengczx/interview_code | 39d306853e0147cca08f5bb0f25548c07e02cbd6 | [
"Apache-2.0"
] | null | null | null | 18.083333 | 52 | 0.5 | 17,875 | package leetcode;
public class leetcode543 {
int ans;
public int diameterOfBinaryTree(TreeNode root) {
ans = 1;
depth(root);
return ans - 1;
}
public int depth(TreeNode root) {
if (root == null) {
return 0;
}
int L = depth(root.left);
... |
3e2a3fee93fcf4f96098b68ce8d6968f67c1fb88 | 470 | java | Java | producer/src/main/java/cn/ma/cei/model/processor/xInvoke.java | macomfan/cei | 49efb1baf39e0bb3e390791fafa3508226644975 | [
"MIT"
] | 2 | 2020-05-09T01:54:04.000Z | 2020-12-31T02:36:45.000Z | producer/src/main/java/cn/ma/cei/model/processor/xInvoke.java | macomfan/cei | 49efb1baf39e0bb3e390791fafa3508226644975 | [
"MIT"
] | 27 | 2020-04-18T11:21:07.000Z | 2022-02-26T22:22:33.000Z | producer/src/main/java/cn/ma/cei/model/processor/xInvoke.java | macomfan/cei | 49efb1baf39e0bb3e390791fafa3508226644975 | [
"MIT"
] | 1 | 2020-04-26T10:58:02.000Z | 2020-04-26T10:58:02.000Z | 24.736842 | 49 | 0.755319 | 17,876 | package cn.ma.cei.model.processor;
import cn.ma.cei.model.base.xDataProcessorItem;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "invoke")
public class xInvoke extends xDataProcessorItem {
@XmlAttribute(name = "function")
public String ... |
3e2a400bf68143e5811de54dd1efd0d2f6003c64 | 361 | java | Java | src/main/java/com/holmesycl/ebook/util/BookUtil.java | holmesycl/ebook | 81b174126f91833619ebaa9b39fc7ee36f6d736e | [
"Apache-2.0"
] | null | null | null | src/main/java/com/holmesycl/ebook/util/BookUtil.java | holmesycl/ebook | 81b174126f91833619ebaa9b39fc7ee36f6d736e | [
"Apache-2.0"
] | null | null | null | src/main/java/com/holmesycl/ebook/util/BookUtil.java | holmesycl/ebook | 81b174126f91833619ebaa9b39fc7ee36f6d736e | [
"Apache-2.0"
] | null | null | null | 22.5625 | 46 | 0.65651 | 17,877 | package com.holmesycl.ebook.util;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class BookUtil {
public static void main(String[] args) {
String s = "2018-03-27 12:11:52";
Pattern pattern = Pattern.compile(s);
Matcher matcher = pattern.matcher("");
System.... |
3e2a403118e5759779fd35d5a1060e31efb68ba5 | 8,981 | java | Java | kubernetes/src/main/java/io/kubernetes/client/openapi/models/V1alpha1Endpoint.java | eschrock/java | e7bf4d17b249b95b29199394e5b89fe844b9a2ee | [
"Apache-2.0"
] | 1 | 2020-04-30T07:07:35.000Z | 2020-04-30T07:07:35.000Z | kubernetes/src/main/java/io/kubernetes/client/openapi/models/V1alpha1Endpoint.java | eschrock/java | e7bf4d17b249b95b29199394e5b89fe844b9a2ee | [
"Apache-2.0"
] | null | null | null | kubernetes/src/main/java/io/kubernetes/client/openapi/models/V1alpha1Endpoint.java | eschrock/java | e7bf4d17b249b95b29199394e5b89fe844b9a2ee | [
"Apache-2.0"
] | null | null | null | 38.217021 | 802 | 0.742011 | 17,878 | /*
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1.16.4
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do no... |
3e2a40564c77c72856ceba9b43cb3f140ded6817 | 1,841 | java | Java | dd-java-agent/instrumentation/grizzly-client-1.9/src/main/java/datadog/trace/instrumentation/grizzly/client/ClientResponseInstrumentation.java | essobedo/dd-trace-java | 745ba5f0ab974b8926c3e407560e27065680377b | [
"Apache-2.0"
] | 1 | 2021-12-02T22:14:47.000Z | 2021-12-02T22:14:47.000Z | dd-java-agent/instrumentation/grizzly-client-1.9/src/main/java/datadog/trace/instrumentation/grizzly/client/ClientResponseInstrumentation.java | HediAbed/dd-trace-java | 35789493532ef27d305a0f9301d210e0f375ffd7 | [
"Apache-2.0"
] | null | null | null | dd-java-agent/instrumentation/grizzly-client-1.9/src/main/java/datadog/trace/instrumentation/grizzly/client/ClientResponseInstrumentation.java | HediAbed/dd-trace-java | 35789493532ef27d305a0f9301d210e0f375ffd7 | [
"Apache-2.0"
] | null | null | null | 31.741379 | 90 | 0.766431 | 17,879 | package datadog.trace.instrumentation.grizzly.client;
import static datadog.trace.agent.tooling.bytebuddy.matcher.NameMatchers.named;
import static java.util.Collections.singletonMap;
import static net.bytebuddy.matcher.ElementMatchers.hasSuperClass;
import static net.bytebuddy.matcher.ElementMatchers.isPublic;
import... |
3e2a4152f4ea1275f9e7f8b069a3b67be6ab945c | 920 | java | Java | src/main/java/netty_examples/ApnsMessage.java | zxjzxj9/netty_examples | 1ec4013ab2ed246346c39c0e54a39d2228343332 | [
"MIT"
] | null | null | null | src/main/java/netty_examples/ApnsMessage.java | zxjzxj9/netty_examples | 1ec4013ab2ed246346c39c0e54a39d2228343332 | [
"MIT"
] | null | null | null | src/main/java/netty_examples/ApnsMessage.java | zxjzxj9/netty_examples | 1ec4013ab2ed246346c39c0e54a39d2228343332 | [
"MIT"
] | null | null | null | 30.666667 | 72 | 0.551087 | 17,880 | package netty_examples;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import java.nio.ByteOrder;
public final class ApnsMessage {
private static final byte COMMAND = (byte) 1;
public ByteBuf toBuffer() {
// short size = (short) (1 + // Command
// 4 + // Identifier
... |
3e2a416c42ee01be3a73e3ee3baab26b06e3ca12 | 2,687 | java | Java | dbmaintain/src/main/java/org/dbmaintain/database/Databases.java | chmlr/dbmaintain | 000314fb8bbcb5977ea41f363b56882ddf44aa8e | [
"Apache-2.0"
] | 19 | 2015-03-24T10:34:18.000Z | 2021-11-25T10:30:23.000Z | dbmaintain/src/main/java/org/dbmaintain/database/Databases.java | chmlr/dbmaintain | 000314fb8bbcb5977ea41f363b56882ddf44aa8e | [
"Apache-2.0"
] | 18 | 2015-02-27T12:19:29.000Z | 2020-11-11T14:00:54.000Z | dbmaintain/src/main/java/org/dbmaintain/database/Databases.java | chmlr/dbmaintain | 000314fb8bbcb5977ea41f363b56882ddf44aa8e | [
"Apache-2.0"
] | 10 | 2016-02-24T13:11:10.000Z | 2019-12-15T14:45:28.000Z | 31.988095 | 111 | 0.66952 | 17,881 | /*
* Copyright DbMaintain.org
*
* 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 agr... |
3e2a41e98d56baa1cf637035c43c19df3326cc3d | 8,538 | java | Java | plugins/rest/src/test/java/org/apache/struts2/rest/ContentTypeHandlerManagerTest.java | melanj/struts | f0b24d17da4751666f12bc498c73c20d91e29558 | [
"Apache-2.0"
] | 1,330 | 2015-01-01T12:04:11.000Z | 2022-03-31T06:18:36.000Z | plugins/rest/src/test/java/org/apache/struts2/rest/ContentTypeHandlerManagerTest.java | melanj/struts | f0b24d17da4751666f12bc498c73c20d91e29558 | [
"Apache-2.0"
] | 447 | 2015-01-20T04:00:10.000Z | 2022-03-15T13:32:57.000Z | plugins/rest/src/test/java/org/apache/struts2/rest/ContentTypeHandlerManagerTest.java | melanj/struts | f0b24d17da4751666f12bc498c73c20d91e29558 | [
"Apache-2.0"
] | 955 | 2015-01-05T09:07:43.000Z | 2022-03-27T06:00:27.000Z | 48.511364 | 161 | 0.729093 | 17,882 | /*
* 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 ... |
3e2a42cf53bfdf28df2218caf3647d4daa125033 | 785 | java | Java | src/main/java/uk/gov/cshr/civilservant/service/SecurityEvaluationContextExtension.java | Civil-Service-Human-Resources/lpg-civil-servant-register | 8d1d13cc4dabb413c6356462423c53a555eeab95 | [
"MIT"
] | 1 | 2022-02-02T11:44:29.000Z | 2022-02-02T11:44:29.000Z | src/main/java/uk/gov/cshr/civilservant/service/SecurityEvaluationContextExtension.java | Civil-Service-Human-Resources/lpg-civil-servant-register | 8d1d13cc4dabb413c6356462423c53a555eeab95 | [
"MIT"
] | 21 | 2018-05-01T16:56:35.000Z | 2020-07-31T09:23:20.000Z | src/main/java/uk/gov/cshr/civilservant/service/SecurityEvaluationContextExtension.java | Civil-Service-Human-Resources/lpg-civil-servant-register | 8d1d13cc4dabb413c6356462423c53a555eeab95 | [
"MIT"
] | 1 | 2019-01-22T12:38:31.000Z | 2019-01-22T12:38:31.000Z | 34.130435 | 91 | 0.831847 | 17,883 | package uk.gov.cshr.civilservant.service;
import org.springframework.data.repository.query.spi.EvaluationContextExtensionSupport;
import org.springframework.security.access.expression.SecurityExpressionRoot;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.Secur... |
3e2a4411c7484e49b75a7001a361484c786b5696 | 5,768 | java | Java | pentaho-notification-bundle/src/test/java/org/pentaho/osgi/notification/api/listeners/FilteringQueuedNotificationListenerImplTest.java | bcostahitachivantara/pentaho-osgi-bundles | 3bb8e05c2e681c441c2bdc0e46444652e4da1164 | [
"Apache-2.0"
] | null | null | null | pentaho-notification-bundle/src/test/java/org/pentaho/osgi/notification/api/listeners/FilteringQueuedNotificationListenerImplTest.java | bcostahitachivantara/pentaho-osgi-bundles | 3bb8e05c2e681c441c2bdc0e46444652e4da1164 | [
"Apache-2.0"
] | null | null | null | pentaho-notification-bundle/src/test/java/org/pentaho/osgi/notification/api/listeners/FilteringQueuedNotificationListenerImplTest.java | bcostahitachivantara/pentaho-osgi-bundles | 3bb8e05c2e681c441c2bdc0e46444652e4da1164 | [
"Apache-2.0"
] | 2 | 2018-11-05T18:21:44.000Z | 2020-01-31T09:06:44.000Z | 47.669421 | 118 | 0.771498 | 17,884 | /*!
* Copyright 2010 - 2018 Hitachi Vantara. 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 ... |
3e2a45281ed5850e87149ad0422229c9ef0752a5 | 4,608 | java | Java | src/main/java/org/autogui/swing/mapping/GuiReprEmbeddedComponent.java | ppp-kohe/autogui | 2f6e5b6867c5fe585f27532dbc929802ee2cf2ec | [
"Apache-2.0"
] | 6 | 2018-11-26T09:02:31.000Z | 2021-09-17T02:54:26.000Z | src/main/java/org/autogui/swing/mapping/GuiReprEmbeddedComponent.java | ppp-kohe/autogui | 2f6e5b6867c5fe585f27532dbc929802ee2cf2ec | [
"Apache-2.0"
] | 1 | 2020-11-01T03:24:47.000Z | 2020-11-01T03:24:47.000Z | src/main/java/org/autogui/swing/mapping/GuiReprEmbeddedComponent.java | ppp-kohe/autogui | 2f6e5b6867c5fe585f27532dbc929802ee2cf2ec | [
"Apache-2.0"
] | null | null | null | 36.283465 | 139 | 0.610243 | 17,885 | package org.autogui.swing.mapping;
import org.autogui.base.mapping.GuiMappingContext;
import org.autogui.base.mapping.GuiReprValue;
import org.autogui.base.type.GuiUpdatedValue;
import org.autogui.swing.util.SwingDeferredRunner;
import javax.swing.*;
import java.util.concurrent.Future;
import java.util.function.Consu... |
3e2a4585ab3b82d7650bedb84151dbd744845513 | 938 | java | Java | src/main/java/org/gooru/nucleus/handlers/events/bootstrap/shutdown/Finalizers.java | Gooru/ln-nucleus-handlers-event | 2ea52cd3cf68291152c51f82b901c5614c77136e | [
"Apache-2.0"
] | null | null | null | src/main/java/org/gooru/nucleus/handlers/events/bootstrap/shutdown/Finalizers.java | Gooru/ln-nucleus-handlers-event | 2ea52cd3cf68291152c51f82b901c5614c77136e | [
"Apache-2.0"
] | null | null | null | src/main/java/org/gooru/nucleus/handlers/events/bootstrap/shutdown/Finalizers.java | Gooru/ln-nucleus-handlers-event | 2ea52cd3cf68291152c51f82b901c5614c77136e | [
"Apache-2.0"
] | null | null | null | 24.684211 | 75 | 0.719616 | 17,886 | package org.gooru.nucleus.handlers.events.bootstrap.shutdown;
import org.gooru.nucleus.handlers.events.app.components.DataSourceRegistry;
import org.gooru.nucleus.handlers.events.app.components.KafkaRegistry;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class Finalizers impleme... |
3e2a46af9d37f480310df9dfd5ef54764e409521 | 1,043 | java | Java | src/main/java/net/mobz/mixin/flowerglo.java | Jack406/MobZ | 333ecb3fa9694c4725b6e59a9e2655a631a63e92 | [
"CC0-1.0"
] | null | null | null | src/main/java/net/mobz/mixin/flowerglo.java | Jack406/MobZ | 333ecb3fa9694c4725b6e59a9e2655a631a63e92 | [
"CC0-1.0"
] | null | null | null | src/main/java/net/mobz/mixin/flowerglo.java | Jack406/MobZ | 333ecb3fa9694c4725b6e59a9e2655a631a63e92 | [
"CC0-1.0"
] | null | null | null | 38.62963 | 88 | 0.774688 | 17,887 | package net.mobz.mixin;
import net.minecraft.entity.EntityCategory;
import net.minecraft.world.biome.Biome;
import net.minecraft.world.biome.FlowerForestBiome;
import net.mobz.glomod;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.... |
3e2a473658d5d6fc0426cabd4a53d045d090dc76 | 479 | java | Java | src/main/java/eu/sanjin/kurelic/paintingsgarage/hashtag/repository/HashtagRepository.java | SanjinKurelic/PaintingsGarage | 73771239b0f426163c8adbf5d4cce92a443abd6e | [
"MIT"
] | null | null | null | src/main/java/eu/sanjin/kurelic/paintingsgarage/hashtag/repository/HashtagRepository.java | SanjinKurelic/PaintingsGarage | 73771239b0f426163c8adbf5d4cce92a443abd6e | [
"MIT"
] | 6 | 2022-03-26T11:20:21.000Z | 2022-03-26T14:03:59.000Z | src/main/java/eu/sanjin/kurelic/paintingsgarage/hashtag/repository/HashtagRepository.java | SanjinKurelic/PaintingsGarage | 73771239b0f426163c8adbf5d4cce92a443abd6e | [
"MIT"
] | null | null | null | 28.176471 | 73 | 0.830898 | 17,888 | package eu.sanjin.kurelic.paintingsgarage.hashtag.repository;
import eu.sanjin.kurelic.paintingsgarage.hashtag.entity.Hashtag;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Optional;
@Repository
public interface... |
3e2a477cfe19bf839d5dcc2e22ab17a05d47bb4a | 11,083 | java | Java | src/main/java/org/sejda/sambox/pdmodel/graphics/shading/PatchMeshesShadingContext.java | dthadi3/sambox | d801f2ee9b6750de49bd2ba3a09a601d4622321f | [
"Apache-2.0"
] | 39 | 2015-10-18T12:29:25.000Z | 2021-12-28T23:47:17.000Z | src/main/java/org/sejda/sambox/pdmodel/graphics/shading/PatchMeshesShadingContext.java | dthadi3/sambox | d801f2ee9b6750de49bd2ba3a09a601d4622321f | [
"Apache-2.0"
] | 137 | 2015-05-01T08:14:25.000Z | 2021-12-08T19:55:50.000Z | src/main/java/org/sejda/sambox/pdmodel/graphics/shading/PatchMeshesShadingContext.java | dthadi3/sambox | d801f2ee9b6750de49bd2ba3a09a601d4622321f | [
"Apache-2.0"
] | 15 | 2015-03-06T18:32:43.000Z | 2021-03-23T23:10:16.000Z | 37.191275 | 110 | 0.583236 | 17,889 | /*
* Copyright 2014 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... |
3e2a482e2cc97e05ec5d234b279a8e4ac141d3fb | 1,352 | java | Java | src/tgcommon/src/com/alachisoft/tayzgrid/common/threading/QueueChangedState.java | Alachisoft/TayzGrid | 1cd2cdfff485a08f329c44150a5f02d8a98255cc | [
"Apache-2.0"
] | 9 | 2015-06-25T06:03:54.000Z | 2019-04-21T16:57:50.000Z | src/tgcommon/src/com/alachisoft/tayzgrid/common/threading/QueueChangedState.java | Alachisoft/TayzGrid | 1cd2cdfff485a08f329c44150a5f02d8a98255cc | [
"Apache-2.0"
] | null | null | null | src/tgcommon/src/com/alachisoft/tayzgrid/common/threading/QueueChangedState.java | Alachisoft/TayzGrid | 1cd2cdfff485a08f329c44150a5f02d8a98255cc | [
"Apache-2.0"
] | 9 | 2015-09-11T15:30:05.000Z | 2022-02-24T17:28:11.000Z | 26 | 74 | 0.70784 | 17,890 | /*
* Copyright (c) 2015, Alachisoft. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law ... |
3e2a48d4a104a6ba397067188f37e1bb9ddb4918 | 160 | java | Java | test/src/main/resources/java_sources/SimpleJavaSourceFileA.java | justinass-wix/rules_scala | 4ba3780fcba8d26980daff4639abc6f18517308b | [
"Apache-2.0"
] | null | null | null | test/src/main/resources/java_sources/SimpleJavaSourceFileA.java | justinass-wix/rules_scala | 4ba3780fcba8d26980daff4639abc6f18517308b | [
"Apache-2.0"
] | null | null | null | test/src/main/resources/java_sources/SimpleJavaSourceFileA.java | justinass-wix/rules_scala | 4ba3780fcba8d26980daff4639abc6f18517308b | [
"Apache-2.0"
] | null | null | null | 13.333333 | 36 | 0.725 | 17,891 | package java_sources;
public class SimpleJavaSourceFileA {
public int someIntField;
public SimpleJavaSourceFileA() {
this.someIntField = 0;
}
}
|
3e2a48d7e7c934f1d56b408068ed3df7eceb4610 | 1,279 | java | Java | apps/testnorge-frikort/src/main/java/no/nav/registre/frikort/service/MqService.java | navikt/testnorge | 8400ad28d37ec5dee87a4fe76e233632d2cfdbd1 | [
"MIT"
] | 3 | 2020-06-30T18:14:44.000Z | 2022-03-07T10:10:48.000Z | apps/testnorge-frikort/src/main/java/no/nav/registre/frikort/service/MqService.java | navikt/testnorge | 8400ad28d37ec5dee87a4fe76e233632d2cfdbd1 | [
"MIT"
] | 1,546 | 2020-05-25T14:39:45.000Z | 2022-03-31T13:41:00.000Z | apps/testnorge-frikort/src/main/java/no/nav/registre/frikort/service/MqService.java | navikt/testnorge | 8400ad28d37ec5dee87a4fe76e233632d2cfdbd1 | [
"MIT"
] | 1 | 2021-11-03T16:02:17.000Z | 2021-11-03T16:02:17.000Z | 32.794872 | 95 | 0.724785 | 17,892 | package no.nav.registre.frikort.service;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.stereotype.Service;
import java.util.List;
import no.nav.registre.fr... |
3e2a49d97f6d880b3deb74555cbe543049738ebf | 4,162 | java | Java | modules/integration/tests-ui-integration/tests-ui/src/test/java/org/wso2/es/ui/integration/test/store/ESStoreBookmarkTestCase.java | pulasthi7/product-es | d34236c9f55dbd56b33f86b8d643287fc9bf957c | [
"Apache-2.0"
] | null | null | null | modules/integration/tests-ui-integration/tests-ui/src/test/java/org/wso2/es/ui/integration/test/store/ESStoreBookmarkTestCase.java | pulasthi7/product-es | d34236c9f55dbd56b33f86b8d643287fc9bf957c | [
"Apache-2.0"
] | null | null | null | modules/integration/tests-ui-integration/tests-ui/src/test/java/org/wso2/es/ui/integration/test/store/ESStoreBookmarkTestCase.java | pulasthi7/product-es | d34236c9f55dbd56b33f86b8d643287fc9bf957c | [
"Apache-2.0"
] | null | null | null | 44.752688 | 118 | 0.69654 | 17,893 | /*
* Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. 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.... |
3e2a49e6d81a112fd38f7e773100af0509e45a17 | 1,368 | java | Java | src/main/java/org/formula/swing/binding/JColorChooserBinding.java | githubpeon/formula | 11c327a8789f7e252e10a453cbe28dfd43d4c4d5 | [
"MIT"
] | null | null | null | src/main/java/org/formula/swing/binding/JColorChooserBinding.java | githubpeon/formula | 11c327a8789f7e252e10a453cbe28dfd43d4c4d5 | [
"MIT"
] | null | null | null | src/main/java/org/formula/swing/binding/JColorChooserBinding.java | githubpeon/formula | 11c327a8789f7e252e10a453cbe28dfd43d4c4d5 | [
"MIT"
] | null | null | null | 25.811321 | 238 | 0.75 | 17,894 | package org.formula.swing.binding;
import java.awt.Color;
import javax.swing.JColorChooser;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import org.formula.binding.FormBinder;
import org.formula.binding.PropertyMap;
import org.formula.converter.Converter;
public class J... |
3e2a4a4910bd26c1150cf243fcd36820cf963e4e | 405 | java | Java | leetcode/L01922.java | hanjoondev/zb-study | 65f3104076862e6ccefbbcddb7eac0114250cba0 | [
"MIT"
] | null | null | null | leetcode/L01922.java | hanjoondev/zb-study | 65f3104076862e6ccefbbcddb7eac0114250cba0 | [
"MIT"
] | null | null | null | leetcode/L01922.java | hanjoondev/zb-study | 65f3104076862e6ccefbbcddb7eac0114250cba0 | [
"MIT"
] | null | null | null | 21.315789 | 45 | 0.362963 | 17,895 | package leetcode;
public class L01922 {
public int countGoodNumbers(long n) {
int mod = 1_000_000_007;
long ans = n % 2 == 0 ? 1 : 5;
long x = 20;
for (long i = n / 2; i > 0; i /= 2) {
if (i % 2 > 0) {
ans *= x;
ans %= mod;
}
... |
3e2a4a8795f3dca197cdccda97e5f33da60842cc | 2,744 | java | Java | vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/FeedResponse.java | sagiyaho/vespa | 5865b9bb80b540f6d252312fa6002300b2f1c9ee | [
"Apache-2.0"
] | 4,054 | 2017-08-11T07:58:38.000Z | 2022-03-31T22:32:15.000Z | vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/FeedResponse.java | sagiyaho/vespa | 5865b9bb80b540f6d252312fa6002300b2f1c9ee | [
"Apache-2.0"
] | 4,854 | 2017-08-10T20:19:25.000Z | 2022-03-31T19:04:23.000Z | vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/FeedResponse.java | sagiyaho/vespa | 5865b9bb80b540f6d252312fa6002300b2f1c9ee | [
"Apache-2.0"
] | 541 | 2017-08-10T18:51:18.000Z | 2022-03-11T03:18:56.000Z | 30.876404 | 104 | 0.62591 | 17,896 | // Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.server;
import com.yahoo.container.jdisc.HttpResponse;
import com.yahoo.vespa.http.client.core.Headers;
import com.yahoo.vespa.http.client.core.ErrorCode;
import com.yahoo.vespa.http.cl... |
3e2a4c5fb5548b49da6be8123009bb233f5c74a6 | 4,447 | java | Java | src/test/java/de/rub/nds/ipsec/statemachineextractor/ike/v1/isakmp/IdentificationPayloadPKETest.java | RUB-NDS/IPsec-StateMachineExtractor | 7f2b9693b6ef1cd1a8865f785f44f1ace2a5ed38 | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | src/test/java/de/rub/nds/ipsec/statemachineextractor/ike/v1/isakmp/IdentificationPayloadPKETest.java | RUB-NDS/IPsec-StateMachineExtractor | 7f2b9693b6ef1cd1a8865f785f44f1ace2a5ed38 | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | src/test/java/de/rub/nds/ipsec/statemachineextractor/ike/v1/isakmp/IdentificationPayloadPKETest.java | RUB-NDS/IPsec-StateMachineExtractor | 7f2b9693b6ef1cd1a8865f785f44f1ace2a5ed38 | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | 42.896226 | 175 | 0.73565 | 17,897 | /**
* IPsec-StateMachineExtractor - Extract the state machine of an IKEv1/IKEv2 implementation
*
* Copyright © 2020 Ruhr University Bochum
*
* Licensed under Apache License 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
package de.rub.nds.ipsec.statemachineextractor.ike.v1.isakmp;
import de.rub.nds.ipsec.s... |
3e2a4c8f99115aab900f92d50781060d59f85f28 | 316 | java | Java | pandora-android-sdk-1.3/src/org/tourgune/pandora/MyGCMReceiver.java | cictourgune/Pandora-sdk-android | b3264cd5971712607e108ba88de22867a20a4107 | [
"Apache-2.0"
] | 1 | 2016-03-03T04:41:14.000Z | 2016-03-03T04:41:14.000Z | pandora-android-sdk-1.3/src/org/tourgune/pandora/MyGCMReceiver.java | cictourgune/Pandora-sdk-android | b3264cd5971712607e108ba88de22867a20a4107 | [
"Apache-2.0"
] | null | null | null | pandora-android-sdk-1.3/src/org/tourgune/pandora/MyGCMReceiver.java | cictourgune/Pandora-sdk-android | b3264cd5971712607e108ba88de22867a20a4107 | [
"Apache-2.0"
] | null | null | null | 24.307692 | 66 | 0.806962 | 17,898 | package org.tourgune.pandora;
import android.content.Context;
import com.google.android.gcm.GCMBroadcastReceiver;
public class MyGCMReceiver extends GCMBroadcastReceiver {
@Override
protected String getGCMIntentServiceClassName(Context context) {
return "org.tourgune.pandora.MyGCMIntentService";
}
}
|
3e2a4d15f3617b306ba937dd5b16995004483e7c | 996 | java | Java | chapter54/src/main/java/com/example/demo/CountryDto.java | hanqunfeng/springbootchapter | 37b37246e84d713190016699d8cef2b155e361fc | [
"MIT"
] | 6 | 2020-07-29T13:43:50.000Z | 2022-01-06T15:18:43.000Z | chapter54/src/main/java/com/example/demo/CountryDto.java | hanqunfeng/springbootchapter | 37b37246e84d713190016699d8cef2b155e361fc | [
"MIT"
] | 5 | 2020-07-29T13:53:35.000Z | 2020-07-29T13:53:41.000Z | chapter54/src/main/java/com/example/demo/CountryDto.java | hanqunfeng/springbootchapter | 37b37246e84d713190016699d8cef2b155e361fc | [
"MIT"
] | 8 | 2020-12-19T06:39:11.000Z | 2021-11-14T13:19:24.000Z | 11.857143 | 62 | 0.542169 | 17,899 | package com.example.demo;
import com.example.jpa.JpaDto;
import lombok.Data;
import java.io.Serializable;
/**
* Description: <CountryDto vo>. <br>
* <p>
* generate time:2021-8-27 15:47:30
*
* @author hanqf
* @version V1.0
*/
@JpaDto
@Data
public class CountryDto implements Serializable {
private static f... |
3e2a4d1bd4cd34bc64ecdc51a19942b8ef052929 | 18,797 | java | Java | src/main/java/dev/galacticraft/mod/client/gui/screen/ingame/SpaceRaceScreen.java | mMONTAGEe/Galacticraft-1 | c683f640d37b7b92af1af1f10ba28fa3d36db184 | [
"MIT"
] | 209 | 2020-11-09T18:23:39.000Z | 2022-03-30T21:52:28.000Z | src/main/java/dev/galacticraft/mod/client/gui/screen/ingame/SpaceRaceScreen.java | mMONTAGEe/Galacticraft-1 | c683f640d37b7b92af1af1f10ba28fa3d36db184 | [
"MIT"
] | 78 | 2020-11-17T14:26:45.000Z | 2022-03-05T19:32:38.000Z | src/main/java/dev/galacticraft/mod/client/gui/screen/ingame/SpaceRaceScreen.java | mMONTAGEe/Galacticraft-1 | c683f640d37b7b92af1af1f10ba28fa3d36db184 | [
"MIT"
] | 53 | 2020-11-16T09:22:05.000Z | 2022-03-27T17:36:23.000Z | 44.9689 | 209 | 0.602011 | 17,900 | /*
* Copyright (c) 2019-2021 Team Galacticraft
*
* 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, copy, modify, mer... |
3e2a4e53700ab02d67f52474f0caf68bf67fb15e | 3,910 | java | Java | src/com/stablesort/convexhull/ConvexHullJarvisMarch.java | andrevio/StableSort | 3c94e300f452caae03466afed7114cac4340c06d | [
"MIT"
] | 1 | 2022-01-22T01:41:50.000Z | 2022-01-22T01:41:50.000Z | src/com/stablesort/convexhull/ConvexHullJarvisMarch.java | andrevio/StableSort | 3c94e300f452caae03466afed7114cac4340c06d | [
"MIT"
] | null | null | null | src/com/stablesort/convexhull/ConvexHullJarvisMarch.java | andrevio/StableSort | 3c94e300f452caae03466afed7114cac4340c06d | [
"MIT"
] | null | null | null | 29.621212 | 144 | 0.632992 | 17,901 | package com.stablesort.convexhull;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* Implementation of "Jarvis march" algorithm for solving Convex Hull problem: https://en.wikipedia.org/wiki/Gift_wrapping_algorithm
*
* video tutorial at: https://youtu.be/B2AJoQSZf4M
... |
3e2a507f40ac0f46fbfcfc7cfe71447a1173d5cb | 807 | java | Java | cadastro_de_pessoas/src/dominio/Pessoa.java | Eduardo-LP/cadastro_pessoas | 22b32030ee7da84e631bd4765c4f2157a43a8ae8 | [
"MIT"
] | 1 | 2021-04-13T20:05:33.000Z | 2021-04-13T20:05:33.000Z | cadastro_de_pessoas/src/dominio/Pessoa.java | Eduardo-LP/cadastro_pessoas | 22b32030ee7da84e631bd4765c4f2157a43a8ae8 | [
"MIT"
] | null | null | null | cadastro_de_pessoas/src/dominio/Pessoa.java | Eduardo-LP/cadastro_pessoas | 22b32030ee7da84e631bd4765c4f2157a43a8ae8 | [
"MIT"
] | null | null | null | 21.236842 | 70 | 0.597274 | 17,902 | package dominio;
public abstract class Pessoa {
private String nome;
private String dataDeNascimento;
private String cpf;
public Pessoa(String nome, String dataDeNascimento, String cpf) {
this.nome = nome;
this.dataDeNascimento = dataDeNascimento;
this.cpf = cpf;
... |
3e2a50b622cd1ccf0b8418d0541b8daad3138aa9 | 451 | java | Java | other/com/css/other/filter07/FilterChain.java | wang-weidong/css-DesignPattern | 212111f5b9c7d3bf54275edc78acccb115d6de44 | [
"Apache-2.0"
] | 11 | 2020-10-27T06:01:04.000Z | 2021-04-02T07:51:57.000Z | other/com/css/other/filter07/FilterChain.java | lojack636/css-DesignPattern | 212111f5b9c7d3bf54275edc78acccb115d6de44 | [
"Apache-2.0"
] | null | null | null | other/com/css/other/filter07/FilterChain.java | lojack636/css-DesignPattern | 212111f5b9c7d3bf54275edc78acccb115d6de44 | [
"Apache-2.0"
] | 8 | 2020-10-27T08:53:36.000Z | 2021-06-28T16:27:37.000Z | 16.703704 | 48 | 0.691796 | 17,903 | package com.css.other.filter07;
import java.util.ArrayList;
import java.util.List;
/**
* 过滤链容器构件
*
* 中国软件与技术服务股份有限公司-设计模式培训(Java版)
*
* @author CSS. WangWeidong
*/
public class FilterChain implements Filter {
List<Filter> filters = new ArrayList<Filter>();
public void addFilter(Filter f) {
this.filters.ad... |
3e2a50da68c7ca1689596547d9010186ea0abde3 | 2,764 | java | Java | gap-service/src/main/java/com/txacon/gap/application/adapter/CustomerServiceImpl.java | Alex-code-01/gap-service | b63f9cb1ad6d1fbfdf09f75fc8c51ca8ed952592 | [
"MIT"
] | null | null | null | gap-service/src/main/java/com/txacon/gap/application/adapter/CustomerServiceImpl.java | Alex-code-01/gap-service | b63f9cb1ad6d1fbfdf09f75fc8c51ca8ed952592 | [
"MIT"
] | 8 | 2021-03-27T18:30:40.000Z | 2021-04-23T17:34:58.000Z | gap-service/src/main/java/com/txacon/gap/application/adapter/CustomerServiceImpl.java | Alex-code-01/gap-service | b63f9cb1ad6d1fbfdf09f75fc8c51ca8ed952592 | [
"MIT"
] | 4 | 2021-05-08T08:57:34.000Z | 2021-05-21T19:05:21.000Z | 37.863014 | 181 | 0.751809 | 17,904 | package com.txacon.gap.application.adapter;
import com.txacon.gap.application.api.CustomerService;
import com.txacon.gap.application.aspect.Loggable;
import com.txacon.gap.application.exceptions.ApiError;
import com.txacon.gap.application.exceptions.CustomerInvalidException;
import com.txacon.gap.application.exception... |
3e2a51af130445aa8f7926b502f6fa632bf922c3 | 327 | java | Java | advent-of-code-2016/src/main/java/eu/janvdb/aoc2016/day13/Print.java | janvdbergh/advent-of-code | 13be26b709b81e1ae17fb1b593233777934a38c7 | [
"Apache-2.0"
] | null | null | null | advent-of-code-2016/src/main/java/eu/janvdb/aoc2016/day13/Print.java | janvdbergh/advent-of-code | 13be26b709b81e1ae17fb1b593233777934a38c7 | [
"Apache-2.0"
] | null | null | null | advent-of-code-2016/src/main/java/eu/janvdb/aoc2016/day13/Print.java | janvdbergh/advent-of-code | 13be26b709b81e1ae17fb1b593233777934a38c7 | [
"Apache-2.0"
] | null | null | null | 20.4375 | 64 | 0.571865 | 17,905 | package eu.janvdb.aoc2016.day13;
public class Print {
public static void main(String[] args) {
System.out.println(" 0123456789");
for(int i=0; i<=9; i++) {
System.out.print(i + " ");
for(int j=0; j<=9; j++) {
System.out.print(new Coord(i, j).isOpenSpace() ? "." : "#");
}
System.out.println();
... |
3e2a520792fbc6acc7e5e251112cbde63febb4de | 510 | java | Java | gmall-sms/src/main/java/com/atguigu/gmall/sms/service/HomeSubjectSpuService.java | Muzz-ly/gmall | 8ac56b13c9004c3d7f06b6fbe268a1a5216dc7cc | [
"Apache-2.0"
] | null | null | null | gmall-sms/src/main/java/com/atguigu/gmall/sms/service/HomeSubjectSpuService.java | Muzz-ly/gmall | 8ac56b13c9004c3d7f06b6fbe268a1a5216dc7cc | [
"Apache-2.0"
] | null | null | null | gmall-sms/src/main/java/com/atguigu/gmall/sms/service/HomeSubjectSpuService.java | Muzz-ly/gmall | 8ac56b13c9004c3d7f06b6fbe268a1a5216dc7cc | [
"Apache-2.0"
] | null | null | null | 23.227273 | 79 | 0.784736 | 17,906 | package com.atguigu.gmall.sms.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.atguigu.gmall.common.bean.PageResultVo;
import com.atguigu.gmall.common.bean.PageParamVo;
import com.atguigu.gmall.sms.entity.HomeSubjectSpuEntity;
import java.util.Map;
/**
* 专题商品
*
* @author fengge
* @... |
3e2a527b63d2d59b903c807c74ccd36230538f46 | 314 | java | Java | G-Earth/src/main/java/gearth/extensions/ExtensionInfo.java | dosier/G-Earth | 8a80248e24dbc19152e9606c0a04676fc05776f6 | [
"MIT"
] | 64 | 2018-07-19T21:53:16.000Z | 2022-03-20T18:34:31.000Z | G-Earth/src/main/java/gearth/extensions/ExtensionInfo.java | dosier/G-Earth | 8a80248e24dbc19152e9606c0a04676fc05776f6 | [
"MIT"
] | 89 | 2018-07-21T13:39:16.000Z | 2022-03-30T14:42:06.000Z | G-Earth/src/main/java/gearth/extensions/ExtensionInfo.java | dosier/G-Earth | 8a80248e24dbc19152e9606c0a04676fc05776f6 | [
"MIT"
] | 53 | 2018-09-21T22:31:47.000Z | 2022-03-16T00:21:45.000Z | 20.933333 | 44 | 0.729299 | 17,907 | package gearth.extensions;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Created by Jonas on 25/09/18.
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface ExtensionInfo {
String Title();
String Description();
String Version();
String Author();
} |
3e2a52ebd5aa7cc4e83586338089ab8fd3fc81b2 | 12,304 | java | Java | app/src/main/java/tech/shipr/tasksdev/dm/DMActivity.java | yhdesai/Tasks | 16e8927d1df01047e8ac1784381abeee93267b50 | [
"CC-BY-4.0"
] | 3 | 2019-03-26T12:24:25.000Z | 2019-04-12T01:37:09.000Z | app/src/main/java/tech/shipr/tasksdev/dm/DMActivity.java | yhdesai/Tasks | 16e8927d1df01047e8ac1784381abeee93267b50 | [
"CC-BY-4.0"
] | 7 | 2019-03-26T11:50:53.000Z | 2019-04-10T09:32:07.000Z | app/src/main/java/tech/shipr/tasksdev/dm/DMActivity.java | yhdesai/Tasks-Android | 16e8927d1df01047e8ac1784381abeee93267b50 | [
"CC-BY-4.0"
] | 1 | 2019-06-21T17:07:30.000Z | 2019-06-21T17:07:30.000Z | 33.525886 | 134 | 0.606063 | 17,908 | package tech.shipr.tasksdev.dm;
import android.content.Context;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.text.Editable;
impo... |
3e2a530e62399345303b1a04522e412e7e49995a | 292 | java | Java | logger2/src/main/java/cardoso/guilherme/logger2/Logger.java | guilhermemcardoso/logger-lib | 749bd5664e7dd7c1c678e9520b1a9916aa043b7b | [
"Apache-2.0"
] | 1 | 2018-07-31T19:30:12.000Z | 2018-07-31T19:30:12.000Z | logger2/src/main/java/cardoso/guilherme/logger2/Logger.java | guilhermemcardoso/logger-lib | 749bd5664e7dd7c1c678e9520b1a9916aa043b7b | [
"Apache-2.0"
] | null | null | null | logger2/src/main/java/cardoso/guilherme/logger2/Logger.java | guilhermemcardoso/logger-lib | 749bd5664e7dd7c1c678e9520b1a9916aa043b7b | [
"Apache-2.0"
] | null | null | null | 17.176471 | 51 | 0.643836 | 17,909 | package cardoso.guilherme.logger2;
import android.util.Log;
public class Logger {
private final String TAG = "Logger";
public void error(String message) {
error(TAG, message);
}
public void error(String tag, String message) {
Log.e(tag, message);
}
}
|
3e2a550fea36938d7d6d8d2fd85701f5a3805c07 | 1,532 | java | Java | Chrystalz/src/studio/ignitionigloogames/chrystalz/battle/MapBattleDraw.java | wrldwzrd89/older-java-games | 786b0c165d800c49ab9977a34ec17286797c4589 | [
"Unlicense"
] | 1 | 2018-03-09T22:39:04.000Z | 2018-03-09T22:39:04.000Z | Chrystalz/src/studio/ignitionigloogames/chrystalz/battle/MapBattleDraw.java | wrldwzrd89/older-java-games | 786b0c165d800c49ab9977a34ec17286797c4589 | [
"Unlicense"
] | 11 | 2018-02-05T10:33:16.000Z | 2018-03-19T00:10:40.000Z | Chrystalz/src/studio/ignitionigloogames/chrystalz/battle/MapBattleDraw.java | wrldwzrd89/older-java-games | 786b0c165d800c49ab9977a34ec17286797c4589 | [
"Unlicense"
] | null | null | null | 34.818182 | 97 | 0.657311 | 17,910 | /* Chrystalz: A dungeon-crawling, roguelike game
Licensed under MIT. See the LICENSE file for details.
All support is handled via the GitHub repository: https://github.com/IgnitionIglooGames/chrystalz
*/
package studio.ignitionigloogames.chrystalz.battle;
import java.awt.Dimension;
import java.awt.Graphics;
import... |
3e2a557aa37c012a1872dccaac70da92cdde4b1a | 1,974 | java | Java | src/main/Runner.java | alexporrello/DesktopPublisherAssistant | 68be14320c53175cfd3cf07ece85994510445d12 | [
"Apache-2.0"
] | null | null | null | src/main/Runner.java | alexporrello/DesktopPublisherAssistant | 68be14320c53175cfd3cf07ece85994510445d12 | [
"Apache-2.0"
] | 4 | 2018-01-29T17:41:33.000Z | 2018-03-26T13:15:23.000Z | src/main/Runner.java | alexporrello/DesktopPublisherAssistant | 68be14320c53175cfd3cf07ece85994510445d12 | [
"Apache-2.0"
] | null | null | null | 23.783133 | 71 | 0.742655 | 17,911 | package main;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Dimension;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import fm.ParagraphTag;
import fm.ParagraphTags... |
3e2a5628da77c41cf9d4da0ba26f7f062558836a | 1,518 | java | Java | src/com/kisstools/imagehelper/sample/SampleActivity.java | coderkiss/ImagePlugin | 4f310df93d27ab9b096be8153d86a08caff08c28 | [
"Apache-2.0"
] | 1 | 2016-08-02T10:50:47.000Z | 2016-08-02T10:50:47.000Z | src/com/kisstools/imagehelper/sample/SampleActivity.java | coderkiss/ImagePlugin | 4f310df93d27ab9b096be8153d86a08caff08c28 | [
"Apache-2.0"
] | null | null | null | src/com/kisstools/imagehelper/sample/SampleActivity.java | coderkiss/ImagePlugin | 4f310df93d27ab9b096be8153d86a08caff08c28 | [
"Apache-2.0"
] | null | null | null | 28.641509 | 73 | 0.790514 | 17,912 | /**
* @author dawson dong
*/
package com.kisstools.imagehelper.sample;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget... |
3e2a5698cf67b2871c70a1b1133a35a515bfb7cf | 952 | java | Java | src/main/java/de/ellpeck/prettypipes/terminal/CraftingTerminalBlock.java | SoniEx2/PrettyPipes | 405e2b93c7983f3539546da61c9f7521971b8067 | [
"MIT"
] | null | null | null | src/main/java/de/ellpeck/prettypipes/terminal/CraftingTerminalBlock.java | SoniEx2/PrettyPipes | 405e2b93c7983f3539546da61c9f7521971b8067 | [
"MIT"
] | null | null | null | src/main/java/de/ellpeck/prettypipes/terminal/CraftingTerminalBlock.java | SoniEx2/PrettyPipes | 405e2b93c7983f3539546da61c9f7521971b8067 | [
"MIT"
] | null | null | null | 39.666667 | 123 | 0.80042 | 17,913 | package de.ellpeck.prettypipes.terminal;
import de.ellpeck.prettypipes.Registry;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.level.block.entity.BlockEntityTicker;
import net.minecraft.world.level.block... |
3e2a5762ee2e12dad59b7272e401bb840c716f2f | 858 | java | Java | gtas-parent/gtas-rulesvc/src/main/java/gov/gtas/rule/builder/DocumentConditionBuilder.java | originalname51/GTAS | b95ebf4de0e2f9ad2ac583b89458d4479015efc3 | [
"BSD-3-Clause"
] | 1 | 2021-03-26T09:57:05.000Z | 2021-03-26T09:57:05.000Z | gtas-parent/gtas-rulesvc/src/main/java/gov/gtas/rule/builder/DocumentConditionBuilder.java | originalname51/GTAS | b95ebf4de0e2f9ad2ac583b89458d4479015efc3 | [
"BSD-3-Clause"
] | null | null | null | gtas-parent/gtas-rulesvc/src/main/java/gov/gtas/rule/builder/DocumentConditionBuilder.java | originalname51/GTAS | b95ebf4de0e2f9ad2ac583b89458d4479015efc3 | [
"BSD-3-Clause"
] | null | null | null | 29.586207 | 120 | 0.736597 | 17,914 | /*
* All GTAS code is Copyright 2016, The Department of Homeland Security (DHS), U.S. Customs and Border Protection (CBP).
*
* Please see LICENSE.txt for details.
*/
package gov.gtas.rule.builder;
import gov.gtas.enumtype.EntityEnum;
import gov.gtas.querybuilder.mappings.DocumentMapping;
public class DocumentCon... |
3e2a5842fbfc2d1bed1aa530957aa72a6c0ad8f6 | 2,420 | java | Java | bulb-jdk-basic/src/main/java/com/maxzuo/basic/BigDecimalExample.java | ZuoFuhong/bulb | 4fb69c33a36fb05b178b8d1fd4d0fc4aeb3c942a | [
"Apache-2.0"
] | 7 | 2019-05-21T09:59:06.000Z | 2020-10-18T11:57:31.000Z | bulb-jdk-basic/src/main/java/com/maxzuo/basic/BigDecimalExample.java | ZuoFuhong/bulb | 4fb69c33a36fb05b178b8d1fd4d0fc4aeb3c942a | [
"Apache-2.0"
] | 31 | 2019-11-10T15:33:46.000Z | 2021-10-02T03:43:16.000Z | bulb-jdk-basic/src/main/java/com/maxzuo/basic/BigDecimalExample.java | ZuoFuhong/bulb | 4fb69c33a36fb05b178b8d1fd4d0fc4aeb3c942a | [
"Apache-2.0"
] | 2 | 2019-05-21T08:52:20.000Z | 2019-08-20T03:27:37.000Z | 28.139535 | 98 | 0.597107 | 17,915 | package com.maxzuo.basic;
import org.junit.jupiter.api.Test;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.text.DecimalFormat;
/**
* BigDecimal类的使用
* <p>
* Created by zfh on 2019/06/05
*/
class BigDecimalExample {
/**
* 舍入的模式
* 博客:<a href="https://my.oschina.net/sunchp/bl... |
3e2a58970eb9312a9871b361569d9f6053ca1fc6 | 1,698 | java | Java | cascading-core/src/main/java/cascading/operation/BufferCall.java | Rincaro/cascading | 17786f842466caf1a8689926b7b882752564b3ad | [
"Apache-2.0"
] | null | null | null | cascading-core/src/main/java/cascading/operation/BufferCall.java | Rincaro/cascading | 17786f842466caf1a8689926b7b882752564b3ad | [
"Apache-2.0"
] | null | null | null | cascading-core/src/main/java/cascading/operation/BufferCall.java | Rincaro/cascading | 17786f842466caf1a8689926b7b882752564b3ad | [
"Apache-2.0"
] | null | null | null | 32.037736 | 125 | 0.732627 | 17,916 | /*
* Copyright (c) 2007-2013 Concurrent, Inc. All Rights Reserved.
*
* Project and contact information: http://www.cascading.org/
*
* This file is part of the Cascading project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.... |
3e2a58f1725eba920f9727d64adec1ae2524b458 | 5,963 | java | Java | jmetal-exec/src/main/java/org/uma/jmetal/runner/multiobjective/SMPSOHvNoveltyMeasuresRunner.java | shdotcom/jMetal | 5f361926d3ebcd9ff09f3d85ba2bdebd34bfdb33 | [
"MIT"
] | null | null | null | jmetal-exec/src/main/java/org/uma/jmetal/runner/multiobjective/SMPSOHvNoveltyMeasuresRunner.java | shdotcom/jMetal | 5f361926d3ebcd9ff09f3d85ba2bdebd34bfdb33 | [
"MIT"
] | null | null | null | jmetal-exec/src/main/java/org/uma/jmetal/runner/multiobjective/SMPSOHvNoveltyMeasuresRunner.java | shdotcom/jMetal | 5f361926d3ebcd9ff09f3d85ba2bdebd34bfdb33 | [
"MIT"
] | null | null | null | 38.980392 | 113 | 0.748156 | 17,917 | package org.uma.jmetal.runner.multiobjective;
import org.knowm.xchart.BitmapEncoder;
import org.uma.jmetal.algorithm.Algorithm;
import org.uma.jmetal.algorithm.multiobjective.smpso.SMPSOBuilder;
import org.uma.jmetal.algorithm.multiobjective.smpso.SMPSOMeasures;
import org.uma.jmetal.algorithm.multiobjective.smpso.SMP... |
3e2a59e455f921d2f2a3142c87f0b0a7ae251bb1 | 1,113 | java | Java | gameserver/src/main/java/ru/jts/gameserver/data/Parser.java | ChaosPaladin/jts | 42d81605505f6db0aa62a6d839e747263e18244c | [
"Apache-2.0"
] | null | null | null | gameserver/src/main/java/ru/jts/gameserver/data/Parser.java | ChaosPaladin/jts | 42d81605505f6db0aa62a6d839e747263e18244c | [
"Apache-2.0"
] | null | null | null | gameserver/src/main/java/ru/jts/gameserver/data/Parser.java | ChaosPaladin/jts | 42d81605505f6db0aa62a6d839e747263e18244c | [
"Apache-2.0"
] | 1 | 2020-01-08T01:10:58.000Z | 2020-01-08T01:10:58.000Z | 27.146341 | 75 | 0.666667 | 17,918 | /*
* Copyright 2012 jts
*
* 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, s... |
3e2a5b8ef55990cd4e6205e9873add0526365217 | 2,004 | java | Java | ds3-autogen-java/src/main/java/com/spectralogic/ds3autogen/java/models/parseresponse/EmptyParseResponse.java | RachelTucker/ds3_autogen | 392ca0b3123cf16d1a7e8ea6673649f381334c68 | [
"Apache-2.0"
] | 5 | 2016-01-22T21:22:36.000Z | 2021-09-19T19:47:58.000Z | ds3-autogen-java/src/main/java/com/spectralogic/ds3autogen/java/models/parseresponse/EmptyParseResponse.java | RachelTucker/ds3_autogen | 392ca0b3123cf16d1a7e8ea6673649f381334c68 | [
"Apache-2.0"
] | 76 | 2015-11-13T20:40:08.000Z | 2019-08-09T20:10:51.000Z | ds3-autogen-java/src/main/java/com/spectralogic/ds3autogen/java/models/parseresponse/EmptyParseResponse.java | RachelTucker/ds3_autogen | 392ca0b3123cf16d1a7e8ea6673649f381334c68 | [
"Apache-2.0"
] | 12 | 2015-11-03T22:03:14.000Z | 2016-08-16T15:30:10.000Z | 38.538462 | 124 | 0.658184 | 17,919 | /*
* ******************************************************************************
* Copyright 2014-2017 Spectra Logic Corporation. 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 i... |
3e2a5bb6492efc32b3f58cebcb91255816997bef | 1,408 | java | Java | restful-service-swaggerv2-metrics/src/main/java/org/jeannyil/fuse/cxfrs/swaggerv2/model/Response.java | jeanNyil/jbossfuse-metrics-demo | 2628c151cedfd3ed2d6c38ce392986f05b27240e | [
"Apache-2.0"
] | null | null | null | restful-service-swaggerv2-metrics/src/main/java/org/jeannyil/fuse/cxfrs/swaggerv2/model/Response.java | jeanNyil/jbossfuse-metrics-demo | 2628c151cedfd3ed2d6c38ce392986f05b27240e | [
"Apache-2.0"
] | null | null | null | restful-service-swaggerv2-metrics/src/main/java/org/jeannyil/fuse/cxfrs/swaggerv2/model/Response.java | jeanNyil/jbossfuse-metrics-demo | 2628c151cedfd3ed2d6c38ce392986f05b27240e | [
"Apache-2.0"
] | null | null | null | 26.074074 | 101 | 0.71875 | 17,920 | package org.jeannyil.fuse.cxfrs.swaggerv2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.util.ArrayList;
import java.util.List;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPro... |
3e2a5bd316507b3e9f0994fcbab5caa1a33d018f | 1,605 | java | Java | back/src/main/java/com/heeexy/example/controller/DeviceController.java | TOBACCOCN/SpringBoot-Shiro-Vue | 207041ff3b710aa23362cc9d9f325884ffbf1aeb | [
"MIT"
] | null | null | null | back/src/main/java/com/heeexy/example/controller/DeviceController.java | TOBACCOCN/SpringBoot-Shiro-Vue | 207041ff3b710aa23362cc9d9f325884ffbf1aeb | [
"MIT"
] | 1 | 2022-02-09T22:14:11.000Z | 2022-02-09T22:14:11.000Z | back/src/main/java/com/heeexy/example/controller/DeviceController.java | TOBACCOCN/SpringBoot-Shiro-Vue | 207041ff3b710aa23362cc9d9f325884ffbf1aeb | [
"MIT"
] | null | null | null | 25.47619 | 70 | 0.768224 | 17,921 | package com.heeexy.example.controller;
import com.alibaba.fastjson.JSONObject;
import com.heeexy.example.service.DeviceService;
import com.heeexy.example.util.CommonUtil;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframew... |
3e2a5c32428d1b6188c504bbec9d97ad89c3a2a6 | 2,910 | java | Java | yiran-member/src/main/java/com/yiran/member/domain/AccountBalance.java | jackCode1991/myStore | 01bd39233b8da8838905b509484162f35cf4bef2 | [
"Apache-2.0"
] | 1 | 2021-03-06T17:53:34.000Z | 2021-03-06T17:53:34.000Z | yiran-member/src/main/java/com/yiran/member/domain/AccountBalance.java | jackCode1991/myStore | 01bd39233b8da8838905b509484162f35cf4bef2 | [
"Apache-2.0"
] | 6 | 2020-02-28T01:31:15.000Z | 2021-12-09T21:58:40.000Z | yiran-member/src/main/java/com/yiran/member/domain/AccountBalance.java | jackCode1991/myStore | 01bd39233b8da8838905b509484162f35cf4bef2 | [
"Apache-2.0"
] | 1 | 2021-01-16T03:02:53.000Z | 2021-01-16T03:02:53.000Z | 24.661017 | 90 | 0.55189 | 17,922 | /**
*
*/
package com.yiran.member.domain;
import java.io.Serializable;
import java.util.Date;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.netfinworks.common.util.money.Money;
/**
* <p>账户余额明细</p>
*/
public class AccountBalance implem... |
3e2a5cee5a7f7cd6ff61e956acc938553dd0ae2d | 840 | java | Java | samples/webdemo/src/main/java/org/crossbowlabs/webdemo/WebDemo.java | mathieu-chauvet/globs | b33def49e28d73a099083c0bd21d74ce9bddf5ce | [
"Apache-2.0"
] | null | null | null | samples/webdemo/src/main/java/org/crossbowlabs/webdemo/WebDemo.java | mathieu-chauvet/globs | b33def49e28d73a099083c0bd21d74ce9bddf5ce | [
"Apache-2.0"
] | null | null | null | samples/webdemo/src/main/java/org/crossbowlabs/webdemo/WebDemo.java | mathieu-chauvet/globs | b33def49e28d73a099083c0bd21d74ce9bddf5ce | [
"Apache-2.0"
] | null | null | null | 30 | 88 | 0.741667 | 17,923 | package org.crossbowlabs.webdemo;
import org.apache.wicket.protocol.http.WicketServlet;
import org.mortbay.jetty.Server;
import org.mortbay.jetty.servlet.Context;
import org.mortbay.jetty.servlet.ServletHolder;
import java.util.Locale;
public class WebDemo {
private static final int PORT = 8081;
public static v... |
3e2a5d0222bf24ff1acbb3f15259c7d9af150de0 | 1,680 | java | Java | src/backend/libs/efiling-account-client/src/test/java/ca/bc/gov/open/jag/efilingaccountclient/DemoAcountServiceImplTest.java | adodge-bcg/jag-file-submission | 716a925d68b2b0b6bbf734c55e166ab09235a4f6 | [
"Apache-2.0"
] | null | null | null | src/backend/libs/efiling-account-client/src/test/java/ca/bc/gov/open/jag/efilingaccountclient/DemoAcountServiceImplTest.java | adodge-bcg/jag-file-submission | 716a925d68b2b0b6bbf734c55e166ab09235a4f6 | [
"Apache-2.0"
] | 2 | 2020-06-22T20:57:09.000Z | 2020-06-24T17:48:31.000Z | src/backend/libs/efiling-account-client/src/test/java/ca/bc/gov/open/jag/efilingaccountclient/DemoAcountServiceImplTest.java | adodge-bcg/jag-file-submission | 716a925d68b2b0b6bbf734c55e166ab09235a4f6 | [
"Apache-2.0"
] | null | null | null | 31.111111 | 113 | 0.729167 | 17,924 | package ca.bc.gov.open.jag.efilingaccountclient;
import org.junit.jupiter.api.*;
import java.util.UUID;
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
public class DemoAcountServiceImplTest {
public static final UUID ACCOUNT_WITH_EFILING_ROLE = UUID.fromString("77da92db-0791-491e-8c58-1a969e67d2fa");
publi... |
3e2a5d72ac4ac8721f2c01845ce8248bde102c34 | 3,303 | java | Java | application/src/test/java/application/storage/xml/SystemProcessXMLSchemaTest.java | kinnder/process-planning | 0318dc078023ec5a4b0d43ae98302808b4c96070 | [
"MIT"
] | null | null | null | application/src/test/java/application/storage/xml/SystemProcessXMLSchemaTest.java | kinnder/process-planning | 0318dc078023ec5a4b0d43ae98302808b4c96070 | [
"MIT"
] | 67 | 2019-05-13T19:19:24.000Z | 2022-02-28T11:14:16.000Z | application/src/test/java/application/storage/xml/SystemProcessXMLSchemaTest.java | kinnder/process-planning | 0318dc078023ec5a4b0d43ae98302808b4c96070 | [
"MIT"
] | null | null | null | 30.583333 | 88 | 0.752952 | 17,925 | package application.storage.xml;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.ArrayList;
import java.util.List;
import org.jdom2.DataConversionException;
... |
3e2a60b438fdcb26b81b2721b84d4d6c572f8fa2 | 1,322 | java | Java | datavines-common/src/main/java/io/datavines/common/entity/LogResult.java | an-shi-chi-fan/datavines | ec5438bfedc66205538f509227bf51c5d555e9b5 | [
"Apache-2.0"
] | null | null | null | datavines-common/src/main/java/io/datavines/common/entity/LogResult.java | an-shi-chi-fan/datavines | ec5438bfedc66205538f509227bf51c5d555e9b5 | [
"Apache-2.0"
] | null | null | null | datavines-common/src/main/java/io/datavines/common/entity/LogResult.java | an-shi-chi-fan/datavines | ec5438bfedc66205538f509227bf51c5d555e9b5 | [
"Apache-2.0"
] | null | null | null | 28.73913 | 75 | 0.698941 | 17,926 | /*
* 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 ... |
3e2a60be95ae349fadf7e268a05d65136bff031b | 201 | java | Java | src/com/programing/designPatterns/behavioral/NullObject/AbstractCustomer.java | tttodorov13/programing | 7b6ca651845fa277b563a7815f10e63d41300f41 | [
"MIT"
] | null | null | null | src/com/programing/designPatterns/behavioral/NullObject/AbstractCustomer.java | tttodorov13/programing | 7b6ca651845fa277b563a7815f10e63d41300f41 | [
"MIT"
] | null | null | null | src/com/programing/designPatterns/behavioral/NullObject/AbstractCustomer.java | tttodorov13/programing | 7b6ca651845fa277b563a7815f10e63d41300f41 | [
"MIT"
] | null | null | null | 18.272727 | 60 | 0.800995 | 17,927 | package com.programing.designPatterns.behavioral.NullObject;
public abstract class AbstractCustomer {
protected String name;
public abstract boolean isNil();
public abstract String getName();
}
|
3e2a61029ed995bf91418dcff2662067f646b074 | 792 | java | Java | server/integration/testsuite/src/test/java/org/infinispan/server/test/util/osgi/CommandExecutionException.java | skymysky/infinispan | ace5cc23f345ed4e782fc863e83d5aa24e3a1ac9 | [
"Apache-2.0"
] | 2 | 2015-04-28T21:43:44.000Z | 2016-11-24T10:11:26.000Z | server/integration/testsuite/src/test/java/org/infinispan/server/test/util/osgi/CommandExecutionException.java | skymysky/infinispan | ace5cc23f345ed4e782fc863e83d5aa24e3a1ac9 | [
"Apache-2.0"
] | 41 | 2019-06-11T11:25:03.000Z | 2021-08-02T16:57:31.000Z | server/integration/testsuite/src/test/java/org/infinispan/server/test/util/osgi/CommandExecutionException.java | skymysky/infinispan | ace5cc23f345ed4e782fc863e83d5aa24e3a1ac9 | [
"Apache-2.0"
] | null | null | null | 26.4 | 71 | 0.665404 | 17,928 | package org.infinispan.server.test.util.osgi;
/**
* Class copied from JBoss Fuse project and modified.
*/
public class CommandExecutionException extends RuntimeException {
public CommandExecutionException(String message) {
super(message);
}
public CommandExecutionException(String message, Throw... |
3e2a6118e7d65e2022532c137f11a3e5a4c00929 | 420 | java | Java | epermission-annotations/src/main/java/com/permission/annotation/PermissionGrant.java | eggsywelsh/EPermission | 4a0466f1626771857dafb966d32200ad14c683ec | [
"Apache-2.0"
] | null | null | null | epermission-annotations/src/main/java/com/permission/annotation/PermissionGrant.java | eggsywelsh/EPermission | 4a0466f1626771857dafb966d32200ad14c683ec | [
"Apache-2.0"
] | null | null | null | epermission-annotations/src/main/java/com/permission/annotation/PermissionGrant.java | eggsywelsh/EPermission | 4a0466f1626771857dafb966d32200ad14c683ec | [
"Apache-2.0"
] | null | null | null | 23.333333 | 48 | 0.788095 | 17,929 | package com.permission.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by eggsy on 16-12-9.
*/
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.METHOD)
public @interface P... |
3e2a625de24fffd358d9ddb171de731a486ec623 | 346 | java | Java | src/main/java/entityService/KategoriEntityService.java | n11-TalentHub-Java-Bootcamp/first-homework-aysegulapc | 5a9f8bf80a6fd4f40cc0ea2b5d7c8bc9056adaff | [
"MIT"
] | null | null | null | src/main/java/entityService/KategoriEntityService.java | n11-TalentHub-Java-Bootcamp/first-homework-aysegulapc | 5a9f8bf80a6fd4f40cc0ea2b5d7c8bc9056adaff | [
"MIT"
] | null | null | null | src/main/java/entityService/KategoriEntityService.java | n11-TalentHub-Java-Bootcamp/first-homework-aysegulapc | 5a9f8bf80a6fd4f40cc0ea2b5d7c8bc9056adaff | [
"MIT"
] | 1 | 2022-01-25T09:15:13.000Z | 2022-01-25T09:15:13.000Z | 18.210526 | 42 | 0.708092 | 17,930 | package entityService;
import dao.KategoriDao;
import entity.Kategori;
import java.util.List;
public class KategoriEntityService {
private final KategoriDao kategoriDao;
public KategoriEntityService() {
kategoriDao = new KategoriDao();
}
public List<Kategori> findAll(){
return kateg... |
3e2a64d31c922f368766580b7115809b39d3cc25 | 15,045 | java | Java | backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/dns/DnsSRVLocator.java | SunOfShine/ovirt-engine | 7684597e2d38ff854e629e5cbcbb9f21888cb498 | [
"Apache-2.0"
] | 1 | 2021-02-02T05:38:35.000Z | 2021-02-02T05:38:35.000Z | backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/dns/DnsSRVLocator.java | SunOfShine/ovirt-engine | 7684597e2d38ff854e629e5cbcbb9f21888cb498 | [
"Apache-2.0"
] | null | null | null | backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/dns/DnsSRVLocator.java | SunOfShine/ovirt-engine | 7684597e2d38ff854e629e5cbcbb9f21888cb498 | [
"Apache-2.0"
] | null | null | null | 34.907193 | 118 | 0.55879 | 17,931 | /**
*
*/
package org.ovirt.engine.core.utils.dns;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Hashtable;
import java.util.InputMismatchException;
import java.util.List;
import java.util.Random;
import java.util.Scanner;
import java.ut... |
3e2a64e0146307e36bc6ba37ed3bd5378ed88ab0 | 2,198 | java | Java | src/test/java/org/elasticsearch/kafka/indexer/jobs/StartOptionParserTest.java | ITNavent/kafka-elasticsearch-consumer | eaec88822272878a985ccefc99c11340cb2f9c5e | [
"Apache-2.0"
] | 179 | 2016-01-29T03:32:43.000Z | 2022-03-22T03:50:08.000Z | src/test/java/org/elasticsearch/kafka/indexer/jobs/StartOptionParserTest.java | ITNavent/kafka-elasticsearch-consumer | eaec88822272878a985ccefc99c11340cb2f9c5e | [
"Apache-2.0"
] | 18 | 2016-04-18T08:11:51.000Z | 2020-01-24T23:17:07.000Z | src/test/java/org/elasticsearch/kafka/indexer/jobs/StartOptionParserTest.java | ITNavent/kafka-elasticsearch-consumer | eaec88822272878a985ccefc99c11340cb2f9c5e | [
"Apache-2.0"
] | 69 | 2016-04-06T15:16:11.000Z | 2021-12-15T23:50:35.000Z | 29.702703 | 142 | 0.77707 | 17,932 | package org.elasticsearch.kafka.indexer.jobs;
import java.util.HashMap;
import java.util.Map;
import org.junit.Assert;
import org.junit.Test;
/**
* @author marinapopova
* Apr 2, 2018
*/
public class StartOptionParserTest {
@Test
public void testRestartOption() {
StartOption startOption = StartOptionParser.ge... |
3e2a652f7c93f13806a3300f65c3b2b08a954b75 | 3,239 | java | Java | test/org/apache/coyote/http11/TestHttp11OutputBuffer.java | guchenbo/tomcat | 66468c8f7dec2022146373a3c511943f78417553 | [
"Apache-2.0"
] | 50 | 2019-12-03T15:40:08.000Z | 2021-09-09T03:13:48.000Z | test/org/apache/coyote/http11/TestHttp11OutputBuffer.java | guchenbo/tomcat | 66468c8f7dec2022146373a3c511943f78417553 | [
"Apache-2.0"
] | 41 | 2020-05-11T11:19:36.000Z | 2020-05-29T06:13:03.000Z | test/org/apache/coyote/http11/TestHttp11OutputBuffer.java | guchenbo/tomcat | 66468c8f7dec2022146373a3c511943f78417553 | [
"Apache-2.0"
] | 22 | 2019-12-10T02:31:46.000Z | 2022-03-04T01:37:16.000Z | 35.988889 | 98 | 0.678296 | 17,933 | /*
* 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... |
3e2a66130f9346b9a07e4140283230e7ab866f2f | 358 | java | Java | springdebug/src/main/java/com/john/properties/City.java | johnwonder/SpringSrc | 8540ae82a61683ccb47f77967dee1c98be11d7ab | [
"Apache-2.0"
] | null | null | null | springdebug/src/main/java/com/john/properties/City.java | johnwonder/SpringSrc | 8540ae82a61683ccb47f77967dee1c98be11d7ab | [
"Apache-2.0"
] | null | null | null | springdebug/src/main/java/com/john/properties/City.java | johnwonder/SpringSrc | 8540ae82a61683ccb47f77967dee1c98be11d7ab | [
"Apache-2.0"
] | 1 | 2022-01-25T08:11:43.000Z | 2022-01-25T08:11:43.000Z | 13.259259 | 35 | 0.603352 | 17,934 | package com.john.properties;
/**
* @Description: SpringSrc
* @Author: johnwonder
* @Date: 2020/9/1
*/
public class City {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "City{" +
"... |
3e2a681f7e31b652006218441c34dac3d96a88ab | 288 | java | Java | src/main/java/com/cello/myspring/MyAutowired.java | CelloRen/IocDemo | d24f8c76d7ec4dea8644b376e9a26ae33a8c6484 | [
"MIT"
] | null | null | null | src/main/java/com/cello/myspring/MyAutowired.java | CelloRen/IocDemo | d24f8c76d7ec4dea8644b376e9a26ae33a8c6484 | [
"MIT"
] | null | null | null | src/main/java/com/cello/myspring/MyAutowired.java | CelloRen/IocDemo | d24f8c76d7ec4dea8644b376e9a26ae33a8c6484 | [
"MIT"
] | null | null | null | 24 | 44 | 0.829861 | 17,935 | package com.cello.myspring;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAutowired {
}
|
3e2a69c683d9c3d9d7f76dbf0db7bf2cdfa714a4 | 219 | java | Java | src/test/java/pl/adriangrzebyk/trader/StarTraderApplicationTests.java | quayal/star-trader | 798886d88d9fd759bfc0c66ab95be8a87b9a1127 | [
"CC0-1.0"
] | null | null | null | src/test/java/pl/adriangrzebyk/trader/StarTraderApplicationTests.java | quayal/star-trader | 798886d88d9fd759bfc0c66ab95be8a87b9a1127 | [
"CC0-1.0"
] | null | null | null | src/test/java/pl/adriangrzebyk/trader/StarTraderApplicationTests.java | quayal/star-trader | 798886d88d9fd759bfc0c66ab95be8a87b9a1127 | [
"CC0-1.0"
] | null | null | null | 15.642857 | 60 | 0.794521 | 17,936 | package pl.adriangrzebyk.trader;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class StarTraderApplicationTests {
@Test
void contextLoads() {
}
}
|
3e2a6a5baf47ba53d6833fd6729e23a3933c9057 | 1,863 | java | Java | yanan-security/yanan-admin/src/main/java/io/renren/common/agvs/GetStandardOrderResponse.java | zmychenong/yanan | d107ddcc923c60968fe0c917503d7f8224921c35 | [
"Apache-2.0"
] | null | null | null | yanan-security/yanan-admin/src/main/java/io/renren/common/agvs/GetStandardOrderResponse.java | zmychenong/yanan | d107ddcc923c60968fe0c917503d7f8224921c35 | [
"Apache-2.0"
] | 2 | 2021-04-22T16:52:04.000Z | 2021-09-20T20:49:50.000Z | yanan-security/yanan-admin/src/main/java/io/renren/common/agvs/GetStandardOrderResponse.java | zmychenong/yanan | d107ddcc923c60968fe0c917503d7f8224921c35 | [
"Apache-2.0"
] | null | null | null | 28.227273 | 155 | 0.652711 | 17,937 |
package io.renren.common.agvs;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>ano... |
3e2a6a6530b08b901625ea064ab6b62925115bee | 3,294 | java | Java | recyclerview/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/ToolHandlerRegistryTest.java | LanderlYoung/androidx | d99c6ef82e67997b71b449840a8147f62f9537a8 | [
"Apache-2.0"
] | 3,799 | 2020-07-23T21:58:59.000Z | 2022-03-31T17:07:19.000Z | recyclerview/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/ToolHandlerRegistryTest.java | LanderlYoung/androidx | d99c6ef82e67997b71b449840a8147f62f9537a8 | [
"Apache-2.0"
] | 152 | 2020-07-24T00:19:02.000Z | 2022-03-31T00:57:54.000Z | recyclerview/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/ToolHandlerRegistryTest.java | LanderlYoung/androidx | d99c6ef82e67997b71b449840a8147f62f9537a8 | [
"Apache-2.0"
] | 582 | 2020-07-24T00:16:54.000Z | 2022-03-30T23:32:45.000Z | 35.804348 | 75 | 0.689435 | 17,938 | /*
* Copyright 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... |
3e2a6be8d8b88b9826cfd777030fdc6857d5bb2e | 7,419 | java | Java | jt4/jasper/src/share/org/apache/jasper/logging/JasperLogger.java | tharindusathis/sourcecodes-of-CodeReadingTheOpenSourcePerspective | 1b0172cdb78757fd17898503aaf6ce03d940ef28 | [
"Apache-1.1"
] | 46 | 2015-12-04T17:12:58.000Z | 2022-03-11T04:30:49.000Z | jt4/jasper/src/share/org/apache/jasper/logging/JasperLogger.java | tharindusathis/sourcecodes-of-CodeReadingTheOpenSourcePerspective | 1b0172cdb78757fd17898503aaf6ce03d940ef28 | [
"Apache-1.1"
] | null | null | null | jt4/jasper/src/share/org/apache/jasper/logging/JasperLogger.java | tharindusathis/sourcecodes-of-CodeReadingTheOpenSourcePerspective | 1b0172cdb78757fd17898503aaf6ce03d940ef28 | [
"Apache-1.1"
] | 23 | 2016-10-24T09:18:14.000Z | 2022-02-25T02:11:35.000Z | 28.417625 | 74 | 0.656195 | 17,939 | /*
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided t... |
3e2a6c010b22b654852af5ff96147de15fff83ca | 4,354 | java | Java | Viesis' Gemstones/1.11.2 - 2228/src/main/java/com/viesis/gemstones/common/tileentity/containers/ContainerGemstoneWorkbench.java | Weisses/Ebonheart-Mods | feae8dd99df495a49637bb0add090065daa0f5bb | [
"MIT"
] | null | null | null | Viesis' Gemstones/1.11.2 - 2228/src/main/java/com/viesis/gemstones/common/tileentity/containers/ContainerGemstoneWorkbench.java | Weisses/Ebonheart-Mods | feae8dd99df495a49637bb0add090065daa0f5bb | [
"MIT"
] | null | null | null | Viesis' Gemstones/1.11.2 - 2228/src/main/java/com/viesis/gemstones/common/tileentity/containers/ContainerGemstoneWorkbench.java | Weisses/Ebonheart-Mods | feae8dd99df495a49637bb0add090065daa0f5bb | [
"MIT"
] | null | null | null | 35.398374 | 326 | 0.649977 | 17,940 | package com.viesis.gemstones.common.tileentity.containers;
import com.viesis.gemstones.common.tileentity.TileEntityGemstoneWorkbench;
import com.viesis.gemstones.common.tileentity.slots.SlotInputCutterVG;
import com.viesis.gemstones.common.tileentity.slots.SlotOutputVG;
import com.viesis.gemstones.init.InitBlocksVG;
... |
3e2a6cb31d61d8ff645919f0d429338dbe2fb97f | 1,692 | java | Java | backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/v3/adapters/V3AgentConfigurationInAdapter.java | mu8086/ovirt-engine | 68237f721dff9b2c9e322ad8049dd68ab6a9ccad | [
"Apache-2.0"
] | 1 | 2018-04-09T02:58:53.000Z | 2018-04-09T02:58:53.000Z | backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/v3/adapters/V3AgentConfigurationInAdapter.java | mu8086/ovirt-engine | 68237f721dff9b2c9e322ad8049dd68ab6a9ccad | [
"Apache-2.0"
] | null | null | null | backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/v3/adapters/V3AgentConfigurationInAdapter.java | mu8086/ovirt-engine | 68237f721dff9b2c9e322ad8049dd68ab6a9ccad | [
"Apache-2.0"
] | null | null | null | 34.530612 | 107 | 0.694444 | 17,941 | /*
Copyright (c) 2016 Red Hat, 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 writing, software... |
3e2a6dd04219c38968f0e29d7a8b7aeca56e342f | 763 | java | Java | concourse-server/src/main/java/spark/route/HttpMethod.java | prab2112/concourse | 8045806c1a1a00428cbb1a81fde283e16372b356 | [
"Apache-2.0"
] | 5 | 2015-09-24T07:43:57.000Z | 2017-11-27T10:02:13.000Z | concourse-server/src/main/java/spark/route/HttpMethod.java | prab2112/concourse | 8045806c1a1a00428cbb1a81fde283e16372b356 | [
"Apache-2.0"
] | 1 | 2020-06-09T15:42:40.000Z | 2020-06-09T15:45:56.000Z | concourse-server/src/main/java/spark/route/HttpMethod.java | prab2112/concourse | 8045806c1a1a00428cbb1a81fde283e16372b356 | [
"Apache-2.0"
] | 1 | 2018-10-07T17:45:23.000Z | 2018-10-07T17:45:23.000Z | 30.52 | 79 | 0.714286 | 17,942 | /*
* Copyright 2011- Per Wendel
*
* 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 a... |
3e2a6de877ae63c7107d750a77af773aaf7dadc9 | 9,481 | java | Java | src/main/java/pokecube/core/ai/tasks/bees/BeeTasks.java | Pawlost/Pokecube-Issues-and-Wiki | 49a491a73c5da9d1d1be9cd97cd9877ce4011492 | [
"MIT"
] | null | null | null | src/main/java/pokecube/core/ai/tasks/bees/BeeTasks.java | Pawlost/Pokecube-Issues-and-Wiki | 49a491a73c5da9d1d1be9cd97cd9877ce4011492 | [
"MIT"
] | null | null | null | src/main/java/pokecube/core/ai/tasks/bees/BeeTasks.java | Pawlost/Pokecube-Issues-and-Wiki | 49a491a73c5da9d1d1be9cd97cd9877ce4011492 | [
"MIT"
] | null | null | null | 41.951327 | 120 | 0.664487 | 17,943 | package pokecube.core.ai.tasks.bees;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import com.google.common.collect.ImmutableList;
import com.mojang.serialization.Codec;
import net.minecraft.core.GlobalPos;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.tags.BlockTags;
import... |
3e2a7040b30492b0d755cc63533a4e795772362d | 333 | java | Java | whicharein/src/main/java/WhichAreIn.java | d3ns0n/codewars-katas | 0fee0eea5958e6850935806c767ed3e15310265f | [
"MIT"
] | null | null | null | whicharein/src/main/java/WhichAreIn.java | d3ns0n/codewars-katas | 0fee0eea5958e6850935806c767ed3e15310265f | [
"MIT"
] | null | null | null | whicharein/src/main/java/WhichAreIn.java | d3ns0n/codewars-katas | 0fee0eea5958e6850935806c767ed3e15310265f | [
"MIT"
] | null | null | null | 23.785714 | 76 | 0.570571 | 17,944 | import java.util.stream.Stream;
public class WhichAreIn {
public static String[] inArray(String[] array1, String[] array2) {
return Stream.of(array1)
.filter(s1 -> Stream.of(array2).anyMatch(s2 -> s2.contains(s1)))
.distinct()
.sorted()
.toArray(String[]::ne... |
3e2a70932e8676fa8293dfc14ff6354bf8790a2f | 1,522 | java | Java | src/main/java/com/example/bankpoc/models/entity/CashOut.java | GuillaumeFalourd/poc-bank-api-java | 780bf513ff373ccb04d821e4f59202e88a981c11 | [
"Apache-2.0"
] | 3 | 2021-04-01T21:21:21.000Z | 2021-11-03T17:37:19.000Z | src/main/java/com/example/bankpoc/models/entity/CashOut.java | GuillaumeFalourd/poc-bank-api-java | 780bf513ff373ccb04d821e4f59202e88a981c11 | [
"Apache-2.0"
] | null | null | null | src/main/java/com/example/bankpoc/models/entity/CashOut.java | GuillaumeFalourd/poc-bank-api-java | 780bf513ff373ccb04d821e4f59202e88a981c11 | [
"Apache-2.0"
] | null | null | null | 20.567568 | 55 | 0.598555 | 17,945 | package com.example.bankpoc.models.entity;
import java.time.LocalDateTime;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import com.example.bankpoc.util.DateHour;
@Entity
@Table(name = "c... |
3e2a70b65d8fc932e0ca646dd2fe92784c2148a7 | 387 | java | Java | hzero-starter-redis/src/main/java/org/hzero/core/cache/ProcessCacheValue.java | JodenHe/hzero-starter-parent | c1f642f18e7a0001bc16d1d12eff30d9c6f39fe4 | [
"Apache-2.0"
] | 27 | 2020-09-23T03:05:26.000Z | 2022-03-29T08:08:54.000Z | hzero-starter-redis/src/main/java/org/hzero/core/cache/ProcessCacheValue.java | JodenHe/hzero-starter-parent | c1f642f18e7a0001bc16d1d12eff30d9c6f39fe4 | [
"Apache-2.0"
] | 3 | 2020-09-24T06:34:27.000Z | 2020-12-02T01:47:52.000Z | hzero-starter-redis/src/main/java/org/hzero/core/cache/ProcessCacheValue.java | JodenHe/hzero-starter-parent | c1f642f18e7a0001bc16d1d12eff30d9c6f39fe4 | [
"Apache-2.0"
] | 23 | 2020-09-23T07:51:23.000Z | 2021-11-23T13:52:10.000Z | 20.368421 | 44 | 0.777778 | 17,946 | package org.hzero.core.cache;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 处理 {@link CacheValue}
*
* @author bojiangzhou 2018/08/16
* @see CacheValue
*/
@Target(ElementType.METHOD)
@Retention... |
3e2a70ec93ce5d2df6b72bbb9998ef72c4fd7f92 | 21,427 | java | Java | mojo/core/gen/com/perl5/lang/mojolicious/lexer/MojoliciousLexer.java | saintserge/Perl5-IDEA | 868ba3415fd179dc208c67f822cb450d2c80a8d8 | [
"Apache-2.0"
] | 1 | 2022-01-14T19:40:28.000Z | 2022-01-14T19:40:28.000Z | mojo/core/gen/com/perl5/lang/mojolicious/lexer/MojoliciousLexer.java | saintserge/Perl5-IDEA | 868ba3415fd179dc208c67f822cb450d2c80a8d8 | [
"Apache-2.0"
] | null | null | null | mojo/core/gen/com/perl5/lang/mojolicious/lexer/MojoliciousLexer.java | saintserge/Perl5-IDEA | 868ba3415fd179dc208c67f822cb450d2c80a8d8 | [
"Apache-2.0"
] | null | null | null | 30.697708 | 109 | 0.582209 | 17,947 | /* The following code was generated by JFlex 1.7.0-1 tweaked for IntelliJ platform */
package com.perl5.lang.mojolicious.lexer;
import com.intellij.psi.TokenType;
import com.intellij.psi.tree.IElementType;
/**
* This class is a scanner generated by
* <a href="http://www.jflex.de/">JFlex</a> 1.7.0-1
* from the s... |
3e2a724739fd20e307ea92eec2f7d7723f6be2c2 | 4,162 | java | Java | app/src/main/java/com/codepath/apps/mysimpletweets/TwitterClient.java | ebaumstarck/Twitter | ebe9c0cae99594e68facf90ceb858266fb81fc7f | [
"MIT"
] | null | null | null | app/src/main/java/com/codepath/apps/mysimpletweets/TwitterClient.java | ebaumstarck/Twitter | ebe9c0cae99594e68facf90ceb858266fb81fc7f | [
"MIT"
] | 1 | 2016-08-21T20:55:07.000Z | 2016-08-21T20:55:07.000Z | app/src/main/java/com/codepath/apps/mysimpletweets/TwitterClient.java | ebaumstarck/Twitter | ebe9c0cae99594e68facf90ceb858266fb81fc7f | [
"MIT"
] | null | null | null | 39.065421 | 104 | 0.746651 | 17,948 | package com.codepath.apps.mysimpletweets;
import android.content.Context;
import com.codepath.oauth.OAuthBaseClient;
import com.loopj.android.http.AsyncHttpResponseHandler;
import com.loopj.android.http.RequestParams;
import org.scribe.builder.api.Api;
import org.scribe.builder.api.TwitterApi;
/*
*
* This is the... |
3e2a73aaae44934331e56e9653e7c481c6cece91 | 3,957 | java | Java | src/main/java/de/quinscape/exceed/runtime/expression/OperationRegistration.java | quinscape/exceed | 39e73e74193921540556beb9862f4fd0b5a4a4aa | [
"Apache-2.0"
] | 3 | 2017-11-09T15:36:05.000Z | 2017-12-29T13:27:10.000Z | src/main/java/de/quinscape/exceed/runtime/expression/OperationRegistration.java | quinscape/exceed | 39e73e74193921540556beb9862f4fd0b5a4a4aa | [
"Apache-2.0"
] | null | null | null | src/main/java/de/quinscape/exceed/runtime/expression/OperationRegistration.java | quinscape/exceed | 39e73e74193921540556beb9862f4fd0b5a4a4aa | [
"Apache-2.0"
] | null | null | null | 27.10274 | 154 | 0.5767 | 17,949 | package de.quinscape.exceed.runtime.expression;
import com.esotericsoftware.reflectasm.MethodAccess;
import de.quinscape.exceed.expression.ASTFunction;
import de.quinscape.exceed.expression.Node;
import de.quinscape.exceed.runtime.ExceedRuntimeException;
import de.quinscape.exceed.runtime.expression.annotation.Operati... |
3e2a7430aa687340eba550dd68aa3a8bfc3c98e6 | 4,807 | java | Java | searchahouse-leadrouter/src/main/java/edu/searchahouse/leadrouter/service/impl/LeadRouterServiceImpl.java | gustavoorsi/searchahouse.com | 4276726ac801059e97151ce66c48887cbb695e74 | [
"Apache-2.0"
] | 3 | 2015-08-03T17:29:29.000Z | 2018-01-15T08:13:37.000Z | searchahouse-leadrouter/src/main/java/edu/searchahouse/leadrouter/service/impl/LeadRouterServiceImpl.java | gustavoorsi/searchahouse.com | 4276726ac801059e97151ce66c48887cbb695e74 | [
"Apache-2.0"
] | null | null | null | searchahouse-leadrouter/src/main/java/edu/searchahouse/leadrouter/service/impl/LeadRouterServiceImpl.java | gustavoorsi/searchahouse.com | 4276726ac801059e97151ce66c48887cbb695e74 | [
"Apache-2.0"
] | 3 | 2016-08-14T01:11:48.000Z | 2020-11-18T05:11:50.000Z | 40.058333 | 159 | 0.657583 | 17,950 | package edu.searchahouse.leadrouter.service.impl;
import java.util.Collection;
import java.util.Optional;
import java.util.stream.Collectors;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.hateoas.PagedResources;
im... |
3e2a74355af8d775ad0c9059bb83292608f953aa | 12,013 | java | Java | channel-api/src/main/java/com/synopsys/integration/alert/channel/api/issue/convert/ProjectIssueModelConverter.java | vberegov/blackduck-alert | f5597257fd19d11c1b8041b214d780d0255dcda5 | [
"Apache-2.0"
] | null | null | null | channel-api/src/main/java/com/synopsys/integration/alert/channel/api/issue/convert/ProjectIssueModelConverter.java | vberegov/blackduck-alert | f5597257fd19d11c1b8041b214d780d0255dcda5 | [
"Apache-2.0"
] | null | null | null | channel-api/src/main/java/com/synopsys/integration/alert/channel/api/issue/convert/ProjectIssueModelConverter.java | vberegov/blackduck-alert | f5597257fd19d11c1b8041b214d780d0255dcda5 | [
"Apache-2.0"
] | null | null | null | 58.033816 | 200 | 0.761425 | 17,951 | /*
* channel-api
*
* Copyright (c) 2021 Synopsys, Inc.
*
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
*/
package com.synopsys.integration.alert.channel.api.issue.convert;
import java.io.Serializable;
import java.util... |
3e2a75716017e4ab7e53c1630a5727fd8bb76e1e | 2,815 | java | Java | src/backend/codecc/core/task/biz-task/src/main/java/com/tencent/bk/codecc/task/service/specialparam/ESLINTSpecialParamServiceImpl.java | crb2046/bk-ci | adbf3f4e92900db7b1db19c7760f926c98bffd95 | [
"MIT"
] | 1,939 | 2019-05-29T05:15:45.000Z | 2022-03-29T11:49:16.000Z | src/backend/codecc/core/task/biz-task/src/main/java/com/tencent/bk/codecc/task/service/specialparam/ESLINTSpecialParamServiceImpl.java | crb2046/bk-ci | adbf3f4e92900db7b1db19c7760f926c98bffd95 | [
"MIT"
] | 3,608 | 2019-06-05T07:55:23.000Z | 2022-03-31T15:03:41.000Z | src/backend/codecc/core/task/biz-task/src/main/java/com/tencent/bk/codecc/task/service/specialparam/ESLINTSpecialParamServiceImpl.java | crb2046/bk-ci | adbf3f4e92900db7b1db19c7760f926c98bffd95 | [
"MIT"
] | 561 | 2019-05-29T07:15:10.000Z | 2022-03-29T09:32:15.000Z | 31.629213 | 140 | 0.639432 | 17,952 | package com.tencent.bk.codecc.task.service.specialparam;
import com.tencent.bk.codecc.defect.vo.CheckerDetailVO;
import com.tencent.devops.common.constant.ComConstants;
import org.apache.commons.lang.StringUtils;
import org.json.JSONObject;
import org.springframework.stereotype.Service;
/**
* EsLint特殊参数处理实现类
*
* @... |
3e2a75ae683a2ca31136dc810cd8a4a16b2a79a3 | 2,623 | java | Java | flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/io/MockInputGate.java | TU-Berlin-DIMA/sage-flink | 7439cc4e57889e752fd3da71e16696af1baf82ce | [
"BSD-3-Clause"
] | 80 | 2016-08-11T03:07:28.000Z | 2022-03-27T06:47:09.000Z | flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/io/MockInputGate.java | TU-Berlin-DIMA/sage-flink | 7439cc4e57889e752fd3da71e16696af1baf82ce | [
"BSD-3-Clause"
] | 2 | 2021-08-08T05:45:18.000Z | 2021-08-25T04:15:52.000Z | flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/io/MockInputGate.java | TU-Berlin-DIMA/sage-flink | 7439cc4e57889e752fd3da71e16696af1baf82ce | [
"BSD-3-Clause"
] | 40 | 2016-08-12T05:40:51.000Z | 2022-01-11T08:01:04.000Z | 27.041237 | 80 | 0.752192 | 17,953 | /*
* 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 ... |
3e2a7765ead7a0bccfa61aeb57ebb358f4d79da7 | 746 | java | Java | aether-api/src/main/java/com/aether/model/celestials/bodies/Star.java | Michael1993/Aether4X | a2a01a9967f401fee5c16ba61d73c821d615dd88 | [
"MIT"
] | null | null | null | aether-api/src/main/java/com/aether/model/celestials/bodies/Star.java | Michael1993/Aether4X | a2a01a9967f401fee5c16ba61d73c821d615dd88 | [
"MIT"
] | 2 | 2020-02-04T14:55:31.000Z | 2022-02-16T01:17:57.000Z | aether-api/src/main/java/com/aether/model/celestials/bodies/Star.java | Michael1993/Aether4X | a2a01a9967f401fee5c16ba61d73c821d615dd88 | [
"MIT"
] | null | null | null | 25.724138 | 98 | 0.707775 | 17,954 | /*
MIT License
Copyright (c) 2021 Mihály Verhás
See LICENSE file.
*/
package com.aether.model.celestials.bodies;
/** A star. TODO. */
public interface Star extends CelestialBody {
/**
* Stars are classified based on their surface temperature, and size. This method should be used
* to calculate the av... |
3e2a77d5f62a3ad0cf071c3955d96072909ae084 | 2,415 | java | Java | aws-java-sdk-rekognition/src/main/java/com/amazonaws/services/rekognition/model/transform/LandmarkMarshaller.java | DamonTung/aws-sdk-java | e33012aea76a1cc18866120d0c53fd593b2cf550 | [
"Apache-2.0"
] | 1 | 2019-10-17T14:03:43.000Z | 2019-10-17T14:03:43.000Z | aws-java-sdk-rekognition/src/main/java/com/amazonaws/services/rekognition/model/transform/LandmarkMarshaller.java | DamonTung/aws-sdk-java | e33012aea76a1cc18866120d0c53fd593b2cf550 | [
"Apache-2.0"
] | null | null | null | aws-java-sdk-rekognition/src/main/java/com/amazonaws/services/rekognition/model/transform/LandmarkMarshaller.java | DamonTung/aws-sdk-java | e33012aea76a1cc18866120d0c53fd593b2cf550 | [
"Apache-2.0"
] | 2 | 2017-10-05T10:52:18.000Z | 2018-10-19T09:13:12.000Z | 38.951613 | 154 | 0.727122 | 17,955 | /*
* Copyright 2012-2017 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 "licen... |
3e2a782cfd4792991d925112378ccb1b29fa3e44 | 1,338 | java | Java | compatibility-layer/service/search/src/main/java/com/osdu/model/delfi/geo/ByGeoPolygon.java | google/framework-for-osdu | e0ecac0244928021df68092a720a4c5138b23f6b | [
"Apache-2.0"
] | 14 | 2020-02-27T06:09:54.000Z | 2022-03-31T14:52:49.000Z | compatibility-layer/service/search/src/main/java/com/osdu/model/delfi/geo/ByGeoPolygon.java | google/framework-for-osdu | e0ecac0244928021df68092a720a4c5138b23f6b | [
"Apache-2.0"
] | 10 | 2021-01-07T09:55:08.000Z | 2021-12-16T19:43:44.000Z | compatibility-layer/service/search/src/main/java/com/osdu/model/delfi/geo/ByGeoPolygon.java | google/framework-for-osdu | e0ecac0244928021df68092a720a4c5138b23f6b | [
"Apache-2.0"
] | 5 | 2020-10-09T04:10:28.000Z | 2021-10-22T00:52:57.000Z | 29.733333 | 92 | 0.716741 | 17,956 | /*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... |
3e2a7a26cf4669bbffa75efcb266f8804ea3238d | 1,366 | java | Java | src/main/java/view/implementation/javafx/SceneFx.java | romatallinn/sustainme | e63f2464a92a4905807e30f6c938a9b32acb032a | [
"MIT"
] | null | null | null | src/main/java/view/implementation/javafx/SceneFx.java | romatallinn/sustainme | e63f2464a92a4905807e30f6c938a9b32acb032a | [
"MIT"
] | null | null | null | src/main/java/view/implementation/javafx/SceneFx.java | romatallinn/sustainme | e63f2464a92a4905807e30f6c938a9b32acb032a | [
"MIT"
] | null | null | null | 23.964912 | 100 | 0.61347 | 17,957 | package view.implementation.javafx;
/**
* Helper class that helps to initialize the data of all scenes in the application for easier use.
* @param <T> one of the view classes (packages: view -> implementation -> javafx)
*/
public class SceneFx<T> {
private String fxmlPath;
private String cssPath;
priv... |
3e2a7a6f4da1994f680c04250ac3d3a9237bf3fa | 2,524 | java | Java | sdk/eventgrid/mgmt-v2020_04_01_preview/src/main/java/com/microsoft/azure/management/eventgrid/v2020_04_01_preview/ConnectionState.java | yiliuTo/azure-sdk-for-java | 4536b6e99ded1b2b77f79bc2c31f42566c97b704 | [
"MIT"
] | 3 | 2021-09-15T16:25:19.000Z | 2021-12-17T05:41:00.000Z | sdk/eventgrid/mgmt-v2020_04_01_preview/src/main/java/com/microsoft/azure/management/eventgrid/v2020_04_01_preview/ConnectionState.java | yiliuTo/azure-sdk-for-java | 4536b6e99ded1b2b77f79bc2c31f42566c97b704 | [
"MIT"
] | 306 | 2019-09-27T06:41:56.000Z | 2019-10-14T08:19:57.000Z | sdk/eventgrid/mgmt-v2020_04_01_preview/src/main/java/com/microsoft/azure/management/eventgrid/v2020_04_01_preview/ConnectionState.java | yiliuTo/azure-sdk-for-java | 4536b6e99ded1b2b77f79bc2c31f42566c97b704 | [
"MIT"
] | 1 | 2022-01-31T19:22:33.000Z | 2022-01-31T19:22:33.000Z | 26.020619 | 112 | 0.648177 | 17,958 | /**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.eventgrid.v2020_04_01_preview;
import com.faster... |
3e2a7aca16cb74438b0ad258a9377c18a7e10231 | 586 | java | Java | src/main/java/com/agekt/ideastore/entity/mapper/UserMapper.java | Lmy0217/ideastore | d1aae1e03aff6077474bf191a143d20934572f23 | [
"Apache-2.0"
] | null | null | null | src/main/java/com/agekt/ideastore/entity/mapper/UserMapper.java | Lmy0217/ideastore | d1aae1e03aff6077474bf191a143d20934572f23 | [
"Apache-2.0"
] | 1 | 2022-02-11T05:09:12.000Z | 2022-02-11T05:09:12.000Z | src/main/java/com/agekt/ideastore/entity/mapper/UserMapper.java | Lmy0217/ideastore | d1aae1e03aff6077474bf191a143d20934572f23 | [
"Apache-2.0"
] | null | null | null | 36.625 | 57 | 0.716724 | 17,959 | package com.agekt.ideastore.entity.mapper;
public class UserMapper {
public final static String TABLE = "user";
public final static String ID = "id";
public final static String USERNAME = "username";
public final static String NICKNAME = "nickname";
public final static String EMAIL = "email";
... |
3e2a7cdc78b02dc1e591b441a266f7808446ff5f | 2,380 | java | Java | source/core/nl.uva.vlet.vrs.core/source/main/nl/uva/vlet/vrms/ResourceNodeFactory.java | skoulouzis/vlet | a9effed8947723cf0b40182cf8d4175252ed080e | [
"Apache-2.0"
] | null | null | null | source/core/nl.uva.vlet.vrs.core/source/main/nl/uva/vlet/vrms/ResourceNodeFactory.java | skoulouzis/vlet | a9effed8947723cf0b40182cf8d4175252ed080e | [
"Apache-2.0"
] | null | null | null | source/core/nl.uva.vlet.vrs.core/source/main/nl/uva/vlet/vrms/ResourceNodeFactory.java | skoulouzis/vlet | a9effed8947723cf0b40182cf8d4175252ed080e | [
"Apache-2.0"
] | null | null | null | 27.674419 | 92 | 0.718908 | 17,960 | /*
* Copyright 2006-2011 The Virtual Laboratory for e-Science (VL-e)
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* For details, see the LICENCE.txt file location in the root directory of this
* distribution or obtain ... |
3e2a7d9b1e1606a63d4b4db2f837840ab02acda5 | 564 | java | Java | src/main/java/io/github/giantnuker/fabric/informedload/mixin/LanguageManagerAccessor.java | IMS212/Informed-Load | 7f5f13516aad51b9e54958fe54bb653eff6c93fe | [
"Apache-2.0"
] | null | null | null | src/main/java/io/github/giantnuker/fabric/informedload/mixin/LanguageManagerAccessor.java | IMS212/Informed-Load | 7f5f13516aad51b9e54958fe54bb653eff6c93fe | [
"Apache-2.0"
] | null | null | null | src/main/java/io/github/giantnuker/fabric/informedload/mixin/LanguageManagerAccessor.java | IMS212/Informed-Load | 7f5f13516aad51b9e54958fe54bb653eff6c93fe | [
"Apache-2.0"
] | 1 | 2021-05-08T04:33:44.000Z | 2021-05-08T04:33:44.000Z | 33.176471 | 83 | 0.828014 | 17,961 | package io.github.giantnuker.fabric.informedload.mixin;
import net.minecraft.client.resource.language.LanguageDefinition;
import net.minecraft.client.resource.language.LanguageManager;
import net.minecraft.resource.ResourcePack;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;
... |
3e2a7de4ec1c83e02b1766ebd5e7bf97451ebedc | 1,022 | java | Java | deployment/src/test/java/dev/renann/quarkus/jte/test/QuarkusJteTest.java | renannprado/quarkus-jte-extension | a6eb129a1f067e7e1e2cb87e4982c157dbfb2a9f | [
"Apache-2.0"
] | 3 | 2021-08-17T19:48:42.000Z | 2021-09-13T17:45:12.000Z | deployment/src/test/java/dev/renann/quarkus/jte/test/QuarkusJteTest.java | renannprado/quarkus-jte-extension | a6eb129a1f067e7e1e2cb87e4982c157dbfb2a9f | [
"Apache-2.0"
] | 1 | 2021-11-25T22:30:50.000Z | 2021-12-10T22:10:14.000Z | deployment/src/test/java/dev/renann/quarkus/jte/test/QuarkusJteTest.java | renannprado/quarkus-jte-extension | a6eb129a1f067e7e1e2cb87e4982c157dbfb2a9f | [
"Apache-2.0"
] | null | null | null | 34.066667 | 83 | 0.715264 | 17,962 | package dev.renann.quarkus.jte.test;
import io.quarkus.test.QuarkusUnitTest;
import io.restassured.RestAssured;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.... |
3e2a7f654f411d89c355da92357e1f7c4b625075 | 147 | java | Java | src/main/java/setting/Linux.java | nErumin/MusicPlayer | d259bbcd17251f3e2597d5a24fe0bafb93ffb29a | [
"MIT"
] | 1 | 2019-02-14T04:24:57.000Z | 2019-02-14T04:24:57.000Z | src/main/java/setting/Linux.java | nErumin/MusicPlayer | d259bbcd17251f3e2597d5a24fe0bafb93ffb29a | [
"MIT"
] | null | null | null | src/main/java/setting/Linux.java | nErumin/MusicPlayer | d259bbcd17251f3e2597d5a24fe0bafb93ffb29a | [
"MIT"
] | 1 | 2021-11-17T08:11:42.000Z | 2021-11-17T08:11:42.000Z | 16.333333 | 47 | 0.659864 | 17,963 | package setting;
public class Linux implements OperatingSystem {
@Override
public String getFileSeparator() {
return "/";
}
}
|
3e2a7ffb5b455337767aac8961dee99aab875274 | 2,428 | java | Java | api/android/archive/external/src/main/java/org/societies/android/api/cis/management/ICisActivity.java | EPapadopoulou/SOCIETIES-Platform | 7050936833dcadf5cf318921ba97154843a05a46 | [
"BSD-2-Clause"
] | 4 | 2015-01-30T12:55:10.000Z | 2021-08-24T12:21:58.000Z | api/android/archive/external/src/main/java/org/societies/android/api/cis/management/ICisActivity.java | EPapadopoulou/SOCIETIES-Platform | 7050936833dcadf5cf318921ba97154843a05a46 | [
"BSD-2-Clause"
] | 1 | 2017-03-12T19:22:46.000Z | 2017-03-15T19:52:57.000Z | api/android/archive/external/src/main/java/org/societies/android/api/cis/management/ICisActivity.java | EPapadopoulou/SOCIETIES-Platform | 7050936833dcadf5cf318921ba97154843a05a46 | [
"BSD-2-Clause"
] | 2 | 2015-03-03T15:23:31.000Z | 2015-08-17T06:09:18.000Z | 56.674419 | 130 | 0.773492 | 17,964 | /**
* Copyright (c) 2011, SOCIETIES Consortium (WATERFORD INSTITUTE OF TECHNOLOGY (TSSG), HERIOT-WATT UNIVERSITY (HWU), SOLUTA.NET
* (SN), GERMAN AEROSPACE CENTRE (Deutsches Zentrum fuer Luft- und Raumfahrt e.V.) (DLR), Zavod za varnostne tehnologije
* informacijske družbe in elektronsko poslovanje (SETCCE), INSTIT... |
3e2a80681564cd724a68d3489e772e99ea8137de | 2,111 | java | Java | app/src/main/java/com/materialnotes/data/source/sqlite/NotesDatabaseHelper.java | elibo/ScribaNotesApp | 09880e4a92b6f55992bbc23fef0f1864d205798a | [
"Apache-2.0"
] | 2 | 2016-04-25T18:28:06.000Z | 2016-04-28T11:32:46.000Z | app/src/main/java/com/materialnotes/data/source/sqlite/NotesDatabaseHelper.java | elibo/ScribaNotesApp | 09880e4a92b6f55992bbc23fef0f1864d205798a | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/materialnotes/data/source/sqlite/NotesDatabaseHelper.java | elibo/ScribaNotesApp | 09880e4a92b6f55992bbc23fef0f1864d205798a | [
"Apache-2.0"
] | null | null | null | 36.396552 | 128 | 0.640455 | 17,965 | package com.materialnotes.data.source.sqlite;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
import java.io.IOException;
import java.io.InputStream;
public class NotesDatabaseHelper extends SQLiteOpenHelper {
... |
3e2a807a21dbfdc845b17f23ace23772017d2d87 | 2,056 | java | Java | cdap-app-templates/cdap-etl/cdap-etl-proto/src/main/java/io/cdap/cdap/etl/proto/v0/ETLStage.java | neelesh-nirmal/cdap | ac80b367554eed063690844a86d2bb427e13663c | [
"Apache-2.0"
] | 369 | 2018-12-11T08:30:05.000Z | 2022-03-30T09:32:53.000Z | cdap-app-templates/cdap-etl/cdap-etl-proto/src/main/java/io/cdap/cdap/etl/proto/v0/ETLStage.java | neelesh-nirmal/cdap | ac80b367554eed063690844a86d2bb427e13663c | [
"Apache-2.0"
] | 8,921 | 2015-01-01T16:40:44.000Z | 2018-11-29T21:58:11.000Z | cdap-app-templates/cdap-etl/cdap-etl-proto/src/main/java/io/cdap/cdap/etl/proto/v0/ETLStage.java | neelesh-nirmal/cdap | ac80b367554eed063690844a86d2bb427e13663c | [
"Apache-2.0"
] | 189 | 2018-11-30T20:11:08.000Z | 2022-03-25T02:55:39.000Z | 33.704918 | 114 | 0.748541 | 17,966 | /*
* Copyright © 2016 Cask Data, 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 t... |
3e2a80e439953ac518d4f7a68fe52920524970c2 | 1,238 | java | Java | labapp_client/src/main/java/dto/response/SubmissionResponseDTO.java | andadiana/sd-lab-app | e6139683f16b6b0f5cc8ec70528cb600bd8b651c | [
"MIT"
] | null | null | null | labapp_client/src/main/java/dto/response/SubmissionResponseDTO.java | andadiana/sd-lab-app | e6139683f16b6b0f5cc8ec70528cb600bd8b651c | [
"MIT"
] | 3 | 2020-06-18T15:40:45.000Z | 2021-12-09T20:00:16.000Z | labapp_client/src/main/java/dto/response/SubmissionResponseDTO.java | andadiana/sd-lab-app | e6139683f16b6b0f5cc8ec70528cb600bd8b651c | [
"MIT"
] | null | null | null | 17.685714 | 72 | 0.617124 | 17,967 | package dto.response;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.sql.Date;
public class SubmissionResponseDTO {
private int id;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
private Date date;
private String description;
private int grade;
priv... |
3e2a813d2dc8a153be4cd3aa45540286aba1306b | 3,947 | java | Java | src/test/java/org/springframework/cloud/servicebroker/model/fixture/ServiceInstanceBindingFixture.java | orange-cloudfoundry/spring-cloud-cloudfoundry-service-broker | 0433a405b99a7c14f759b9952d45950aca1d86b1 | [
"Apache-2.0"
] | null | null | null | src/test/java/org/springframework/cloud/servicebroker/model/fixture/ServiceInstanceBindingFixture.java | orange-cloudfoundry/spring-cloud-cloudfoundry-service-broker | 0433a405b99a7c14f759b9952d45950aca1d86b1 | [
"Apache-2.0"
] | 1 | 2020-07-29T07:06:14.000Z | 2020-07-29T07:06:14.000Z | src/test/java/org/springframework/cloud/servicebroker/model/fixture/ServiceInstanceBindingFixture.java | orange-cloudfoundry/spring-cloud-open-service-broker | 0433a405b99a7c14f759b9952d45950aca1d86b1 | [
"Apache-2.0"
] | null | null | null | 44.348315 | 105 | 0.81961 | 17,968 | package org.springframework.cloud.servicebroker.model.fixture;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.cloud.servicebroker.model.CreateServiceInstanceBindingRequest;
import org.springframework.cloud.servicebroker.model.CreateServi... |
3e2a82e73c14e9aaaac70d26767e68b54f4994a1 | 11,567 | java | Java | app/src/main/java/com/unclezs/novel/app/main/views/home/AnalysisView.java | Mu-L/uncle-novel | 15cac06aba60450400f3ded6ceafae6765f5a18c | [
"MIT"
] | 637 | 2021-07-17T11:35:57.000Z | 2022-03-28T15:02:58.000Z | app/src/main/java/com/unclezs/novel/app/main/views/home/AnalysisView.java | Mu-L/uncle-novel | 15cac06aba60450400f3ded6ceafae6765f5a18c | [
"MIT"
] | 10 | 2021-10-30T15:43:42.000Z | 2022-03-04T02:49:29.000Z | app/src/main/java/com/unclezs/novel/app/main/views/home/AnalysisView.java | Mu-L/uncle-novel | 15cac06aba60450400f3ded6ceafae6765f5a18c | [
"MIT"
] | 154 | 2021-07-18T05:59:05.000Z | 2022-03-29T10:31:13.000Z | 30.600529 | 106 | 0.669318 | 17,969 | package com.unclezs.novel.app.main.views.home;
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.bean.copier.CopyOptions;
import com.jfoenix.controls.JFXNodesList;
import com.unclezs.novel.analyzer.core.model.AnalyzerRule;
import com.unclezs.novel.analyzer.model.Chapter;
import com.unclezs.novel.analyzer.mode... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.