repo_name
stringlengths
4
116
path
stringlengths
4
379
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
flux-framework/flux-core
src/cmd/flux-pstree.py
14352
############################################################## # Copyright 2021 Lawrence Livermore National Security, LLC # (c.f. AUTHORS, NOTICE.LLNS, COPYING) # # This file is part of the Flux resource manager framework. # For details, see https://github.com/flux-framework. # # SPDX-License-Identifier: LGPL-3.0 #####...
lgpl-3.0
lorddex/unibopoly
python_kp/smart_m3/m3_kp.py
69567
from StringIO import StringIO from xml.sax import saxutils from xml.sax import make_parser from xml.sax.handler import ContentHandler from collections import deque import threading import socket import uuid import discovery from xml.dom.minidom import parseString import urllib # SSAP Constants M3_SUCCESS = 'm3:Success...
lgpl-3.0
neeil1990/almamed
wa-apps/shop/plugins/seofilter/lib/classes/wa/shopSeofilterProductsCollection.class.php
2461
<?php class shopSeofilterProductsCollection extends shopProductsCollection { public function getPriceRange() { $skus_table_alias = null; foreach ($this->joins as $join) { if ($join['table'] == 'shop_product_skus') { $skus_table_alias = $join['alias']; break; } } if ($skus_table_alias =...
lgpl-3.0
arucard21/SimplyRESTful
examples/jetty-cxf/src/main/java/example/jetty/resources/ExampleResourceDAO.java
6317
package example.jetty.resources; import java.net.URI; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.UUID; import java.util.stream.Collectors; import javax.ws.rs.BadRequestException; import javax.ws.rs.core.UriBuilder; import org.apache.cxf.jaxrs.ext.search.SearchCondition; i...
lgpl-3.0
Rocky-Software/Rocky
src/pocketmine/network/mcpe/protocol/AddPaintingPacket.php
1416
<?php /* * * ____ _ _ __ __ _ __ __ ____ * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \ * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) | * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/ * |_| \___/ \___...
lgpl-3.0
ktoso/git-commit-id-debugging
src/main/java/pl/project13/maven/git/GitDataProvider.java
6342
package pl.project13.maven.git; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.project.MavenProject; import java.io.IOException; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.*; import p...
lgpl-3.0
Godin/sonar
server/sonar-web/src/main/js/apps/projectKey/Key.tsx
2134
/* * SonarQube * Copyright (C) 2009-2019 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
lgpl-3.0
racodond/sonar-gherkin-plugin
gherkin-checks/src/main/java/org/sonar/gherkin/checks/BOMCheck.java
2019
/* * SonarQube Cucumber Gherkin Analyzer * Copyright (C) 2016-2017 David RACODON * david.racodon@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of ...
lgpl-3.0
android-plugin/uexMultiDownloader
src/org/zywx/wbpalmstar/plugin/uexmultidownloader/entities/DLInfo.java
493
package org.zywx.wbpalmstar.plugin.uexmultidownloader.entities; import java.io.File; import java.io.Serializable; /** * 下载实体类 * Download entity. * * @author AigeStudio 2015-05-16 */ public class DLInfo implements Serializable { public File dlLocalFile; public String baseUrl, realUrl; public DLInfo(F...
lgpl-3.0
jjc616/jsprit
jsprit-examples/src/main/java/jsprit/examples/CircleExample.java
4154
/******************************************************************************* * Copyright (C) 2014 Stefan Schroeder * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * ve...
lgpl-3.0
Bartlebys/BartlebyServer
Commons/EndPoints/Export.php
2346
<?php /** * Created by PhpStorm. * User: bpds * Date: 08/07/2016 * Time: 09:31 */ namespace Bartleby\EndPoints; require_once BARTLEBY_ROOT_FOLDER . 'Mongo/MongoEndPoint.php'; require_once BARTLEBY_ROOT_FOLDER . 'Mongo/MongoCallDataRawWrapper.php'; use Bartleby\Core\JsonResponse; use Bartleby\mongo\MongoCallData...
lgpl-3.0
defus/daf-architcture
commons/src/main/java/cm/gov/daf/sif/titrefoncier/model/Departements.java
1132
/* /* * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
lgpl-3.0
beangle/beanfuse
beanfuse-db/src/main/java/org/beanfuse/db/sequence/SequenceNamePattern.java
123
package org.beanfuse.db.sequence; public interface SequenceNamePattern { public String getTableName(String seqName); }
lgpl-3.0
kvahed/codeare
src/matrix/arithmetic/t_isnan.cpp
624
#include "Trigonometry.hpp" #include "Algos.hpp" #include "Creators.hpp" #include "Print.hpp" template<class T> void isnan_check () { using namespace codeare::matrix::arithmetic; Matrix<T> rhs (3,2); Matrix<cbool> lhs; lhs = isnan(rhs); #ifdef VERBOSE std::cout << "size(A)=\n" << lhs << std:...
lgpl-3.0
wwqwwqwd/w
infra/BasicThing.cpp
351
#include "BasicThing.h" BasicThing::~BasicThing() {} long BasicThing::bind() { return ++_ref; } long BasicThing::release() { long r = --_ref; if (!r) delete this; return r; } long BasicThing::mutate(long iid, void **ppTarget) { if (iid == IID) { *ppTarget = static_cast<IThing *>(this); return...
lgpl-3.0
kingjiang/SharpDevelopLite
src/Libraries/NRefactory/Project/Src/Visitors/VBNetConstructsConvertVisitor.cs
22509
// <file> // <copyright see="prj:///doc/copyright.txt"/> // <license see="prj:///doc/license.txt"/> // <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/> // <version>$Revision$</version> // </file> using ICSharpCode.NRefactory.AstBuilder; using System; using System.Collections.Generic; u...
lgpl-3.0
jasonly17/Frequency_Spectrum_Analyzer
Frequency_Spectrum_Analyzer/audioengine.cpp
4034
#include "audioengine.h" #include <QDebug> #include <QFile> #include <QObject> #include <QTimer> #include "def.h" #include "frequencyspectrum.h" /****************************************************************************** * AudioEngine ******************************************************************************/...
lgpl-3.0
Stephen-Ross/SharpFilters
SharpFilters.Tests/Properties/AssemblyInfo.cs
1475
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("S...
lgpl-3.0
mhogrefe/malachite
malachite-base/tests/num/float/basic/to_ordered_representation.rs
3848
use malachite_base::num::basic::floats::PrimitiveFloat; use malachite_base::num::float::NiceFloat; use malachite_base_test_util::generators::{ primitive_float_gen_var_11, primitive_float_pair_gen_var_1, }; use std::panic::catch_unwind; #[allow(clippy::approx_constant)] #[test] pub fn test_to_ordered_representation...
lgpl-3.0
seanbright/ari4java
classes/ch/loway/oss/ari4java/generated/ari_1_9_0/models/ChannelHold_impl_ari_1_9_0.java
1446
package ch.loway.oss.ari4java.generated.ari_1_9_0.models; // ---------------------------------------------------- // THIS CLASS WAS GENERATED AUTOMATICALLY // PLEASE DO NOT EDIT // Generated on: Sat Jan 30 13:39:05 CET 2016 // -----------------------------------------...
lgpl-3.0
beangle/cdi
spring/src/main/scala/org/beangle/cdi/spring/config/ReconfigParser.scala
17956
/* * Copyright (C) 2005, The Beangle Software. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This...
lgpl-3.0
pcolby/libqtaws
src/lightsail/stoprelationaldatabaserequest.cpp
4434
/* Copyright 2013-2021 Paul Colby This file is part of QtAws. QtAws is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later v...
lgpl-3.0
Builders-SonarSource/sonarqube-bis
sonar-scanner-engine/src/main/java/org/sonar/scanner/issue/ignore/pattern/IssuePattern.java
4488
/* * SonarQube * Copyright (C) 2009-2016 SonarSource SA * mailto:contact AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License...
lgpl-3.0
catedrasaes-umu/emf4cpp
emf4cpp.tests/xpand/xpand3/declaration/Extension.cpp
4868
// -*- mode: c++; c-basic-style: "bsd"; c-basic-offset: 4; -*- /* * xpand3/declaration/Extension.cpp * Copyright (C) Cátedra SAES-UMU 2010 <andres.senac@um.es> * Copyright (C) INCHRON GmbH 2016 <soeren.henning@inchron.com> * * EMF4CPP is free software: you can redistribute it and/or modify it * under the terms of...
lgpl-3.0
ikoryakovskiy/grl
base/src/environments/modeled.cpp
7875
/** \file modeled.cpp * \brief Modeled environment and dynamical model source file. * * \author Wouter Caarls <wouter@caarls.org> * \date 2015-01-22 * * \copyright \verbatim * Copyright (c) 2015, Wouter Caarls * All rights reserved. * * This file is part of GRL, the Generic Reinforcement Learning libr...
lgpl-3.0
Mindtoeye/Hoop
src/edu/cmu/cs/in/hoop/project/HoopStopWords.java
1607
/** * Author: Martin van Velsen <vvelsen@cs.cmu.edu> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later versi...
lgpl-3.0
mosser/ArduinoML-kernel
externals/xtext/fr.polytech.si5.dsl.arduino/src-gen/fr/polytech/si5/dsl/arduino/arduinoML/Transition.java
3033
/** * generated by Xtext 2.23.0 */ package fr.polytech.si5.dsl.arduino.arduinoML; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Transition</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * ...
lgpl-3.0
FauxFaux/fixbugs
src/main/java/fixbugs/core/ir/ASTPatternMatcher.scala
16001
/** * * This file is part of Fixbugs. * * Fixbugs is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Fixbugs is dis...
lgpl-3.0
pcolby/libqtaws
src/ssm/describeavailablepatchesrequest.cpp
5380
/* Copyright 2013-2021 Paul Colby This file is part of QtAws. QtAws is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later v...
lgpl-3.0
Redpill-Linpro/alfresco-user-migration-admintool
share/src/main/resources/alfresco/site-webscripts/org/redpill_linpro/components/console/usersgroups/replace-user.get.js
169
function main() { // Widget instantiation metadata... var widget = { id : "ReplaceUser", name : "RPL.ReplaceUser" }; model.widgets = [widget]; } main();
lgpl-3.0
impetus-opensource/jumbune
web/src/main/java/org/jumbune/web/process/SystemMetricsProcess.java
2897
package org.jumbune.web.process; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.jumbune.common.beans.cluster.Cluster; import com.google.gson.Gson; import org.jumb...
lgpl-3.0
Godin/sonar
server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/version/v67/CreateTableAnalysisProperties.java
3333
/* * SonarQube * Copyright (C) 2009-2019 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
lgpl-3.0
kappamodeler/jkappa
src/test/acceptance/com/plectix/simulator/events/TestEvents.java
2788
package com.plectix.simulator.events; import static org.junit.Assert.assertTrue; import java.io.File; import java.util.Collection; import org.apache.commons.cli.ParseException; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Param...
lgpl-3.0
horazont/aioxmpp
examples/list_presence.py
2996
######################################################################## # File name: list_presence.py # This file is part of: aioxmpp # # LICENSE # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as # published by the Free Software Fo...
lgpl-3.0
advanced-online-marketing/AOM
vendor/googleads/googleads-php-lib/src/Google/AdsApi/Dfp/v201802/SuggestedAdUnitAction.php
204
<?php namespace Google\AdsApi\Dfp\v201802; /** * This file was generated from WSDL. DO NOT EDIT. */ abstract class SuggestedAdUnitAction { public function __construct() { } }
lgpl-3.0
Alfresco/alfresco-repository
src/test/java/org/alfresco/repo/rule/RuleServiceCoverageTest.java
93296
/* * #%L * Alfresco Repository * %% * Copyright (C) 2005 - 2016 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of * the paid license agreement will prevail. Otherwise, the software is * provided ...
lgpl-3.0
premium-minds/billy
billy-portugal/src/test/java/com/premiumminds/billy/portugal/test/services/documents/PTDocumentAbstractTest.java
4308
/* * Copyright (C) 2017 Premium Minds. * * This file is part of billy portugal (PT Pack). * * billy portugal (PT Pack) is free software: you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the Lice...
lgpl-3.0
MesquiteProject/MesquiteCore
Source/mesquite/lib/ColorPickerPanel.java
8039
/* Mesquite source code. Copyright 1997 and onward, W. Maddison and D. Maddison. Disclaimer: The Mesquite source code is lengthy and we are few. There are no doubt inefficiencies and goofs in this code. The commenting leaves much to be desired. Please approach this source code with the spirit of helping out. Per...
lgpl-3.0
barmalei/primus
lib/primus/test/testmysql.py
1858
#!/usr/bin/env python # # # Copyright 2009 Andrei <vish@gravitysoft.org> # # 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 2 of the License, ...
lgpl-3.0
F1r3w477/CustomWorldGen
build/tmp/recompileMc/sources/net/minecraft/util/math/BlockPos.java
18030
package net.minecraft.util.math; import com.google.common.collect.AbstractIterator; import com.google.common.collect.Lists; import java.util.Iterator; import java.util.List; import javax.annotation.concurrent.Immutable; import net.minecraft.entity.Entity; import net.minecraft.util.EnumFacing; import net.minecraftforge...
lgpl-3.0
jbzdak/query-builder
sql-builder-xml-binidings/src/main/java/cx/ath/jbzdak/sqlbuilder/xml/parameter/package-info.java
1218
/* * Copyright (c) 2011 for Jacek Bzdak * * This file is part of query builder. * * Query builder is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your o...
lgpl-3.0
dnacreative/records-management
rm-server/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/classification/interceptor/RecordBrowseClassificationEnforcementTest.java
13408
/* * Copyright (C) 2005-2015 Alfresco Software Limited. * * This file is part of Alfresco * * Alfresco is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at y...
lgpl-3.0
HyenaSoftware/IG-Dictionary
OldNorseGrammarEngine/src/test/scala/com/hyenawarrior/SoundexTest.scala
3952
package com.hyenawarrior import com.hyenawarrior.OldNorseGrammar.grammar.soundex.soundexCodeOf import org.junit.Assert.assertEquals import org.junit.Test /** * Created by HyenaWarrior on 2017.06.21.. */ class SoundexTest { // countOf(soundexKeys) * 5 <= counfOf(formsOfOneWord) val MAXIMUM_ALLOWED_KEY_DIVERSITY = ...
lgpl-3.0
WarpOrganization/warp
audio/src/main/java/net/warpgame/engine/audio/command/source/PlaySourceCommand.java
722
package net.warpgame.engine.audio.command.source; import net.warpgame.engine.audio.AudioContext; import net.warpgame.engine.audio.AudioSourceProperty; import net.warpgame.engine.audio.command.Command; import java.util.List; import static org.lwjgl.openal.AL10.*; public class PlaySourceCommand implements Command { ...
lgpl-3.0
armatys/hypergraphdb-android
hgdb-android/java/src/org/hypergraphdb/cache/PhantomRefAtomCache.java
11207
/* * This file is part of the HyperGraphDB source distribution. This is copyrighted * software. For permitted uses, licensing options and redistribution, please see * the LicensingInformation file at the root level of the distribution. * * Copyright (c) 2005-2010 Kobrix Software, Inc. All rights reserved. ...
lgpl-3.0
gubi/AIRS
common/include/lib/bbb-api-php/legacy/demo4_helper.php
945
<? /* BigBlueButton - http://www.bigbluebutton.org Copyright (c) 2008-2009 by respective authors (see below). All rights reserved. BigBlueButton is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either vers...
lgpl-3.0
matyasb/phing
test/classes/phing/tasks/system/BlockForTaskTest.php
1661
<?php /* * $Id$ * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CO...
lgpl-3.0
Wohlstand/libOPNMIDI
src/opnmidi_ptr.hpp
4835
/* * libOPNMIDI is a free Software MIDI synthesizer library with OPN2 (YM2612) emulation * * MIDI parser and player (Original code from ADLMIDI): Copyright (c) 2010-2014 Joel Yliluoma <bisqwit@iki.fi> * ADLMIDI Library API: Copyright (c) 2015-2021 Vitaly Novichkov <admin@wohlnet.ru> * * Library is based on the ...
lgpl-3.0
netide/WinFormsIsolation
Demo/DemoControlHost.cs
1244
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using WinFormsIsolation.Isolation; namespace WinFormsIsolation.Demo { public class DemoControlHost : IsolationHost { [DesignerSerializationVisibility(DesignerSerializationVisib...
lgpl-3.0
MagiciansArtificeTeam/Magicians-Artifice
src/main/java/magiciansartifice/main/items/tools/ItemDarkestBook.java
1246
package magiciansartifice.main.items.tools; import magiciansartifice.main.MagiciansArtifice; import magiciansartifice.main.core.client.guis.GuiHandler; import magiciansartifice.main.core.libs.ModInfo; import magiciansartifice.main.core.utils.registries.ItemRegistry; import net.minecraft.entity.player.EntityPlayer; imp...
lgpl-3.0
terge/crab-social
crab-base/src/test/java/vip/xioix/crabbase/ExampleUnitTest.java
396
package vip.xioix.crabbase; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void add...
lgpl-3.0
Dschinghis-Kahn/eveapi
api/net/dschinghiskahn/eveapi/eve/characterinfo/EmploymentHistory.java
1118
package net.dschinghiskahn.eveapi.eve.characterinfo; import java.util.Date; import org.simpleframework.xml.Attribute; import org.simpleframework.xml.Root; @Root(name = "row") public class EmploymentHistory { @Attribute(name = "corporationID", required = false) private Long corporationId; @Attribute(req...
lgpl-3.0
mikrosimage/rez
src/rez/packages_.py
20811
from rez.package_repository import package_repository_manager from rez.package_resources_ import PackageFamilyResource, PackageResource, \ VariantResource, package_family_schema, package_schema, variant_schema, \ package_release_keys from rez.package_serialise import dump_package_data from rez.utils.data_utils ...
lgpl-3.0
yshmarov/myclass101
app/models/fiscal_period.rb
425
class FiscalPeriod < ActiveRecord::Base belongs_to :product belongs_to :event_group has_many :events, dependent: :destroy validates :event_group_id, presence: true validates :product_id, presence: true has_many :attendances, through: :events has_many :guests, through: :attendances accepts_nested_attribu...
lgpl-3.0
ravep/ponfig
src/main/java/com/unit16/r/onion/util/SimulationClock.java
1269
package com.unit16.r.onion.util; import java.util.ArrayList; import java.util.concurrent.TimeUnit; import org.joda.time.DateTime; import com.unit16.common.logback.MicrosConverter; import com.unit16.r.onion.Component; import com.unit16.r.onion.Ring; public class SimulationClock extends Clock implements Yield { ...
lgpl-3.0
moetang-arch/nekoq
service/mq/model.topic.go
4385
package mq import ( "sync" ) type Topic struct { topicID IdType deliveryLevel DeliveryLevelType queueList []*Queue queueMap map[IdType][]*Queue basicLock sync.Mutex topicInternalId int32 topicMessageIdGen *IdGen broker *Broker } type TopicOption struct { DeliveryLevel DeliveryLevelType } func ...
lgpl-3.0
Jaspersoft/js-android-sdk
core/src/main/java/com/jaspersoft/android/sdk/service/report/ReportOptionsMapper5_6Plus.java
1326
/* * Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved. * http://community.jaspersoft.com/project/mobile-sdk-android * * Unless you have purchased a commercial license agreement from TIBCO Jaspersoft, * the following license terms apply: * * This program is part of TIBCO Jaspersoft Mobile SDK ...
lgpl-3.0
advanced-online-marketing/AOM
vendor/facebook/php-business-sdk/src/FacebookAds/Object/LeadgenForm.php
5298
<?php /** * Copyright (c) 2015-present, Facebook, Inc. All rights reserved. * * You are hereby granted a non-exclusive, worldwide, royalty-free license to * use, copy, modify, and distribute this software in source code or binary * form for use in connection with the web services and APIs provided by * Facebook. ...
lgpl-3.0
islog/liblogicalaccess
plugins/logicalaccess/plugins/readers/stidprg/readercardadapters/stidprgbufferparser.hpp
381
#pragma once #include <logicalaccess/readerproviders/circularbufferparser.hpp> #include <logicalaccess/plugins/readers/stidprg/lla_readers_stidprg_api.hpp> namespace logicalaccess { class LLA_READERS_STIDPRG_API STidPRGBufferParser : public CircularBufferParser { public: ByteVector getValidBuffer(boost::ci...
lgpl-3.0
saertisru/code_expl
src/main/java/DAO/PersonDAO.java
649
package DAO; import Entity.Person; import org.hibernate.Session; import org.hibernate.cfg.AnnotationConfiguration; import utils.HibernateUtil; import java.util.List; /** * Created with IntelliJ IDEA. * User: shushkov * Date: 02.12.14 * Time: 10:13 * To change this template use File | Settings | File Templates. ...
lgpl-3.0
syakuis/php-mei-bak
modules/install/_globals.php
675
<?php if (!defined("__SYAKU__")) exit; ?> <?php $GV['_INSTALL_']['MODULE'] = 'install'; $GV['_INSTALL_']['TITLE'] = '설치'; $GV['_INSTALL_']['BRIEF'] = ''; $GV['_INSTALL_']['SINGLE'] = true; $GV['_INSTALL_']['MODULE_PATH'] = _MODULES_PATH_ . '/' . $GV['_INSTALL_']['MODULE']; $GV['_INSTALL_']['MODULE_R_PATH'] = _...
lgpl-3.0
CarlBarr/Simulador-2D
simulador/Funcion_Arcocoseno.java
1034
package simulador; public class Funcion_Arcocoseno extends Funcion { public Funcion_Arcocoseno() { super("arcocoseno"); } public TiposDeDatos ejecutar(Objeto objetoOrigen, TiposDeDatos datos[]) { Mensaje.imprimir("Ejecutando la función " + this.obtenerNombre(), Mensaje.TRAZA); if(datos.length != 1) { ...
lgpl-3.0
MxSIG/TableAliasV60
TableAliasV60/src/main/java/tablealias/xmlaccess/AliasDataConfigReader.java
1526
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package tablealias.xmlaccess; import java.io.File; import java.util.ArrayList; import java.util.List; import org.w3c.dom.Element; import org.w3c.dom.NodeList; import tablealias.xmldata.Document; /** * * @author INEG...
lgpl-3.0
kveratis/GameCode4
Source/GCC4/3rdParty/luaplus51-all/Src/Modules/cgilua/examples/cgilua/config.lua
1134
-- CGILua user configuration file -- $Id: config.lua,v 1.1 2008/06/30 14:30:00 carregal Exp $ -- Looks for a Lua script in the web directory with the same name as -- the executable -- Useful for shorter URLs, just be careful with an eventual name clashing -- when using this option -- cgilua.use_executable_name ...
lgpl-3.0
nos3/aimeos-core
lib/mwlib/src/MW/Setup/DBSchema/Pgsql.php
5732
<?php /** * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0 * @copyright Aimeos (aimeos.org), 2016 * @package MW * @subpackage Setup */ namespace Aimeos\MW\Setup\DBSchema; /** * Implements querying the PostgreSQL database * * @package MW * @subpackage Setup */ class Pgsql extends \Aimeos\MW\Setu...
lgpl-3.0
qrooel/madison_square
design/_js_panel/core/init.js
996
var aoQuickAccessPossibilites; $(document).ready(function() { $.datepicker.regional['pl'] = GFormDate.Language; $.datepicker.setDefaults($.datepicker.regional['pl']); $('.block').GBlock(); $('.box').GBox(); $('select').GSelect(); $('#message-bar').GMessageBar(); if (aoQuickAccessPossibilites...
lgpl-3.0
matecat/MateCat
public/js/cat_source/es6/api/getGlossaryForSegment/index.js
40
export * from './getGlossaryForSegment'
lgpl-3.0
FabriceSalvaire/sphinx-microdata
setup.py
1052
# -*- coding: utf-8 -*- from setuptools import setup, find_packages requires = ['Sphinx>=0.6'] setup( name='sphinxcontrib-microdata', version='0.1', url='http://bitbucket.org/birkenfeld/sphinx-contrib', download_url='http://pypi.python.org/pypi/sphinxcontrib-microdata', license='LGPL v3', aut...
lgpl-3.0
oleneveu/SharpKit-SDK
Defs/Html/generated/svg/SVGFEMergeNodeElement.cs
3249
/******************************************************************************************************* This file was auto generated with the tool "WebIDLParser" Content was generated from IDL file: http://trac.webkit.org/browser/trunk/Source/WebCore/svg/SVGFEMergeNodeElement.idl PLEASE DO *NOT* MODIFY THI...
lgpl-3.0
SonarSource/sonarqube
server/sonar-webserver-webapi/src/main/java/org/sonar/server/almintegration/ws/gitlab/SearchGitlabReposAction.java
8445
/* * SonarQube * Copyright (C) 2009-2022 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
lgpl-3.0
virtudraft/bbbx
core/components/bbbx/model/bbbx/mysql/bbbxmeetingsusergroups.map.inc.php
1968
<?php $xpdo_meta_map['bbbxMeetingsUsergroups']= array ( 'package' => 'bbbx', 'version' => '1.1', 'table' => 'meetings_usergroups', 'extends' => 'xPDOSimpleObject', 'fields' => array ( 'meeting_id' => NULL, 'usergroup_id' => NULL, 'enroll' => 'viewer', 'started_on' => NULL, 'ended_on' =>...
lgpl-3.0
luigigenovese/libconv
DSL/lib/libconv/system.rb
4249
module LibConv class OrderedTransitions def self.inverse( tr ) if tr == :shrink :grow elsif tr == :grow :shrink else tr end end def initialize(*args) @tr = args.last @states = args[0..-2] @transitions = Hash::new { |hash, key| hash[key] ...
lgpl-3.0
cismet/wss-bean
src/main/java/net/environmatics/acs/accessor/Payload.java
2895
/*************************************************** * * cismet GmbH, Saarbruecken, Germany * * ... and it just works. * ****************************************************/ package net.environmatics.acs.accessor; import org.apache.commons.io.IOUtils; import org.apache.log4j.Logger; import java.io.Buffe...
lgpl-3.0
PU-Crypto/ElGamal
ElGamal.py
7598
import sys import math from decimal import Decimal import decimal import random import KeyGen as KeyGen import UTF8_Convert as UTF8 import json decimal.getcontext().prec = 1000 # es wird alles benoetigte improtiert und die Praezision der Decimals festgestellt, welche nicht zu gering sein sollte. #Curve25519: y^2=x^3+48...
lgpl-3.0
geekprojects/b0rk
src/libb0rk/executor.cpp
39466
/* * b0rk - The b0rk Embeddable Runtime Environment * Copyright (C) 2015, 2016 GeekProjects.com * * This file is part of b0rk. * * b0rk is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, eith...
lgpl-3.0
pcolby/libqtaws
src/opsworks/describetimebasedautoscalingrequest.cpp
6871
/* Copyright 2013-2021 Paul Colby This file is part of QtAws. QtAws is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later v...
lgpl-3.0
nitely/ochDownloader
plugins/jumbofiles_com/anonym_download.py
1013
#python libs import logging logger = logging.getLogger(__name__) #Libs from core.plugin.base import PluginBase BASE_URL = "http://jumbofiles.com" class PluginDownload(PluginBase): def parse(self): link = self.link file_id = self.link.split('jumbofiles.com/')[-1].split('/')[0] form = [("o...
lgpl-3.0
Borisbee1/Kopernicus
Kopernicus/Kopernicus/Configuration/ModLoader/HeightColorMap.cs
7614
/** * Kopernicus Planetary System Modifier * ==================================== * Created by: BryceSchroeder and Teknoman117 (aka. Nathaniel R. Lewis) * Maintained by: Thomas P., NathanKell and KillAshley * Additional Content by: Gravitasi, aftokino, KCreator, Padishar, Kragrathea, OvenProofMars, zengei, MrHapp...
lgpl-3.0
pcolby/libqtaws
src/iot/deletepolicyversionrequest.cpp
4338
/* Copyright 2013-2021 Paul Colby This file is part of QtAws. QtAws is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later v...
lgpl-3.0
garyd203/flying-circus
src/flyingcircus/_raw/ssm.py
8231
"""Raw representations of every data type in the AWS SSM service. See Also: `AWS developer guide for SSM <https://docs.aws.amazon.com/systems-manager/latest/APIReference/Welcome.html>`_ This file is automatically generated, and should not be directly edited. """ from attr import attrib from attr import attrs...
lgpl-3.0
SonarOpenCommunity/sonar-cxx
cxx-squid-bridge/src/test/java/org/sonar/cxx/squidbridge/checks/AbstractParseErrorCheckTest.java
1688
/* * C++ Community Plugin (cxx plugin) * Copyright (C) 2021 SonarOpenCommunity * http://github.com/SonarOpenCommunity/sonar-cxx * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; ei...
lgpl-3.0
impetus-opensource/jumbune
remoting/src/main/java/org/jumbune/remoting/client/Remoter.java
3890
package org.jumbune.remoting.client; import org.jumbune.remoting.common.command.CommandWritable; /** * The Class Remoter. */ public interface Remoter { /** * client side api to send jar files to the jumbune-agent {server}. * * @param destinationRelativePath , Relative Destination Directory on JumbuneAgent. ...
lgpl-3.0
joansmith/sonarqube
sonar-batch/src/test/java/org/sonar/batch/scan/filesystem/ExclusionFiltersTest.java
5975
/* * SonarQube * Copyright (C) 2009-2016 SonarSource SA * mailto:contact AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License...
lgpl-3.0
bullda/DroidText
src/bouncycastle/repack/org/bouncycastle/asn1/crmf/EncryptedValue.java
5064
package repack.org.bouncycastle.asn1.crmf; import repack.org.bouncycastle.asn1.ASN1Encodable; import repack.org.bouncycastle.asn1.ASN1EncodableVector; import repack.org.bouncycastle.asn1.ASN1OctetString; import repack.org.bouncycastle.asn1.ASN1Sequence; import repack.org.bouncycastle.asn1.ASN1TaggedObject; import repa...
lgpl-3.0
weepingtown/utils
test/stdafx.cpp
201
// stdafx.cpp : Ö»°üÀ¨±ê×¼°üº¬ÎļþµÄÔ´Îļþ // test.pch ½«×÷ΪԤ±àÒëÍ· // stdafx.obj ½«°üº¬Ô¤±àÒëÀàÐÍÐÅÏ¢ #include "stdafx.h" // TODO: ÔÚ STDAFX.H ÖÐÒýÓÃÈκÎËùÐèµÄ¸½¼ÓÍ·Îļþ£¬ //¶ø²»ÊÇÔÚ´ËÎļþÖÐÒýÓÃ
lgpl-3.0
EndrII/Space_engine
SpaceEngine/GameObjects/EGameResurs.cpp
2116
#include "EGameResurs.h" EGameResurs::EGameResurs(const QString &Patch,EResursePack *pack){ READ_THIS(Patch) pack_=pack; class_=E_GAME_RESURS; } EGameResurs::EGameResurs(EObject *copy, EResursePack *pack): EObject() { this->copy(copy); QString patch=Objectpatch; pack_=pack; if(patch.mid...
lgpl-3.0
demoiselle/mail
impl/src/main/java/br/gov/frameworkdemoiselle/mail/internal/implementation/FileAttachment.java
3250
/* * Demoiselle Framework * Copyright (C) 2010 SERPRO * ---------------------------------------------------------------------------- * This file is part of Demoiselle Framework. * * Demoiselle Framework is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General...
lgpl-3.0
lazarcon/J_CPU_Simulation
CPU-Simulation/src/main/java/ch/zhaw/lazari/cpu/impl/utils/BooleanArrayUtils.java
3877
/* * File: BooleanArrayUtils.java * Date: Oct 22, 2013 * * Copyright 2013 Constantin Lazari. All rights reserved. * * Unless required by applicable law or agreed to in writing, this software * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. */ ...
lgpl-3.0
intrications/MaterialAudiobookPlayer
audiobook/src/main/java/de/ph1b/audiobook/activity/FolderOverviewActivity.java
12828
package de.ph1b.audiobook.activity; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.content.Intent; import android.graphics.Point; import android.os.Build; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.v7.app.ActionBar; ...
lgpl-3.0
mapacheL/extensions
Signum.Entities.Extensions/Omnibox/EntityOmniboxResultGenerator.cs
5740
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Signum.Utilities; using Signum.Entities.Reflection; using System.Text.RegularExpressions; using Newtonsoft.Json; namespace Signum.Entities.Omnibox { public class EntityOmniboxResultGenenerator : OmniboxResultGen...
lgpl-3.0
zenframework/z8
org.zenframework.z8.server/src/main/java/org/zenframework/z8/server/base/table/system/ScheduledJobs.java
7440
package org.zenframework.z8.server.base.table.system; import org.zenframework.z8.server.base.job.scheduler.Scheduler; import org.zenframework.z8.server.base.table.Table; import org.zenframework.z8.server.base.table.value.BoolField; import org.zenframework.z8.server.base.table.value.DatetimeField; import org.zenf...
lgpl-3.0
travishathaway/canopy-story
resources/views/user/profile.blade.php
771
@extends('layouts.app') @section('content') <div class="row"> <div class="ml-auto col-sm-12 col-lg-6 mr-auto"> <h1 class="mt-4">@lang('site.profile')</h1> <hr /> <div id="user-profile"></div> </div> </div> @endsection @section('script') @parent <script> /** * User Profile obejct for...
lgpl-3.0
lecterror/cakephp-naive-bayes-classifier-plugin
Model/BayesToken.php
3814
<?php /** CakePHP NaiveBayesClassifier Plugin Copyright (C) 2012-3827 dr. Hannibal Lecter / lecterror <http://lecterror.com/> Multi-licenced under: MPL <http://www.mozilla.org/MPL/MPL-1.1.html> LGPL <http://www.gnu.org/licenses/lgpl.html> GPL <http://www.gnu.org/licenses/gpl.html> */ App::uses('NaiveBayesC...
lgpl-3.0
shtrom/odtone
inc/odtone/exception.hpp
1593
//============================================================================= // Brief : Exception Base Class // Authors : Bruno Santos <bsantos@av.it.pt> // // // Copyright (C) 2009 Universidade Aveiro - Instituto de Telecomunicacoes Polo Aveiro // // This file is part of ODTONE - Open Dot Twenty One. // // This s...
lgpl-3.0
FenixEdu/fenixedu-academic
src/main/java/org/fenixedu/academic/domain/Person.java
82937
/** * Copyright © 2002 Instituto Superior Técnico * * This file is part of FenixEdu Academic. * * FenixEdu Academic is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License...
lgpl-3.0
TeleMidia/nclcomposer
src/plugins/ncl-textual-view/designer/NCLTextEditorQtDesignerPlugin.cpp
1522
/* * Copyright 2011 TeleMidia/PUC-Rio. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This libra...
lgpl-3.0
edwinspire/VSharp
class/Microsoft.Build/Microsoft.Build.Evaluation/ProjectCollection.cs
18499
// // ProjectCollection.cs // // Author: // Leszek Ciesielski (skolima@gmail.com) // Rolf Bjarne Kvinge (rolf@xamarin.com) // Atsushi Enomoto (atsushi@xamarin.com) // // (C) 2011 Leszek Ciesielski // Copyright (C) 2011,2013 Xamarin Inc. // // Permission is hereby granted, free of charge, to any person obtaining /...
lgpl-3.0
JSandrew4/FastGdk
include/Fast/SkeletonAnimationProperties.hpp
2036
/******************************************************************************/ /* */ /* SkeletonAnimationProperties.hpp */ /* ...
lgpl-3.0
theFisher86/MBINCompiler
libMBIN/Source/Models/Structs/GcCostBuildingParts.cs
219
namespace libMBIN.Models.Structs { public class GcCostBuildingParts : NMSTemplate { [NMS(Size = 0x10)] public string Description; public GcBuildingCostPartCount RequiredParts; } }
lgpl-3.0
BackupTheBerlios/cppparser
src/scalpel/cpp/syntax_nodes/delete_expression.hpp
1202
/* Scalpel - Source Code Analysis, Libre and PortablE Library Copyright © 2008 - 2010 Florian Goujeon This file is part of Scalpel. Scalpel is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version ...
lgpl-3.0