code stringlengths 3 1.04M | repo_name stringlengths 5 109 | path stringlengths 6 306 | language stringclasses 1
value | license stringclasses 15
values | size int64 3 1.04M |
|---|---|---|---|---|---|
package jbse.algo;
import jbse.mem.State;
import jbse.val.Calculator;
/**
* Zero implicits, zero immediates.
*
* @author Pietro Braione
*/
public final class BytecodeData_0 extends BytecodeData {
@Override
protected void readImmediates(State state, Calculator calc) throws InterruptException {
//n... | pietrobraione/jbse | src/main/java/jbse/algo/BytecodeData_0.java | Java | gpl-3.0 | 531 |
package snippet;
import android.content.Context;
import android.graphics.Rect;
import android.text.TextUtils;
import android.view.Gravity;
import android.view.View;
import android.widget.Toast;
public class CheatSheet {
/**
* The estimated height of a toast, in dips (density-independent pixels). This is used... | siddharths2710/open-keychain | OpenKeychain/src/main/java/CheatSheet.java | Java | gpl-3.0 | 4,875 |
package cn.org.citycloud.bean;
public class IndexOrderBean {
private String startTime="";
private String endTime="";
private int status=-1;
private int supplierId;
public String getStartTime() {
return startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
pu... | xiaolowe/srdz-supplier-api | srdz-supplier-api/src/main/java/cn/org/citycloud/bean/IndexOrderBean.java | Java | gpl-3.0 | 694 |
package cn.clothes.dao;
import javax.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import cn.clothes.entity.Like;
@RunWith(SpringJUnit4Class... | strictnerd/clothes-matchingAndcommenting | src/test/java/cn/clothes/dao/LikeDaoTest.java | Java | gpl-3.0 | 1,079 |
package com.baeldung.jpa.projections;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import javax.persistence.Query;
import javax.persistence.Tuple;
import javax.persistence.criteria.CriteriaBuilder;
import javax.pers... | Niky4000/UsefulUtils | projects/tutorials-master/tutorials-master/persistence-modules/java-jpa/src/main/java/com/baeldung/jpa/projections/ProductRepository.java | Java | gpl-3.0 | 4,070 |
package com.example.Klok;
/**
* Enum. containing all the supported weather conditions
*
* @author Yan Doroshenko
*/
enum WeatherCondition {
CloudyLightRain("Cloudy, light rain", R.drawable.lightrain),
Fair("Fair", R.drawable.fair),
FairBrume("Fair, brume", R.drawable.brume),
FairSmoke("Fair, smoke... | YanDoroshenko/Klok | src/com/example/Klok/WeatherCondition.java | Java | gpl-3.0 | 2,532 |
/*
* _____ __ _ _ _____ _
* | __|___ ___ _ _ ___ ___| | |_|___| |_| _ | |_ _ ___
* |__ | -_| _| | | -_| _| |__| |_ -| _| __| | | |_ -|
* |_____|___|_| \_/|___|_| |_____|_|___|_| |__| |_|___|___|
*
* ServerListPlus - http://git.io/slp
* > T... | jamierocks/ServerListPlus | Core/src/main/java/net/minecrell/serverlistplus/core/ServerListPlusCore.java | Java | gpl-3.0 | 17,490 |
/*
* ====================================================================
* 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 ... | onedanshow/Screen-Courter | lib/src/org/apache/http/entity/mime/FormBodyPart.java | Java | gpl-3.0 | 3,865 |
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without ... | ridem/fr.lemet | LeMet/src/fr/lemet/application/application/TransportsMetzApplication.java | Java | gpl-3.0 | 7,784 |
/**
*
* Copyright (c) 2014, Openflexo
*
* This file is part of Diana-api, a component of the software infrastructure
* developed at Openflexo.
*
*
* Openflexo is dual-licensed under the European Union Public License (EUPL, either
* version 1.1 of the License, or any later version ), which is available at... | openflexo-team/diana | diana-core/src/main/java/org/openflexo/diana/layout/impl/GridLayoutManagerImpl.java | Java | gpl-3.0 | 5,812 |
package ro.roda.webjson.admin;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.spr... | cosminrentea/roda | src/main/java/ro/roda/webjson/admin/SnippetGroupTreeController.java | Java | gpl-3.0 | 1,720 |
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | s20121035/rk3288_android5.1_repo | packages/apps/Settings/src/com/android/settings/DevelopmentSettings.java | Java | gpl-3.0 | 71,471 |
package org.gradoop.flink.model.impl.operators.base;
import org.gradoop.common.model.impl.pojo.GraphElement;
import org.gradoop.flink.model.GradoopFlinkTestBase;
import java.util.Set;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
public class BinaryGraphOperatorsTestBase ex... | Venom590/gradoop | gradoop-flink/src/test/java/org/gradoop/flink/model/impl/operators/base/BinaryGraphOperatorsTestBase.java | Java | gpl-3.0 | 1,034 |
package net.shutingg.leetCode;
public class MedianOfKSortedArrays {
/**
* @param nums: the given k sorted arrays
* @return: the median of the given k sorted arrays
*/
public double findMedian(int[][] nums) {
if (nums == null || nums.length == 0) {
return 0.0;
}
... | afatcat/LeetCodePractice | src/main/java/net/shutingg/leetCode/MedianOfKSortedArrays.java | Java | gpl-3.0 | 2,126 |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: topology.proto
package us.ihmc.aci.ddam;
/**
* Protobuf type {@code ddam.Host}
*/
public final class Host extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:ddam.Host)
HostOrBuilde... | ihmc/nomads | aci/java/us/ihmc/aci/ddam/Host.java | Java | gpl-3.0 | 22,509 |
/*-
* $Id$
*/
package com.github.unix_junkie.christmas;
import static com.github.unix_junkie.christmas.LineDrawingCharacters.BOX_DRAWINGS_DOUBLE_DOWN_AND_LEFT;
import static com.github.unix_junkie.christmas.LineDrawingCharacters.BOX_DRAWINGS_DOUBLE_DOWN_AND_RIGHT;
import static com.github.unix_junkie.christmas.LineD... | unix-junkie/christmas | src/main/java/com/github/unix_junkie/christmas/LineDrawingMethod.java | Java | gpl-3.0 | 7,720 |
package ensembles;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
/**
* Factory permettant de créer différents types d'ensembles utilisés dans les
* tests
* @author davidroussel
*/
public class EnsembleFactory<E>
{
/**
* Obtention d'un nouvel ensemble d'après le type ... | rpereira-dev/ENSIIE | UE/S2/ILO/TP2/src/ensembles/EnsembleFactory.java | Java | gpl-3.0 | 2,293 |
package com.dotcms.auth.providers.jwt.factories;
public class ApiTokenSQLMSSQL extends ApiTokenSQL{
@Override
public String CREATE_TOKEN_TABLE_SCRIPT() {
return "CREATE TABLE api_token_issued( "
+ "token_id NVARCHAR(255) NOT NULL, "
+ "token_userid N... | dotCMS/core | dotCMS/src/main/java/com/dotcms/auth/providers/jwt/factories/ApiTokenSQLMSSQL.java | Java | gpl-3.0 | 1,038 |
/*
* Copyright (C) 2013 4th Line GmbH, Switzerland
*
* The contents of this file are subject to the terms of either the GNU
* Lesser General Public License Version 2 or later ("LGPL") or the
* Common Development and Distribution License Version 1 or later
* ("CDDL") (collectively, the "License"). You may not use ... | jjm2473/DroidDLNA | app/src/main/java/org/fourthline/cling/support/model/container/MusicAlbum.java | Java | gpl-3.0 | 5,115 |
/*******************************************************************************
* Copyright (c) 2007, 2018 Stefaan Van Cauwenberge
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0 (the "License"). If a copy of the MPL was not distributed with this
* file, You can obta... | scauwe/Generic-File-Driver-for-IDM | shim/src/main/java/info/vancauwenberge/filedriver/api/IPostProcessStrategy.java | Java | mpl-2.0 | 1,183 |
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package etomica.data.types;
import java.io.Serializable;
import etomica.data.DataPipe;
import etomica.data.DataP... | ajschult/etomica | etomica-core/src/main/java/etomica/data/types/CastToTable.java | Java | mpl-2.0 | 7,516 |
/*
* Copyright © 2013-2018, The SeedStack authors <http://seedstack.org>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package org.seedstack.samples.diagno... | seedstack/samples | basics/diagnostic/src/test/java/org/seedstack/samples/diagnostic/DiagnosticIT.java | Java | mpl-2.0 | 978 |
/**
* This Source Code Form is subject to the terms of
* the Mozilla Public License, v. 2.0. If a copy of
* the MPL was not distributed with this file, You
* can obtain one at https://mozilla.org/MPL/2.0/.
*/
package top.marchand.xml.gaulois.impl;
import fr.efl.chaine.xslt.SaxonConfigurationFactory;
import jav... | cmarchand/gaulois-pipe | gaulois-pipe/src/main/java/top/marchand/xml/gaulois/impl/DefaultSaxonConfigurationFactory.java | Java | mpl-2.0 | 4,909 |
package org.openmrs.module.hr.web.controller;
import org.openmrs.api.context.Context;
import org.openmrs.module.hr.HrCertificate;
import org.openmrs.module.hr.api.HRQualificationService;
import org.openmrs.module.hr.api.validator.CertificateValidator;
import org.openmrs.web.WebConstants;
import org.springframework.ste... | openmrs/openmrs-module-hr | omod/src/main/java/org/openmrs/module/hr/web/controller/CertificateController.java | Java | mpl-2.0 | 4,358 |
/*
* Copyright (c) Mirth Corporation. All rights reserved.
*
* http://www.mirthcorp.com
*
* The software in this package is published under the terms of the MPL license a copy of which has
* been included with this distribution in the LICENSE.txt file.
*/
package com.mirth.connect.plugins.datatypes.ncpdp;
im... | encapturemd/MirthConnect | server/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeDelegate.java | Java | mpl-2.0 | 1,218 |
/*
* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
* If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package be.hyperrail.opentransportdata.common.models;
/**
* This class represents a vehicle composition..... | hyperrail/hyperrail-for-android | OpenTransport/src/main/java/be/hyperrail/opentransportdata/common/models/VehicleCompositionUnit.java | Java | mpl-2.0 | 647 |
package com.opentrain.app.utils;
import android.util.Log;
import com.opentrain.app.model.LogItem;
import com.opentrain.app.model.WifiScanResultItem;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.Map;
/**
* Created by noam on 29/0... | hasadna/OpenTrainApp | app/src/main/java/com/opentrain/app/utils/Logger.java | Java | mpl-2.0 | 2,342 |
/**
* Copyright (c) 2015, rpgwizard.org, some files forked from rpgtoolkit.net <info@rpgwizard.org>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package or... | swordmaster2k/rpgwizard | editor/editor-ui/src/main/java/org/rpgwizard/editor/ui/AbstractImagePanel.java | Java | mpl-2.0 | 3,238 |
package fr.esgi.annuel.ctrl;
import java.awt.*;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Writer;
import java.util.Properties;
import fr.esgi.annuel.gui.MasterWindow;
import fr.esgi.util.Outils;
/**
* @author Gaël B.
*/
public class PropertiesController
{
private st... | Nightmaster/PrivaConv2Peer | src/main/java/fr/esgi/annuel/ctrl/PropertiesController.java | Java | mpl-2.0 | 3,517 |
/*
* This file is part of Gaia Sky, which is released under the Mozilla Public License 2.0.
* See the file LICENSE.md in the project root for full license details.
*/
package gaiasky.interafce;
import com.badlogic.gdx.scenes.scene2d.Stage;
import com.badlogic.gdx.scenes.scene2d.ui.Skin;
import gaiasky.desktop.util... | langurmonkey/gaiasky | core/src/gaiasky/interafce/KeyframePreferencesWindow.java | Java | mpl-2.0 | 4,393 |
package com.servinglynk.hmis.warehouse.dao;
import java.util.List;
import java.util.UUID;
import org.hibernate.criterion.DetachedCriteria;
import org.hibernate.criterion.Projection;
import org.hibernate.criterion.ProjectionList;
import org.hibernate.criterion.Projections;
import org.hibernate.criterion.Restrictions;
... | hserv/coordinated-entry | hmis-survey-api/src/main/java/com/servinglynk/hmis/warehouse/dao/SectionScoreDaoImplV3.java | Java | mpl-2.0 | 7,348 |
/*
* This file is part of Gaia Sky, which is released under the Mozilla Public License 2.0.
* See the file LICENSE.md in the project root for full license details.
*/
/*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the... | langurmonkey/gaiasky | core/src/gaiasky/util/gdx/shader/ExtShaderProgram.java | Java | mpl-2.0 | 36,469 |
package net.minecraft.entity.ai;
import net.minecraft.entity.EntityCreature;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.passive.EntityTameable;
import net.minecraft.util.math.AxisAlignedBB;
public class EntityAIHurtByTarget extends EntityAITarget
{
private final boolean ent... | lucemans/ShapeClient-SRC | net/minecraft/entity/ai/EntityAIHurtByTarget.java | Java | mpl-2.0 | 3,075 |
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package etomica.paracetamol;
import java.util.ArrayList;
import etomica.action.activity.ActivityIntegrate;
impor... | ajschult/etomica | etomica-apps/src/main/java/etomica/paracetamol/MCParacetamolOrthorhombicMoveHarmonic.java | Java | mpl-2.0 | 18,629 |
/*
* Copyright © 2014 - 2016 | Wurst-Imperium | All rights reserved.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package tk.wurst_client.events;
public ... | Elviond/Wurst-Client | Wurst Client/src/tk/wurst_client/events/Event.java | Java | mpl-2.0 | 431 |
package fr.esgi.annuel.parser;
import java.io.UnsupportedEncodingException;
import org.json.JSONException;
import org.json.JSONObject;
public class AnswerRequestJsonParser
{
private String displayMessage = null, friendshipStatus = null;
private boolean error;
private int httpCode = 200;
/**
* This class is mad... | Nightmaster/PrivaConv2Peer | src/main/java/fr/esgi/annuel/parser/AnswerRequestJsonParser.java | Java | mpl-2.0 | 1,299 |
package minejava.entity;
public interface SnowGolem extends Golem{} | cFerg/MineJava | src/main/java/minejava/entity/SnowGolem.java | Java | mpl-2.0 | 68 |
package com.nutomic.syncthingandroid.http;
import android.content.Context;
import android.net.Uri;
import android.support.annotation.Nullable;
import com.android.volley.Request;
import com.google.common.base.Optional;
import java.net.URL;
import java.util.Collections;
import java.util.Map;
/**
* Performs a GET req... | wweich/syncthing-android | src/main/java/com/nutomic/syncthingandroid/http/GetRequest.java | Java | mpl-2.0 | 1,422 |
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package org.openhim.mediator.engine.connectors;
import akka.actor.ActorSystem;
import akka.actor.Props;
impor... | jembi/openhim-mediator-engine-java | src/test/java/org/openhim/mediator/engine/connectors/CoreAPIConnectorTest.java | Java | mpl-2.0 | 9,274 |
/*******************************************************************************
* Copyright (c) 2017, 2020 Stichting Yona Foundation This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.or... | yonadev/yona-server | core/src/main/java/nu/yona/server/device/entities/DeviceAnonymized.java | Java | mpl-2.0 | 5,250 |
/**
*
*/
package simulator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import simulator.configurables.ContextConfig.Context;
/**
* City University BSc Computing with Artificial Intelligence Project title:
* Building a TD Simulator for Real-Time Classical Cond... | cal-r/sscctd | src/simulator/Trial.java | Java | mpl-2.0 | 4,924 |
package com.muzima.api.exception;
public class InvalidPersonAddressException extends Exception {
public InvalidPersonAddressException(final String message) {
super(message);
}
public InvalidPersonAddressException(final String message, Throwable e) {
super(message,e);
}
}
| sthaiya/muzima-api | src/main/java/com/muzima/api/exception/InvalidPersonAddressException.java | Java | mpl-2.0 | 306 |
/*
* This project is licensed under the open source MPL V2.
* See https://github.com/openMF/android-client/blob/master/LICENSE.md
*/
package com.mifos.mifosxdroid.dialogfragments.loanchargedialog;
import android.app.Dialog;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.fragment.app... | openMF/android-client | mifosng-android/src/main/java/com/mifos/mifosxdroid/dialogfragments/loanchargedialog/LoanChargeDialogFragment.java | Java | mpl-2.0 | 10,485 |
package org.openlca.olcatdb.database;
import java.sql.ResultSet;
import org.openlca.olcatdb.datatypes.DataSetReference;
import org.openlca.olcatdb.datatypes.LangString;
import org.openlca.olcatdb.ilcd.ILCDDataSetType;
import org.openlca.olcatdb.ilcd.ILCDFlowPropertyValue;
/**
*
* The stored attributes of an ILCD ... | GreenDelta/olca-converter | src/main/java/org/openlca/olcatdb/database/ILCDPropertyRec.java | Java | mpl-2.0 | 3,803 |
/*
* Copyright
* Jean-Marc Seigneur, Carlos Ballester Lafuente, Xavier Titi
* University of Geneva
* 2013 /2014
*
*/
package eu.muses.sim.corporate.policy;
/**
* The Class Group.
*/
public class Group {
/**
* Instantiates a new group.
*
* @param name
* the name
*/
public Group(String na... | jmseigneur/opprim-sim | Muses Sim/src/main/java/eu/muses/sim/corporate/policy/Group.java | Java | agpl-3.0 | 374 |
/*
* Copyright (c) 2002-2006 University of Utah and the Flux Group.
*
* {{{EMULAB-LICENSE
*
* This file is part of the Emulab network testbed software.
*
* This file is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Fr... | nmc-probe/emulab-nome | www/buildui/MagicTextField.java | Java | agpl-3.0 | 3,671 |
/* This file is part of VoltDB.
* Copyright (C) 2008-2013 VoltDB Inc.
*
* 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... | kobronson/cs-voltdb | tests/frontend/org/voltdb/plannodes/TestNestLoopPlanNode.java | Java | agpl-3.0 | 2,003 |
/**
* Copyright (C) 2001-2020 by RapidMiner and the contributors
*
* Complete list of developers available at our web site:
*
* http://rapidminer.com
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by the Free... | rapidminer/rapidminer-studio | src/main/java/com/rapidminer/studio/io/data/internal/file/LocalFileDataSourceFactory.java | Java | agpl-3.0 | 6,456 |
package server;
public class Air extends Thing {
public Air(int X, int Y) {
super(205, false, false, false, true, -1, false, true, true, false, false, false, X, Y);
}
}
| Such1337Hax0r/Umwelten | server/Air.java | Java | agpl-3.0 | 185 |
/**
* Copyright (C) 2009-2014 BIMserver.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
... | opensourceBIM/BIMserver | PluginBase/generated/org/bimserver/models/ifc4/IfcVolumeMeasure.java | Java | agpl-3.0 | 5,703 |
package org.bimserver.geometry;
/******************************************************************************
* Copyright (C) 2009-2019 BIMserver.org
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
*... | opensourceBIM/BIMserver | PluginBase/src/org/bimserver/geometry/Vector3D.java | Java | agpl-3.0 | 1,991 |
/*
* This file is part of ELKI:
* Environment for Developing KDD-Applications Supported by Index-Structures
*
* Copyright (C) 2019
* ELKI Development Team
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the... | elki-project/elki | elki-input/src/main/java/elki/datasource/filter/transform/HistogramJitterFilter.java | Java | agpl-3.0 | 5,225 |
package com.cgi.eoss.ftep.worker.worker;
import com.cgi.eoss.ftep.queues.service.FtepQueueService;
import com.cgi.eoss.ftep.rpc.LocalWorker;
import com.cgi.eoss.ftep.rpc.worker.ContainerStatus;
import com.cgi.eoss.ftep.rpc.worker.DockerImageConfig;
import com.cgi.eoss.ftep.rpc.worker.GetNodesRequest;
import com.cgi.eo... | cgi-eoss/ftep | f-tep-worker/src/main/java/com/cgi/eoss/ftep/worker/worker/FtepWorkerDispatcher.java | Java | agpl-3.0 | 5,837 |
/*
* This file is part of Bisq.
*
* Bisq is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Bisq is distributed in the ... | bisq-network/exchange | desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java | Java | agpl-3.0 | 36,164 |
/**
* Packages for bulk-loading R*-Trees
*/
/*
* This file is part of ELKI:
* Environment for Developing KDD-Applications Supported by Index-Structures
*
* Copyright (C) 2019
* ELKI Development Team
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero... | elki-project/elki | elki-index-rtree/src/main/java/elki/index/tree/spatial/rstarvariants/strategies/bulk/package-info.java | Java | agpl-3.0 | 941 |
/*
* Copyright (C) 2021 Grakn Labs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is ... | graknlabs/grakn | pattern/variable/Variable.java | Java | agpl-3.0 | 3,415 |
/**
* Copyright (C) 2000 - 2013 Silverpeas
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* As a spe... | CecileBONIN/Silverpeas-Core | web-core/src/main/java/com/stratelia/webactiv/util/viewGenerator/html/tabs/TabbedPane.java | Java | agpl-3.0 | 3,826 |
// ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | moskiteau/KalturaGeneratedAPIClientsJava | src/com/kaltura/client/types/KalturaLiveEntryFilter.java | Java | agpl-3.0 | 3,123 |
package com.x.cms.assemble.control.jaxrs.fileinfo;
import com.x.base.core.project.exception.CallbackPromptException;
class ExceptionDocumentNotExistsCallback extends CallbackPromptException {
private static final long serialVersionUID = 1859164370743532895L;
ExceptionDocumentNotExistsCallback( String callbackName... | o2oa/o2oa | o2server/x_cms_assemble_control/src/main/java/com/x/cms/assemble/control/jaxrs/fileinfo/ExceptionDocumentNotExistsCallback.java | Java | agpl-3.0 | 428 |
package DavidScape.io.packets;
import DavidScape.Engine;
import DavidScape.players.Player;
import DavidScape.util.Misc;
public class PlayerOption1 implements Packet {
/**
* Handles the first player option.
*
* @param p The Player which the frame should be handled for.
... | moparisthebest/MoparScape | servers/server508/src/main/java/DavidScape/io/packets/PlayerOption1.java | Java | agpl-3.0 | 2,419 |
/*
* Asqatasun - Automated webpage assessment
* Copyright (C) 2008-2019 Asqatasun.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at y... | dzc34/Asqatasun | rules/rules-rgaa3.2017/src/main/java/org/asqatasun/rules/rgaa32017/Rgaa32017Rule110103.java | Java | agpl-3.0 | 1,522 |
/******************************************************************************
* *
* Copyright: (c) Syncleus, Inc. *
* ... | automenta/java_dann | test/syncleus/dann/graph/search/pathfinding/TestBellmanFordPathFinder.java | Java | agpl-3.0 | 6,231 |
// ----------> GENERATED FILE - DON'T TOUCH! <----------
// generator: ilarkesto.mda.legacy.generator.GwtEntityGenerator
package scrum.client.files;
import java.util.*;
import ilarkesto.core.logging.Log;
import scrum.client.common.*;
import ilarkesto.gwt.client.*;
public abstract class GFile
ex... | MiguelSMendoza/Kunagi | WEB-INF/classes/scrum/client/files/GFile.java | Java | agpl-3.0 | 11,288 |
/*******************************************************************************
* TeleStax, Open Source Cloud Communications
* Copyright 2011-2016, Telestax Inc, Eolos IT Corp and individual contributors
* by the @authors tag.
*
* This program is free software: you can redistribute it and/or modify
* under... | ocarriles/sbc | application/src/main/java/org/restcomm/sbc/chain/impl/ProtocolAdaptProcessor.java | Java | agpl-3.0 | 4,231 |
/**
* Copyright (C) 2000 - 2012 Silverpeas
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* As a spe... | NicolasEYSSERIC/Silverpeas-Core | lib-core/src/main/java/com/silverpeas/form/displayers/TextAreaFieldDisplayer.java | Java | agpl-3.0 | 7,034 |
/*
* The Kuali Financial System, a comprehensive financial management system for higher education.
*
* Copyright 2005-2017 Kuali, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundat... | quikkian-ua-devops/will-financials | kfs-core/src/main/java/org/kuali/kfs/sys/identity/ExclusionRoleTypeServiceBase.java | Java | agpl-3.0 | 8,480 |
/**
* Copyright (c) 2013, Daniel Murphy
* All rights reserved.
* <p>
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice,
* this list of conditi... | automenta/narchy | ui/src/main/java/spacegraph/space2d/phys/dynamics/joints/GearJointDef.java | Java | agpl-3.0 | 2,209 |
package de.retest.recheck.printer;
@FunctionalInterface
public interface Printer<D> {
default String toString( final D difference ) {
return toString( difference, "" );
}
String toString( D difference, final String indent );
}
| retest/recheck | src/main/java/de/retest/recheck/printer/Printer.java | Java | agpl-3.0 | 235 |
package com.paperight.repository;
import java.util.List;
import org.springframework.data.domain.Sort;
import org.springframework.data.jpa.repository.JpaRepository;
import com.paperight.product.ImportItem;
import com.paperight.product.ImportJob;
public interface ImportItemRepository extends JpaRepository<ImportItem... | Paperight/website | server/src/main/java/com/paperight/repository/ImportItemRepository.java | Java | agpl-3.0 | 514 |
/*
* Copyright 2014, Kaazing 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | irina-mitrea-luxoft/k3po | specification/ws/src/test/java/org/kaazing/specification/ws/internal/FunctionsTest.java | Java | agpl-3.0 | 2,014 |
/**
*
*/
/**
* @author marti
*
*/
package com.kraqqen.engine.application; | BackandBlack/Kraqqen3D | src/com/kraqqen/engine/application/package-info.java | Java | agpl-3.0 | 79 |
package nl.wietmazairac.bimql.set.attribute;
/******************************************************************************
* Copyright (C) 2009-2017 BIMserver.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* publish... | opensourceBIM/bimql | BimQL/src/nl/wietmazairac/bimql/set/attribute/SetAttributeSubIfcDistributionChamberElementType.java | Java | agpl-3.0 | 3,307 |
/*****************************************************************************
* Stefans Poker Game *
* *
* Copyright (C) 2016 Stefan Oltmann *
... | StefanOltmann/PokerGame | server/src/main/java/de/stefan_oltmann/poker/server/persistence/DataAccessServiceMapDbImpl.java | Java | agpl-3.0 | 4,766 |
package com.x.organization.assemble.authentication.schedule;
import java.util.Date;
import java.util.List;
import java.util.Map;
import javax.persistence.EntityManager;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria.Predicate;
impo... | o2oa/o2oa | o2server/x_organization_assemble_authentication/src/main/java/com/x/organization/assemble/authentication/schedule/UpdateTokenThresholds.java | Java | agpl-3.0 | 2,241 |
package server;
import java.util.HashMap;
import java.util.Map;
public class MapleShopFactory {
private Map<Integer, MapleShop> shops = new HashMap<Integer, MapleShop>();
private Map<Integer, MapleShop> npcShops = new HashMap<Integer, MapleShop>();
private static MapleShopFactory instance = new MapleShop... | TMS-v113/server | src/server/MapleShopFactory.java | Java | agpl-3.0 | 1,253 |
package mysite.com.dribbbleshow.model.dto;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Images {
@SerializedName("hidpi")
@Expose
private String hidpi;
@SerializedName("normal")
@Expose
private String normal;
@SerializedName("t... | ilyaran/DribbbleShow | app/src/main/java/mysite/com/dribbbleshow/model/dto/Images.java | Java | agpl-3.0 | 978 |
/*-
* [LICENSE]
* Taskboard
* - - -
* Copyright (C) 2015 - 2016 Objective Solutions
* - - -
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* ... | herbert-venancio/taskboard | core/src/main/java/objective/taskboard/jira/ProjectService.java | Java | agpl-3.0 | 7,620 |
// ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | moskiteau/KalturaGeneratedAPIClientsJava | src/main/java/com/kaltura/client/enums/KalturaDeliveryProfileGenericAppleHttpOrderBy.java | Java | agpl-3.0 | 2,653 |
package com.oas.munger.tag;
import javax.servlet.jsp.JspException;
import com.oas.munger.EncoderDecoder;
public class HiddenInputTag extends org.springframework.web.servlet.tags.form.HiddenInputTag {
/**
*
*/
private static final long serialVersionUID = 1L;
@Override
protected String getName() throws JspE... | onlyasurvey/OAS_workspace | tags/1.0.0-SNAPSHOT/OnlyASurvey/OnlyASurveyWeb/src/main/java/com/oas/munger/tag/HiddenInputTag.java | Java | agpl-3.0 | 385 |
package org.osforce.connect.web.security.util;
import org.apache.commons.lang.math.NumberUtils;
import org.osforce.connect.entity.system.Permission;
import org.osforce.connect.entity.system.Project;
import org.osforce.connect.entity.system.ProjectFeature;
import org.osforce.connect.entity.system.User;
import org.osfor... | yanlsino/enterpriseconnect | connect-web/src/main/java/org/osforce/connect/web/security/util/PermissionUtil.java | Java | agpl-3.0 | 1,790 |
package nars.term;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.function.Function;
class ProxyTermTest {
@Disabled
@Test
void testEveryTermMethodProxied() {
Function<Method, String> methodSum... | automenta/narchy | nar/src/test/java/nars/term/ProxyTermTest.java | Java | agpl-3.0 | 859 |
package me.markeh.factionsplus.migrator.fdata.obj;
public class Const {
// Our Basename
public static final String BASENAME = "factionsplus";
public static final String BASENAME_ = BASENAME+"_";
// Where we store our Faction data
public static final String COLLECTION_FACTION = BASENAME_+"faction";
// Where w... | MarkehMe/FactionsPlus | src/me/markeh/factionsplus/migrator/fdata/obj/Const.java | Java | agpl-3.0 | 833 |
/*
* Released as open source by NCC Group Plc - https://www.nccgroup.com/
*
* Developed by Stephen Tomkinson, stephen.tomkinson@nccgroup.com
*
* https://www.github.com/nccgroup/pcap-burp
*
* Licensed under the Affero General Public License
* https://github.com/nccgroup/pcap-burp/LICENSE
*/
package com.nccgr... | liorvh/pcap-burp | src/com/nccgroup/burp/HttpUtils.java | Java | agpl-3.0 | 6,090 |
/*
This file is part of the HeavenMS MapleStory Server
Copyleft (L) 2016 - 2019 RonanLana
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation version 3 as published by
the F... | ronancpl/MapleSolaxiaV2 | src/client/creator/veteran/PirateCreator.java | Java | agpl-3.0 | 3,457 |
package org.brewingagile.backoffice.types;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.util.Objects;
@EqualsAndHashCode
@ToString(includeFieldNames = false)
public final class ParticipantName {
public final String value;
private ParticipantName(String x) {
this.value = Objects.requireNo... | brewingagile/backoffice.brewingagile.org | application/src/main/java/org/brewingagile/backoffice/types/ParticipantName.java | Java | agpl-3.0 | 543 |
/*
* This program is part of the OpenLMIS logistics management information
* system platform software.
*
* Copyright © 2015 ThoughtWorks, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Softwar... | clintonhealthaccess/lmis-moz-mobile | app/src/main/java/org/openlmis/core/network/LMISRestApi.java | Java | agpl-3.0 | 5,409 |
/* This file is part of VoltDB.
* Copyright (C) 2008-2017 VoltDB Inc.
*
* 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... | deerwalk/voltdb | tests/test_apps/exportbenchmark/procedures/exportbenchmark/SampleRecord.java | Java | agpl-3.0 | 7,121 |
/*
* Encog(tm) Core v3.2 - Java Version
* http://www.heatonresearch.com/encog/
* https://github.com/encog/encog-java-core
* Copyright 2008-2013 Heaton Research, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may ... | automenta/java_dann | src/syncleus/dann/evolve/train/basic/BasicEA.java | Java | agpl-3.0 | 22,590 |
/*********************************************************************************
* Ephesoft is a Intelligent Document Capture and Mailroom Automation program
* developed by Ephesoft, Inc. Copyright (C) 2015 Ephesoft Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the term... | ungerik/ephesoft | Ephesoft_Community_Release_4.0.2.0/source/dcma-data-access/src/main/java/com/ephesoft/dcma/da/service/LockStatusService.java | Java | agpl-3.0 | 4,384 |
package com.paperight.email;
import com.paperight.licence.Licence;
import com.paperight.user.User;
public class LicencePurchaseEmail {
private User user;
private Licence licence;
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public Licence getLicence() {... | Paperight/website | common/src/main/java/com/paperight/email/LicencePurchaseEmail.java | Java | agpl-3.0 | 422 |
/**
* Copyright (C) 2001-2017 by RapidMiner and the contributors
*
* Complete list of developers available at our web site:
*
* http://rapidminer.com
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by ... | cm-is-dog/rapidminer-studio-core | src/main/java/com/rapidminer/test_utils/Asserter.java | Java | agpl-3.0 | 1,337 |
/* ================================================================
* Copyright (c) 2000-2003 CollabNet. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* 1. Redistributions of source ... | stefandtw/feedthecat | noodle/src/java/org/tigris/noodle/NoodleData.java | Java | agpl-3.0 | 19,636 |
package com.developer.lovestars.adapter;
import java.util.List;
import com.android.volley.RequestQueue;
import com.android.volley.toolbox.ImageLoader;
import com.android.volley.toolbox.NetworkImageView;
import com.android.volley.toolbox.Volley;
import com.developer.lovestars.R;
import com.developer.lovestars.bean.New... | lihao2011/LoveStars | src/com/developer/lovestars/adapter/NewsAdapter.java | Java | agpl-3.0 | 2,497 |
package com.neverwinterdp.server.gateway;
import static org.junit.Assert.*;
import org.junit.Test;
public class CommandParserUnitTest {
@Test
public void test() {
String cmdLine = "server ping --member-name generic -Pproperty=\"this is a test\" --unkown \"unknown command string\" mainParam" ;
Command par... | DemandCube/NeverwinterDP-Commons | cluster/src/test/java/com/neverwinterdp/server/gateway/CommandParserUnitTest.java | Java | agpl-3.0 | 715 |
/**
* Copyright (C) 2001-2017 by RapidMiner and the contributors
*
* Complete list of developers available at our web site:
*
* http://rapidminer.com
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU Affero General Public License as published by the... | cm-is-dog/rapidminer-studio-core | src/main/java/com/rapidminer/operator/clustering/clusterer/FastKMeans.java | Java | agpl-3.0 | 12,553 |
package ch.sportchef.server.license;
import ch.sportchef.server.utils.ServiceRegistry;
import com.codahale.metrics.annotation.Timed;
import javax.management.ServiceNotFoundException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.core.Response;
import java.io.IOException;
@Path("license")
public... | jounnie/sportchef | src/main/java/ch/sportchef/server/license/LicenseResource.java | Java | agpl-3.0 | 737 |
/*
* Axelor Business Solutions
*
* Copyright (C) 2005-2019 Axelor (<http://axelor.com>).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distri... | axelor/axelor-development-kit | axelor-core/src/main/java/com/axelor/meta/schema/views/SimpleContainer.java | Java | agpl-3.0 | 2,337 |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package jurls.reinforcementlearning.domains;
import javax.swing.*;
import java.awt.*;
/**
* Reinforcement Learning interface
* @aut... | automenta/narchy | lab/src/main/java/jurls/reinforcementlearning/domains/RLEnvironment.java | Java | agpl-3.0 | 1,215 |
/*
* Copyright (C) 2000 - 2013 Silverpeas
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* As a spec... | CecileBONIN/Silverpeas-Core | web-core/src/main/java/org/silverpeas/notification/web/MessageResource.java | Java | agpl-3.0 | 3,550 |
/*
* The Kuali Financial System, a comprehensive financial management system for higher education.
*
* Copyright 2005-2014 The Kuali Foundation
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Fre... | ua-eas/ua-kfs-5.3 | work/src/org/kuali/kfs/vnd/businessobject/options/ShippingPaymentTermsValuesFinder.java | Java | agpl-3.0 | 2,189 |