repo_name
stringlengths
4
116
path
stringlengths
4
379
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
coldtobi/RBDOOM-3-BFG
neo/renderer/Model_md3.cpp
10586
/* =========================================================================== Doom 3 BFG Edition GPL Source Code Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company. This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code"). Doom 3 BFG Edition Source Code is free so...
gpl-3.0
nusnlp/nea
nea/asap_reader.py
7046
import random import codecs import sys import nltk import logging import re import numpy as np import pickle as pk logger = logging.getLogger(__name__) num_regex = re.compile('^[+-]?[0-9]+\.?[0-9]*$') ref_scores_dtype = 'int32' asap_ranges = { 0: (0, 60), 1: (2,12), 2: (1,6), 3: (0,3), 4: (0,3), 5: (0,4), 6: (...
gpl-3.0
ygenc/onlineLDA
onlineldavb_new/build/scipy/scipy/special/tests/test_data.py
9545
import os import numpy as np from numpy import arccosh, arcsinh, arctanh from scipy.special import ( erf, erfc, log1p, expm1, jn, jv, yn, yv, iv, kv, kn, gamma, gammaln, digamma, beta, cbrt, ellipe, ellipeinc, ellipk, ellipkm1, ellipj, erfinv, erfcinv, exp1, expi, expn, zeta, gammaincinv, lpmv ) from ...
gpl-3.0
manojdjoshi/dnSpy
Extensions/dnSpy.Debugger/dnSpy.Debugger.DotNet.CorDebug/dndbg/Engine/Win32EnvironmentStringBuilder.cs
1172
/* Copyright (C) 2014-2019 de4dot@gmail.com This file is part of dnSpy dnSpy 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, or (at your option) any later...
gpl-3.0
jsanchezp/e-edd
es.ucm.fdi.ed2.emf.editor/src/es/ucm/fdi/emf/model/ed2/presentation/Ed2ActionBarContributor.java
14342
/** */ package es.ucm.fdi.emf.model.ed2.presentation; import java.util.ArrayList; import java.util.Collection; import org.eclipse.emf.common.ui.viewer.IViewerProvider; import org.eclipse.emf.edit.domain.EditingDomain; import org.eclipse.emf.edit.domain.IEditingDomainProvider; import org.eclipse.emf.edi...
gpl-3.0
bowhan/bowtie2
scripts/test/regressions.py
8745
#!/usr/bin/env python import os import inspect import unittest import logging import shutil import bt2face import dataface import btdata from optparse import OptionParser class TestRegressions(unittest.TestCase): """ Main regression fixture. """ def test_288(self): """ Check if --un opti...
gpl-3.0
TeoTwawki/darkstar
scripts/zones/Kazham/npcs/Dodmos.lua
2684
----------------------------------- -- Area: Kazham -- NPC: Dodmos -- Starts Quest: Trial Size Trial By Fire -- !pos 102.647 -14.999 -97.664 250 ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/status"); require("scripts/globals/quests"); require("scripts/globals/telep...
gpl-3.0
Fatalerror66/ffxi-a
scripts/zones/Ship_bound_for_Selbina/mobs/Sea_Crab.lua
821
----------------------------------- -- Area: Ship bound for Selbina (220) -- Mob: Sea_Crab ----------------------------------- -- require("scripts/zones/Ship_bound_for_Selbina/MobIDs"); ----------------------------------- -- onMobInitialize ----------------------------------- function onMobInitialize(mob) end; ...
gpl-3.0
Zefz/egoboo
game/src/game/GUI/MessageLog.hpp
1819
//******************************************************************************************** //* //* This file is part of Egoboo. //* //* Egoboo 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...
gpl-3.0
fdelapena/easyrpg-editor-qt
src/gamecharacter.cpp
10592
#include "gamecharacter.h" GameCharacter::GameCharacter() : m_name(""), m_title(""), m_minlvl(1), m_maxlvl(99), m_docritical(true), m_critical(30), m_dualweapons(false), m_fixedequip(false), m_ai(false), m_strongdefense(false), m_profession(-1), m_facename("<none>"), ...
gpl-3.0
ashleyblackmore/cpp-ethereum
libwebthree/WebThree.cpp
4510
/* This file is part of cpp-ethereum. cpp-ethereum 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, or (at your option) any later version. cpp-ethereum is distributed in the...
gpl-3.0
MoonLightDE/MoonLightDE
src/notifications/src/notifyd.cpp
4317
/* BEGIN_COMMON_COPYRIGHT_HEADER * (c)LGPL2+ * * LXDE-Qt - a lightweight, Qt based, desktop toolset * http://razor-qt.org * * Copyright: 2012 Razor team * Authors: * Alec Moskvin <alecm@gmx.com> * Petr Vanek <petr@scribus.info> * * This program or library is free software; you can redistribute it * and/...
gpl-3.0
sethryder/modpackindex
app/views/user/menu.blade.php
1983
<div class="col-md-3 col-sm-5"> <div class="list-group"> <a href="{{ action('UserController@getProfile', [$user['username']]) }}" class="list-group-item @if ($page == 'profile') active @endif"> <i class="fa fa-user"></i>Profile <i class="fa fa-chevron-right list-group-chevron"></i...
gpl-3.0
eraffxi/darkstar
scripts/zones/Crawlers_Nest_[S]/TextIDs.lua
367
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6905; -- You cannot obtain the item ITEM_OBTAINED = 6909; -- Obtained: <item> GIL_OBTAINED = 6910; -- Obtained <number> gil KEYITEM_OBTAINED = 6912; -- Obtained key item: -- Other Texts ITEM_DELIVERY_DIALO...
gpl-3.0
martinbigio/chatterbot
code/web/src/main/java/ar/edu/itba/tpf/chatterbot/web/ErrorLogWrapper.java
1128
package ar.edu.itba.tpf.chatterbot.web; import ar.edu.itba.tpf.chatterbot.model.ErrorLog; public class ErrorLogWrapper { private final static int MESSAGE_SIZE = 45; private final static int STACKTRACE_SIZE = 30; ErrorLog errorLog; boolean selected; public ErrorLogWrapper(ErrorLog errorLog) { ...
gpl-3.0
BackupTheBerlios/cuon-svn
cuon_client/cuon/Articles/SingleArticleSale.py
1763
# -*- coding: utf-8 -*- ##Copyright (C) [2003] [Jürgen Hamel, D-32584 Löhne] ##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, or (at your option) any later versio...
gpl-3.0
nacjm/MatterOverdrive
src/main/java/matteroverdrive/data/quest/logic/AbstractQuestLogicBlock.java
1487
package matteroverdrive.data.quest.logic; import com.google.gson.JsonObject; import matteroverdrive.data.quest.QuestBlock; import matteroverdrive.data.quest.QuestItem; import net.minecraft.block.state.IBlockState; import net.minecraft.item.ItemStack; /** * Created by Simeon on 1/5/2016. */ public abstract class Abs...
gpl-3.0
4lin/galaxyz
download/includes/pages/game/class.ShowGalaxyPage.php
4791
<?php /** * 2Moons * Copyright (C) 2012 Jan Kröpke * * 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, or * (at your option) any later version. * * Thi...
gpl-3.0
RaysaOliveira/cloudsim-plus
cloudsim-plus/src/main/java/org/cloudsimplus/autoscaling/VerticalVmScaling.java
14868
/* * CloudSim Plus: A modern, highly-extensible and easier-to-use Framework for * Modeling and Simulation of Cloud Computing Infrastructures and Services. * http://cloudsimplus.org * * Copyright (C) 2015-2016 Universidade da Beira Interior (UBI, Portugal) and * the Instituto Federal de Educação Ciência e...
gpl-3.0
Fatalerror66/ffxi-a
scripts/zones/Dynamis-Jeuno/mobs/Vanguard_Smithy.lua
812
----------------------------------- -- Area: Dynamis - Jeuno (188) -- Mob: Vanguard_Smithy ----------------------------------- -- require("scripts/zones/Dynamis-Jeuno/MobIDs"); ----------------------------------- -- onMobInitialize ----------------------------------- function onMobInitialize(mob) end; ---------...
gpl-3.0
HEPcodes/FeynHiggs
extse/OasatPdep.app/SecDec3/loop/T12345m12012/together/epstothe0/f4.cc
6607
#include "intfile.hh" dcmplx Pf4(const double x[], double es[], double esx[], double em[], double lambda, double lrs[], double bi) { double x0=x[0]; double x1=x[1]; double x2=x[2]; double x3=x[3]; dcmplx y[149]; dcmplx FOUT; dcmplx MYI(0.,1.); y[1]=1./bi; y[2]=em[0]; y[3]=em[1]; y[4]=esx[0]; y[5]=x1*y[1]*y[2]; y[6]=x1...
gpl-3.0
frazzy123/madisonclone
app/views/login/signup.blade.php
1359
@extends('layouts/main') @section('content') <div class="content col-md-12"> <div class="row"> <div class="md-col-12"> <h1>Signup</h1> </div> </div> <div class="row"> <div class="col-md-10 col-md-offset-1"> {{ Form::open(array('url'=>'user/signup', 'method'=>'post')) }} <!-- First Name -->...
gpl-3.0
martin-craig/Airtime
python_apps/media-monitor2/media/monitor/owners.py
1424
# -*- coding: utf-8 -*- from media.monitor.log import Loggable class Owner(Loggable): def __init__(self): # hash: 'filepath' => owner_id self.owners = {} def get_owner(self,f): """ Get the owner id of the file 'f' """ o = self.owners[f] if f in self.owners else -1 self....
gpl-3.0
eraffxi/darkstar
scripts/zones/Silver_Sea_route_to_Nashmau/TextIDs.lua
572
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6381; -- You cannot obtain the item <item> come back again after sorting your inventory ITEM_OBTAINED = 6387; -- Obtained: <item> GIL_OBTAINED = 6388; -- Obtained <number> gil KEYITEM_OBTAINED = 6390; -- Obtain...
gpl-3.0
surveyproject/surveyproject_main_public
Reflector/Nsurvey_WebControls/Votations.NSurvey.WebControls.UI/SectionQuestion.cs
44910
/************************************************************************************************** NSurvey - The web survey and form engine Copyright (c) 2004, 2005 Thomas Zumbrunn. (http://www.nsurvey.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Pub...
gpl-3.0
ciscoqid/librenms
html/includes/common/top-devices.inc.php
16837
<?php /* Copyright (C) 2015 Sergiusz Paprzycki <serek@walcz.net> * Copyright (C) 2016 Cercel Valentin <crc@nuamchefazi.ro> * * This widget is based on legacy frontpage module created by Paul Gear. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Publ...
gpl-3.0
XeCycle/indico
indico/MaKaC/webinterface/rh/authorDisplay.py
1511
# This file is part of Indico. # Copyright (C) 2002 - 2015 European Organization for Nuclear Research (CERN). # # Indico 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, or (a...
gpl-3.0
holger-seelig/titania
Titania/Titania/Editors/NodePropertiesEditor/NodePropertiesEditor.cpp
4768
/* -*- Mode: C++; coding: utf-8; tab-width: 3; indent-tabs-mode: tab; c-basic-offset: 3 -*- ******************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011. * * Al...
gpl-3.0
brunosr1985/PHPLogin
node_modules/ionic-angular/umd/navigation/url-serializer.js
24549
(function (factory) { if (typeof module === "object" && typeof module.exports === "object") { var v = factory(require, exports); if (v !== undefined) module.exports = v; } else if (typeof define === "function" && define.amd) { define(["require", "exports", "@angular/core", "../util/u...
gpl-3.0
marekjm/viuavm
src/assembler/frontend/static_analyser/checkers/check_op_texteq.cpp
2541
/* * Copyright (C) 2018 Marek Marecki * * This file is part of Viua VM. * * Viua VM 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, or * (at your option) any late...
gpl-3.0
Karlosjp/Clase-DAM
Santo Domingo Savio/Clase-DAM-2/Desarrollo de interfaces/Ejercicios/Ejercicios/src/Ejercicio4.java
489
public class Ejercicio4 { public static void main(String[] args) { // TODO Auto-generated method stub // Recorrer un array de enteros y dar la cantidad total de nº pares int contador = 0; int [] enteros = {4, 5, 7, 10, 14, 9, 17, 2, 1, 28}; // i = 0 1 2 3 4 5 6 7 8 for (int i=...
gpl-3.0
alexey4petrov/pythonFlu
Foam/src/OpenFOAM/fields/DimensionedFields/DimensionedField_scalar_volMesh.hh
1431
// pythonFlu - Python wrapping for OpenFOAM C++ API // Copyright (C) 2010- Alexey Petrov // Copyright (C) 2009-2010 Pebble Bed Modular Reactor (Pty) Limited (PBMR) // // 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 //...
gpl-3.0
GuillaumeDelente/OpenBike
src/fr/openbike/android/ui/HomeActivity.java
13935
/* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
gpl-3.0
mcisse3007/moodle_esco_master
filter/jmol/yui/jsmol/j2s/J/adapter/smarter/SmarterJmolAdapter.js
9315
Clazz.declarePackage ("J.adapter.smarter"); Clazz.load (["J.api.JmolAdapter"], "J.adapter.smarter.SmarterJmolAdapter", ["java.io.BufferedReader", "javajs.api.GenericBinaryDocument", "JU.Rdr", "J.adapter.smarter.AtomIterator", "$.AtomSetCollection", "$.AtomSetCollectionReader", "$.BondIterator", "$.Resolver", "$.Struct...
gpl-3.0
FredericoMFalcao/GroupBettingSystem
_www/phpmyadmin/js/tbl_structure.js
19866
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * @fileoverview functions used on the table structure page * @name Table Structure * * @requires jQuery * @requires jQueryUI * @required js/functions.js */ /** * AJAX scripts for tbl_structure.php * * Actions ajaxified here: * Drop Column ...
gpl-3.0
dLobatog/smart-proxy
test/dns_libvirt/dns_libvirt_provider_test.rb
1900
require 'test_helper' require 'dns_libvirt/plugin_configuration' require 'dns_libvirt/dns_libvirt_plugin' require 'dns_libvirt/dns_libvirt_main' class DnsLibvirtProviderTest < Test::Unit::TestCase def setup fixture = <<XMLFIXTURE <network> <name>default</name> <domain name='local.lan'/> <dns> <host ip=...
gpl-3.0
obiba/opal
opal-gwt-client/src/main/java/org/obiba/opal/web/gwt/ace/client/js/noconflict/mode-scad.js
26875
/* * Copyright (c) 2017 OBiBa. All rights reserved. * * This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. *...
gpl-3.0
Hernanarce/pelisalacarta
python/main-classic/servers/copiapop.py
2803
# -*- coding: utf-8 -*- #------------------------------------------------------------ # pelisalacarta - XBMC Plugin # Conector para copiapop # http://blog.tvalacarta.info/plugin-xbmc/pelisalacarta/ #------------------------------------------------------------ import re from core import config from core import httptoo...
gpl-3.0
goodagood/testexp
cooka/tmp/inherits-b.js
500
var EventEmitter = require('events').EventEmitter; var util = require('util'); // Define the constructor for your derived "class" function Master(arg1, arg2) { // call the super constructor to initialize `this` EventEmitter.call(this); // your own initialization of `this` follows here }; // Declare that y...
gpl-3.0
MyEmbeddedWork/ARM_CORTEX_M3-STM32
1. Docs/Doxygen/html/struct_c_a_n___f_i_f_o_mail_box___type_def.js
479
var struct_c_a_n___f_i_f_o_mail_box___type_def = [ [ "RDHR", "struct_c_a_n___f_i_f_o_mail_box___type_def.html#a95890984bd67845015d40e82fb091c93", null ], [ "RDLR", "struct_c_a_n___f_i_f_o_mail_box___type_def.html#ac7d62861de29d0b4fcf11fabbdbd76e7", null ], [ "RDTR", "struct_c_a_n___f_i_f_o_mail_box___type_d...
gpl-3.0
SKuipers/core
modules/Rubrics/src/Visualise.php
6077
<?php /* Gibbon, Flexible & Open School System Copyright (C) 2010, Ross Parker 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, or (at your option) any later version. ...
gpl-3.0
legislated/legislated-api
app/services/ilga/scrape_hearings.rb
2717
module Ilga class ScrapeHearings include Scraper Hearing = Struct.new( :ilga_id, :url ) def call(chamber) info("> #{task_name}: start") info(" - chamber: #{chamber}") result = scrape_hearings(chamber) info("\n> #{task_name}: finished") result end ...
gpl-3.0
MultiverseKing/MultiverseKing_JME
MultiverseKingGame/src/org/multiverseking/game/gui/control/CameraTrackWindow.java
3092
package org.multiverseking.game.gui.control; import com.jme3.math.Vector2f; import com.jme3.math.Vector3f; import com.jme3.renderer.Camera; import org.hexgridapi.core.coordinate.HexCoordinate; import tonegod.gui.controls.menuing.Menu; import tonegod.gui.core.Element; import tonegod.gui.core.ElementManager; /** * * ...
gpl-3.0
oikarinen/plugin.audio.spotlight
spotlight/service/session/PlaylistCallbacks.py
1519
# # Copyright (c) Dariusz Biskup # # This file is part of Spotlight # # Spotlight 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, or (at your option) any later ve...
gpl-3.0
OpenCFD/OpenFOAM-1.7.x
src/OpenFOAM/fields/DimensionedFields/DimensionedField/DimensionedFieldI.H
2387
/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd. \\/ M anipulation | ---------------...
gpl-3.0
ner01/MobileAppTest
Groceries/platforms/android/src/main/assets/app/tns_modules/tns-core-modules/ui/segmented-bar/segmented-bar.js
10065
function __export(m) { for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); var font_1 = require("../styling/font"); var segmented_bar_common_1 = require("./segmented-bar-common"); __export(require("./segmented-bar-common")); var R_ID_T...
gpl-3.0
clynrey/android-soap-enabler
library/src/test/java/org/asoape/sample/ContactEmail.java
1296
/** * Android SOAP Enabler is free software: you can redistribute it and/or modify * it under the terms of the Lesser GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, * or any later version. * * Android SOAP Enabler is distributed in the hope that it wi...
gpl-3.0
xrunuo/xrunuo
Scripts/Distro/Engines/Reports/Persistance/PersistableObjectCollection.cs
6261
//------------------------------------------------------------------------------ // <autogenerated> // This code was generated by a tool. // Runtime Version: 1.1.4322.573 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </autogenerated> ...
gpl-3.0
zyvitski/DSG
doxygen/html/search/functions_12.js
3491
var searchData= [ ['_7eanalogsaw',['~AnalogSaw',['../class_d_s_g_1_1_analog_1_1_analog_saw.html#a42a5fe22e0c3b9d1bd3996fe5bbd24ba',1,'DSG::Analog::AnalogSaw']]], ['_7eanalogsquare',['~AnalogSquare',['../class_d_s_g_1_1_analog_1_1_analog_square.html#a17b3928f19cb6bf0c151b5e1159de1db',1,'DSG::Analog::AnalogSquare']]]...
gpl-3.0
Darkpeninsula/DarkCore-Old
src/server/scripts/EasternKingdoms/BlackwingLair/boss_victor_nefarius.cpp
14959
/* * Copyright (C) 2005-2012 MaNGOS <http://www.getmangos.com/> * Copyright (C) 2008-2012 Trinity <http://www.trinitycore.org/> * Copyright (C) 2010-2012 Project SkyFire <http://www.projectskyfire.org/> * Copyright (C) 2011-2012 Darkpeninsula Project <http://www.darkpeninsula.eu/> * * This program is free softwar...
gpl-3.0
sc13-bioinf/EAGER-CLI
src/main/java/Modules/stats/Flagstat.java
2531
/* * Copyright (c) 2016. EAGER-CLI Alexander Peltzer * 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, or * (at your option) any later version. * * This...
gpl-3.0
TwistPHP/TwistPHP
dist/twist/Core/Controllers/Base.controller.php
15511
<?php /** * TwistPHP - An open source PHP MVC framework built from the ground up. * Shadow Technologies Ltd. * * 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 t...
gpl-3.0
Severed-Infinity/technium
build/tmp/recompileMc/sources/net/minecraftforge/fml/common/ProgressManager.java
5186
/* * Minecraft Forge * Copyright (c) 2016. * * 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 version 2.1 * of the License. * * This library is distributed in the hope that it will...
gpl-3.0
dementeddevil/EasyTablesTest
Components/crosslight-ui-components-4.0/samples/ViewSliderSamples.iOS/ViewControllers/AutoSlideViewController.designer.cs
417
// WARNING // // This file has been generated automatically by MonoDevelop to store outlets and // actions made in the Xcode designer. If it is removed, they will be lost. // Manual changes to this file may not be handled correctly. // using Foundation; namespace ViewSliderSamples.iOS { [Register ("AutoSlideViewContr...
gpl-3.0
mbshopM/openconcerto
OpenConcerto/src/org/jdesktop/swingx/plaf/LookAndFeelAddons.java
12890
/* * $Id: LookAndFeelAddons.java,v 1.15 2005/12/10 11:33:36 l2fprod Exp $ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Le...
gpl-3.0
mayioit/MacroMedicalSystem
Samples/Google/Calendar/SchedulingComponent.cs
12314
#region License // Copyright (c) 2013, ClearCanvas Inc. // All rights reserved. // http://www.clearcanvas.ca // // This file is part of the ClearCanvas RIS/PACS open source project. // // The ClearCanvas RIS/PACS open source project is free software: you can // redistribute it and/or modify it under the terms of the G...
gpl-3.0
gerryai/planning-common
model/src/main/java/org/gerryai/planning/parser/ParserService.java
2072
/* * Gerry AI - Open framework for automated planning * Copyright (c) 2014 David Edwards <david@more.fool.me.uk> * * 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 L...
gpl-3.0
emmanuelroussel/stockpile-app
src/store/kits/kits.actions.spec.ts
1314
import { TestData } from '../../test-data'; import { createAction } from '../create-action'; import { StoreMock } from '../../mocks'; import { KitsActions } from './kits.actions'; let instance: KitsActions = null; describe('Kits Actions', () => { beforeEach(() => { instance = new KitsActions((<any> new StoreM...
gpl-3.0
zdavis/manifold
api/spec/requests/projects/relationships/resource_imports_spec.rb
2582
require "rails_helper" RSpec.describe "Resource Import API", type: :request do include_context("authenticated request") include_context("param helpers") csv_path = Rails.root.join('spec', 'data','resource_import','resources.csv') let(:attributes) { { source: "attached_data", data: file_param(...
gpl-3.0
jdstrand/snapd
gadget/install/options.go
1549
// -*- Mode: Go; indent-tabs-mode: t -*- /* * Copyright (C) 2019-2020 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hop...
gpl-3.0
Georgeto/rmtools
xmatEdit/xmatedit.cpp
1192
#include "xmatedit.h" QTranslator * XmatEdit::german_qt = 0; QTranslator * XmatEdit::german_app = 0; QTranslator * XmatEdit::current_qt = 0; QTranslator * XmatEdit::current_app = 0; XmatEdit::XmatEdit(int & argc, char * argv[]) : QApplication(argc, argv) { delete german_qt; german_qt = new QTranslat...
gpl-3.0
Mikezar/STW6
ScrewTurnWiki.Core/Tools.cs
25234
 using System; using System.Configuration; using System.Collections.Generic; using System.IO; using System.Text; using System.Threading; using System.Web; using System.Web.Security; using System.Globalization; using ScrewTurn.Wiki.PluginFramework; using System.Reflection; using System.Net; namespace ScrewTurn.Wiki { ...
gpl-3.0
BeGe78/esood
vendor/bundle/ruby/3.0.0/gems/stripe-5.37.0/lib/stripe/resources/application_fee_refund.rb
980
# frozen_string_literal: true module Stripe class ApplicationFeeRefund < APIResource include Stripe::APIOperations::Save extend Stripe::APIOperations::List OBJECT_NAME = "fee_refund" def resource_url "#{ApplicationFee.resource_url}/#{CGI.escape(fee)}/refunds" \ "/#{CGI.escape(id)}" ...
gpl-3.0
laxman-spidey/YouSee.in
yousee_test/donatewaste_graph_total_kg_personal.php
1150
<?php // this file generates Horisontal Bar graph for Waste Donations Received by Items Category in Rs include("prod_conn.php"); $query = "SELECT FORMAT(SUM(donationquantity),0) donation_kg, DATE_FORMAT(MIN(dateofdonation),'%d-%b-%Y') from_date, DATE_FORMAT(MAX(dateofdonation),'%d-%b-%Y') to...
gpl-3.0
airpaulg/relax-net
RedBranch.Hammock/Document.cs
2250
// // Document.cs // // Author: // Nick Nystrom <nnystrom@gmail.com> // // Copyright (c) 2009-2011 Nicholas J. Nystrom // // 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 Foundati...
gpl-3.0
TheJuiceBTC/BillionDogeHomePage
include/mouseover_js.inc.php
4604
<?php /** * @version $Id: mouseover_js.inc.php 64 2010-09-12 01:18:42Z ryan $ * @package mds * @copyright (C) Copyright 2010 Ryan Rhode, All rights reserved. * @author Ryan Rhode, ryan@milliondollarscript.com * @license This program is free software; you can redistribute it and/or modify * it under the terms...
gpl-3.0
hanaa-abdelgawad/mgc_pos
htdocs/core/lib/usergroups.lib.php
11101
<?php /* Copyright (C) 2006-2012 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2010-2012 Regis Houssin <regis.houssin@capnetworks.com> * * 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 Softw...
gpl-3.0
xoreos/xoreos
src/aurora/actionscript/avm_interval.cpp
2325
/* xoreos - A reimplementation of BioWare's Aurora engine * * xoreos is the legal property of its developers, whose names * can be found in the AUTHORS file distributed with this source * distribution. * * xoreos is free software; you can redistribute it and/or * modify it under the terms of the GNU General Publ...
gpl-3.0
deesoft/biz3-client
ModuleAsset.php
618
<?php namespace biz\client; /** * Description of ModuleAssets * * @author Misbahul D Munir <misbahuldmunir@gmail.com> * @since 1.0 */ class ModuleAsset extends \yii\web\AssetBundle { /** * @inheritdoc */ public $sourcePath = '@biz/client/assets'; /** * @inheritdoc */ public $...
gpl-3.0
ledtvavs/repository.ledtv
zips/addons_xml_generator.py
2712
""" downloaded from http://xbmc-addons.googlecode.com/svn/addons/ """ """ addons.xml generator """ import os import md5 class Generator: """ Generates a new addons.xml file from each addons addon.xml file and a new addons.xml.md5 hash file. Must be run from the root of the checked-out rep...
gpl-3.0
GroestlCoin/FoxBot-GRS
src/main/java/co/foxdev/foxbot/permissions/PermissionManager.java
3010
/* * This file is part of Foxbot. * * Foxbot 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, or * (at your option) any later version. * * Foxbot is ...
gpl-3.0
jembi/openhim-encounter-orchestrator
src/main/java/org/hl7/v3/ActRelationshipReason.java
771
package org.hl7.v3; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ActRelationshipReason. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="ActRelationshipReason"> ...
mpl-2.0
usersource/tasks
tasks_phonegap/Tasks/plugins/io.usersource.anno/anno_gec_server/model/user.py
1735
__author__ = 'topcircler' from google.appengine.ext import ndb from message.user_message import UserMessage class User(ndb.Model): """ Represents user entity. """ user_email = ndb.StringProperty() # this field should be unique. display_name = ndb.StringProperty() # this field shoul...
mpl-2.0
mozilla/rhino
testsrc/org/mozilla/javascript/tests/Issue129Test.java
4509
/* 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.mozilla.javascript.tests; import static org.junit.Assert.assertEquals; import static org.junit.Assert....
mpl-2.0
mgk/vault
ui/app/routes/vault/cluster/replication.js
963
import Ember from 'ember'; import ClusterRoute from 'vault/mixins/cluster-route'; const { inject } = Ember; export default Ember.Route.extend(ClusterRoute, { version: inject.service(), beforeModel() { return this.get('version').fetchFeatures().then(() => { return this._super(...arguments); }); }, ...
mpl-2.0
lamhx393/V9_uit
Android-App/src/com/vp9/util/ParamUtil.java
11527
package com.vp9.util; import java.math.BigInteger; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; public class ParamUtil { public static int getJsonInt...
mpl-2.0
mahinthjoe/bedrock
media/js/firefox/os/devices.js
8708
/* 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/. */ // create namespace if (typeof window.Mozilla === 'undefined') { window.Mozilla = {}; } ;(function($, Mozilla) ...
mpl-2.0
servinglynk/servinglynk-hmis
hmis-model-v2015/src/main/java/com/servinglynk/hmis/warehouse/dao/MedicalassistanceDaoImpl.java
8902
/** * */ package com.servinglynk.hmis.warehouse.dao; import java.util.List; import java.util.Map; import java.util.UUID; import org.hibernate.criterion.DetachedCriteria; import org.hibernate.criterion.Restrictions; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.servinglynk.hmis.warehouse.base....
mpl-2.0
swatilk/fxa-content-server
app/scripts/models/auth_brokers/fx-ios-v2.js
1094
/* 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/. */ /** * The auth broker to coordinate authenticating for Sync when * embedded in the Firefox for iOS 2.0. */ def...
mpl-2.0
TiWinDeTea/Raoul-the-Game
src/main/java/com/github/tiwindetea/raoulthegame/model/items/StorableObjectType.java
1462
////////////////////////////////////////////////////////////////////////////////// // // // 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 t...
mpl-2.0
legatoproject/legato-docs
15_01_1/search/files_0.js
4659
var searchData= [ ['le_5fantenna_5finterface_2eh',['le_antenna_interface.h',['../le__antenna__interface_8h.html',1,'']]], ['le_5fargs_2eh',['le_args.h',['../le__args_8h.html',1,'']]], ['le_5faudio_5finterface_2eh',['le_audio_interface.h',['../le__audio__interface_8h.html',1,'']]], ['le_5favc_5finterface_2eh',['...
mpl-2.0
koutstore/KS-theme-en
updates/pre-update-data.js
148
// This file is used for testing updates before they go live window.forumactif_edge_version_data = [ '1.0.0-beta', '1.0.0-beta.1', '1.0.0' ];
mpl-2.0
sharidas/core
settings/Panels/Admin/Status.php
1178
<?php /** * @author Martin Mattel <martin.mattel@diemattels.at> * * @copyright Copyright (c) 2017, ownCloud GmbH * @license AGPL-3.0 * * This code 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...
agpl-3.0
IMS-MAXIMS/openMAXIMS
Source Library/openmaxims_workspace/ValueObjects/src/ims/oncology/vo/CancerContactSearchCriteriaVo.java
11051
//############################################################################# //# # //# Copyright (C) <2015> <IMS MAXIMS> # //# ...
agpl-3.0
KentShikama/diaspora
spec/helpers/application_helper_spec.rb
4517
# Copyright (c) 2010-2011, Diaspora Inc. This file is # licensed under the Affero General Public License version 3 or later. See # the COPYRIGHT file. describe ApplicationHelper, :type => :helper do before do @user = alice @person = FactoryGirl.create(:person) end describe "#all_services_connect...
agpl-3.0
rapidminer/rapidminer-5
src/com/rapidminer/operator/generator/TransactionClustersExampleSetGenerator.java
8144
/* * RapidMiner * * Copyright (C) 2001-2014 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 ...
agpl-3.0
PowerToChange/pat
app/models/state.rb
118
class State < ActiveRecord::Base load_mappings include Common::Core::State include Common::Core::Ca::State end
agpl-3.0
leftees/galleryplus
tests/unit/service/SearchFolderServiceTest.php
9739
<?php /** * ownCloud - galleryplus * * This file is licensed under the Affero General Public License version 3 or * later. See the COPYING file. * * @author Olivier Paroz <owncloud@interfasys.ch> * * @copyright Olivier Paroz 2015 */ namespace OCA\GalleryPlus\Service; /** * Class SearchFolderServiceTest * ...
agpl-3.0
interjection/infinity-next
app/Events/ThreadNewReply.php
396
<?php namespace App\Events; use App\Post; use Illuminate\Queue\SerializesModels; class ThreadNewReply extends Event { use SerializesModels; /** * The post the event is being fired on. * * @var \App\Post */ public $post; /** * Create a new event instance. */ public ...
agpl-3.0
bbguitar/ProjectPier
application/models/config_handlers/general/ConfigHandler.class.php
2492
<?php /** * Base config handler. Config handlers are used for typecasting and rendering controls * that represent single config options * * @version 1.0 * @http://www.projectpier.org/ */ abstract class ConfigHandler { /** * Config option that this handler is attached to (config options are ...
agpl-3.0
jacklicn/owncloud
apps/firstrunwizard/appinfo/app.php
1509
<?php /** * ownCloud - firstrunwizard App * * @author Frank Karlitschek * @copyright 2012 Frank Karlitschek karlitschek@kde.org * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * License as published by the Free Software Foun...
agpl-3.0
ewheeler/rapidpro
temba/channels/migrations/0029_auto_20160202_1931.py
964
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('channels', '0028_channel_uuid_cleanup'), ] operations = [ migrations.AlterField( model_name='channel', ...
agpl-3.0
pydio/pydio-core
core/src/plugins/editor.eml/i18n/conf/it.php
1149
<?php /* * Copyright 2007-2017 Charles du Jeu - Abstrium SAS <team (at) pyd.io> * This file is part of Pydio. * * Pydio 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, o...
agpl-3.0
ArturD/holmes
holmes-classifier/src/main/java/com/wikia/classifier/wikitext/WikiPageSection.java
313
package com.wikia.classifier.wikitext; public class WikiPageSection { private String title; public WikiPageSection(String title) { this.title = title; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }
agpl-3.0
IMS-MAXIMS/openMAXIMS
Source Library/openmaxims_workspace/Admin/src/ims/admin/forms/batchprinting/BaseLogic.java
4786
//############################################################################# //# # //# Copyright (C) <2015> <IMS MAXIMS> # //# ...
agpl-3.0
grafana/loki
vendor/github.com/fsouza/fake-gcs-server/fakestorage/mux_tranport.go
461
// Copyright 2019 Francisco Souza. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package fakestorage import ( "net/http" "net/http/httptest" "github.com/gorilla/mux" ) type muxTransport struct { router *mux.Router } func (t *muxTran...
agpl-3.0
govro/ckanext-romania_theme
i18n/check_po_files.py
4151
#!/usr/bin/env python '''Script for checking for common translation mistakes in po files, see: paster check-po-files --help for usage. Requires polib <http://pypi.python.org/pypi/polib>: pip install polib ''' import re import paste.script.command def simple_conv_specs(s): '''Return the simple Python s...
agpl-3.0
nerzhul/ocsms
lib/vendor/giggsey/locale/data/br.php
6331
<?php /** * This file has been @generated by a phing task from CLDR version 33.0.0. * See [README.md](README.md#generating-data) for more information. * * @internal Please do not require this file directly. * It may change location/format between versions * * Do not modify this file directly! */ return array (...
agpl-3.0
cloudbase/coriolis-web
src/components/ui/Dropdowns/NewItemDropdown/NewItemDropdown.tsx
7381
/* Copyright (C) 2017 Cloudbase Solutions SRL 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 distribute...
agpl-3.0
venturehive/canvas-lms
spec/selenium/grades/pages/gradezilla_grade_detail_tray_page.rb
4570
# # Copyright (C) 2017 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas 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 of the License. # # Canvas is distributed in the ...
agpl-3.0