repo_name stringlengths 4 116 | path stringlengths 4 379 | size stringlengths 1 7 | content stringlengths 3 1.05M | license stringclasses 15
values |
|---|---|---|---|---|
quanghung0404/it2tech | components/com_easyblog/themes/wireframe/blogs/entry/fields.php | 1170 | <?php
/**
* @package EasyBlog
* @copyright Copyright (C) 2010 - 2014 Stack Ideas Sdn Bhd. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* EasyBlog is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative... | gpl-2.0 |
lukasmonk/lucaschess | Engines/Windows/glaurung/src/pawns.cpp | 11551 | /*
Glaurung, a UCI chess playing engine.
Copyright (C) 2004-2008 Tord Romstad
Glaurung 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-2.0 |
tatsuhiro-t/aria2 | src/DownloadEngine.cc | 19075 | /* <!-- copyright */
/*
* aria2 - The high speed download utility
*
* Copyright (C) 2006 Tatsuhiro Tsujikawa
*
* 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 Lice... | gpl-2.0 |
qoswork/opennmszh | opennms-provision/opennms-detector-lineoriented/src/test/java/org/opennms/netmgt/provision/detector/NotesDetectorTest.java | 8380 | /*******************************************************************************
* This file is part of OpenNMS(R).
*
* Copyright (C) 2009-2012 The OpenNMS Group, Inc.
* OpenNMS(R) is Copyright (C) 1999-2012 The OpenNMS Group, Inc.
*
* OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.
*
* OpenNMS(... | gpl-2.0 |
deshbandhu-renovite/receipt-eCommerce | node_modules/skipper-disk/standalone/build-disk-receiver-stream.js | 5194 | /**
* Module dependencies
*/
var WritableStream = require('stream').Writable;
var path = require('path');
var _ = require('lodash');
var fsx = require('fs-extra');
var r_buildProgressStream = require('./build-progress-stream');
var debug = require('debug')('skipper-disk');
var util = require('util');
/**
* A simp... | gpl-3.0 |
simon-jouet/Marlin | Marlin/src/feature/mixing.cpp | 5372 | /**
* Marlin 3D Printer Firmware
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General... | gpl-3.0 |
nickdex/cosmos | code/online_challenges/src/hackerrank/almost_sorted/almost_sorted.cpp | 1100 | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
int main()
{
int n = 0;
int p = 0;
int s, l;
s = l = 0;
int t = 0;
std::cin >> n;
std::vector<int> a(n);
std::vector<int> b(n);
for (int i; i < n; ++i) {
std::cin >> a[i];
b... | gpl-3.0 |
wiki2014/Learning-Summary | alps/cts/tests/tests/graphics/src/android/opengl/cts/EglConfigCtsActivity.java | 3073 | /*
* Copyright (C) 2011 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... | gpl-3.0 |
aroramanish63/bulmail_app | Live Backup/mycrm1/library/Zend/Search/Lucene/FSMAction.php | 1660 | <?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the ... | gpl-3.0 |
Gwynthell/FFDB | scripts/globals/items/serving_of_karni_yarik_+1.lua | 1279 | -----------------------------------------
-- ID: 5589
-- Item: serving_of_karni_yarik_+1
-- Food Effect: 60Min, All Races
-----------------------------------------
-- Agility 3
-- Vitality -1
-- Attack % 20
-- Attack Cap 65
-----------------------------------------
require("scripts/globals/status");
-----------------... | gpl-3.0 |
0patch/Yate-YateBTS | yatebts/nib/web/ansql/set_debug.php | 1335 | <?php
/**
* set_debug.php
* This file is part of the FreeSentral Project http://freesentral.com
*
* FreeSentral - is a Web Graphical User Interface for easy configuration of the Yate PBX software
* Copyright (C) 2008-2014 Null Team
*
* This software is distributed under multiple licenses;
* see the COPYING file... | gpl-3.0 |
rimi-itk/loop-profile | themes/loop/templates/search/search-node-page-search-results.tpl.php | 732 | <?php
/**
* @file
* Default template for the search results.
*/
?>
<div id="searchResultApp" data-ng-controller="loopResultController" data-ng-hide="no_hits_yet" class="block block-system search-result--block">
<div class="content" >
<div class="contextual-links-region"> <div class="layout-full-width">... | gpl-3.0 |
TrinityCore/WowPacketParser | WowPacketParser/Enums/TeamType.cs | 341 | namespace WowPacketParser.Enums
{
public enum TeamType
{
None = 0,
Horde = 67,
SteamwheedleCartel = 169,
Alliance = 469,
AllianceForces = 891,
HordeForces = 892,
Sanctuary = 936,
Outland ... | gpl-3.0 |
zhinaonet/sqlmap-z | lib/core/log.py | 1384 | #!/usr/bin/env python
"""
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import logging
import sys
from lib.core.enums import CUSTOM_LOGGING
logging.addLevelName(CUSTOM_LOGGING.PAYLOAD, "PAYLOAD")
logging.addLevelName(CUSTOM_LOGGING.TRAFFIC_OUT, ... | gpl-3.0 |
myarjunar/inasafe | safe/gui/tools/help/extent_selector_help.py | 6325 | # coding=utf-8
"""Help text for the extent selector dialog."""
from safe.utilities.i18n import tr
from safe import messaging as m
from safe.messaging import styles
from safe.utilities.resources import resources_path
SUBSECTION_STYLE = styles.SUBSECTION_LEVEL_3_STYLE
INFO_STYLE = styles.BLUE_LEVEL_4_STYLE
SMALL_ICON_ST... | gpl-3.0 |
dsibournemouth/autoweka | weka-3.7.7/src/main/java/weka/filters/unsupervised/instance/RemoveMisclassified.java | 21510 | /*
* 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 program is distributed in the hope that it w... | gpl-3.0 |
rudhir-upretee/Sumo_With_Netsim | tools/contributed/traci4j/src/it/polito/appeal/traci/protocol/StatusResponse.java | 1972 | /*
Copyright (C) 2011 ApPeAL Group, Politecnico di Torino
This file is part of TraCI4J.
TraCI4J 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
... | gpl-3.0 |
jlopezjuy/ClothesHipster | anelapi/src/main/java/com/anelsoftware/clothes/domain/PersistentAuditEvent.java | 1867 | package com.anelsoftware.clothes.domain;
import java.io.Serializable;
import java.time.LocalDateTime;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
import java.util.HashMap;
import java.util.Map;
/**
* Persist AuditEvent managed by the Spring Boot actuator
* @see org.springframework.boot... | gpl-3.0 |
obulpathi/java | examples/ch12/GUnzip.java | 1206 | //file: GUnzip.java
import java.io.*;
import java.util.zip.*;
public class GUnzip {
public static int sChunk = 8192;
public static void main(String[] args) {
if (args.length != 1) {
System.out.println("Usage: GUnzip source");
return;
}
// create input stream
String zipname, source;
... | gpl-3.0 |
lveci/nest | beam/beam-ui/src/test/java/org/esa/beam/framework/ui/diagram/DiagramTest.java | 1768 | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | gpl-3.0 |
simonschaufi/kimai | js/init.js | 3162 | /* -*- Mode: jQuery; tab-width: 4; indent-tabs-mode: nil -*- */
/**
* This file is part of
* Kimai - Open Source Time Tracking // https://www.kimai.org
* (c) 2006-2009 Kimai-Development-Team
*
* Kimai is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as... | gpl-3.0 |
BSDStudios/parity | js/src/api/rpc/web3/web3.js | 1036 | // Copyright 2015-2017 Parity Technologies (UK) Ltd.
// This file is part of Parity.
// Parity 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 lat... | gpl-3.0 |
scurest/Player | src/sprite_character.cpp | 4003 | /*
* This file is part of EasyRPG Player.
*
* EasyRPG Player 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.
*
* EasyRPG Player... | gpl-3.0 |
davisc/django-osgeo-importer | osgeo_importer/tests/helpers.py | 3063 | from django.conf import settings
from django import db
def create_datastore(workspace_name, connection, catalog):
"""Convenience method for creating a datastore.
"""
from geoserver.catalog import FailedRequestError
settings = connection.settings_dict
ds_name = settings['NAME']
params = {
... | gpl-3.0 |
unreal666/outwiker | src/outwiker/actions/close.py | 532 | # -*- coding: utf-8 -*-
from outwiker.gui.baseaction import BaseAction
from outwiker.core.commands import closeWiki
class CloseAction (BaseAction):
"""
Закрытие дерева заметок
"""
stringId = u"CloseWiki"
def __init__(self, application):
self._application = application
@property
... | gpl-3.0 |
Elektro1776/latestEarthables | core/client/tmp/broccoli_persistent_filterbabel-output_path-5YZ9mQhf.tmp/ghost-admin/models/user.js | 7097 | define('ghost-admin/models/user', ['exports', 'ember-data/model', 'ember-data/attr', 'ember-data/relationships', 'ember-computed', 'ember-service/inject', 'ember-concurrency', 'ghost-admin/mixins/validation-engine'], function (exports, _emberDataModel, _emberDataAttr, _emberDataRelationships, _emberComputed, _emberServ... | gpl-3.0 |
H-uru/libhsplasma | core/Util/PlasmaVersions.cpp | 1669 | /* This file is part of HSPlasma.
*
* HSPlasma 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.
*
* HSPlasma is distributed in th... | gpl-3.0 |
nickdex/cosmos | code/design_pattern/src/functional_patterns/functional_patterns/scala/src/main/scala/functors/profunctor/profunctor.scala | 51 | package functors.profunctor
trait Profunctor {
}
| gpl-3.0 |
stanta/darfchain | darfchain_docker/bigchaindb/backend/rethinkdb/changefeed.py | 2045 | import time
import logging
import rethinkdb as r
from bigchaindb import backend
from bigchaindb.backend.exceptions import BackendError
from bigchaindb.backend.changefeed import ChangeFeed
from bigchaindb.backend.utils import module_dispatch_registrar
from bigchaindb.backend.rethinkdb.connection import RethinkDBConnect... | gpl-3.0 |
m038/plugin-IngestPluginBundle | Controller/EntryController.php | 7062 | <?php
namespace Newscoop\IngestPluginBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Symfony\... | gpl-3.0 |
loiclacombe/higan-cli-fullscreen | ananke/configuration.cpp | 438 | struct Settings : Configuration::Document {
string path;
string geometry;
Settings() {
Configuration::Node node;
node.append(path = userpath(), "Path");
node.append(geometry = "64,64,480,600", "Geometry");
append(node, "Settings");
directory::create({configpath(), "ananke/"});
load({confi... | gpl-3.0 |
agtt/opencart | upload/extension/opencart/admin/controller/dashboard/map.php | 3182 | <?php
namespace Opencart\Admin\Controller\Extension\Opencart\Dashboard;
class Map extends \Opencart\System\Engine\Controller {
public function index(): void {
$this->load->language('extension/opencart/dashboard/map');
$this->document->setTitle($this->language->get('heading_title'));
$data['breadcrumbs'] = [];
... | gpl-3.0 |
tk8226/YamiPortAIO-v2 | Core/AIO Ports/Support Is Easy/Program.cs | 979 | using EloBuddy;
namespace Support
{
using System;
using System.Reflection;
using LeagueSharp;
using LeagueSharp.Common;
using Support.Util;
using Version = System.Version;
internal class Program
{
public static Version Version;
public static void Main()
{
... | gpl-3.0 |
s20121035/rk3288_android5.1_repo | external/lldb/source/API/SBTypeCategory.cpp | 15803 | //===-- SBTypeCategory.cpp ----------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-----------------------------------------------------... | gpl-3.0 |
periodic1236/nutrimatic | openfst-1.0/src/bin/fstprune.cc | 1330 | // fstprune.cc
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software... | gpl-3.0 |
collectiveaccess/providence | vendor/sabre/xml/tests/Sabre/Xml/Element/Eater.php | 2172 | <?php
declare(strict_types=1);
namespace Sabre\Xml\Element;
use Sabre\Xml;
/**
* The intention for this reader class, is to read past the end element. This
* should trigger a ParseException.
*
* @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @l... | gpl-3.0 |
anicma/orfeo | accionesMasivas/libs/Smarty_Compiler.class.php | 93266 | <?php
/**
* Project: Smarty: the PHP compiling template engine
* File: Smarty_Compiler.class.php
*
* 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 ... | gpl-3.0 |
joruri/joruri-maps | lib/system/controller/scaffold/commitment.rb | 1814 | # encoding: utf-8
module System::Controller::Scaffold::Commitment
def rollback(item)
_rollback(item)
end
protected
def _rollback(item, options = {})
conditions = {:unid => item.unid, :version => params[:version], :name => 'attributes'}
com = System::Commitment.find(:first, :conditions => conditions)
... | gpl-3.0 |
idega/com.idega.core | src/java/com/idega/user/data/UserGroupRepresentativeHomeImpl.java | 945 | package com.idega.user.data;
public class UserGroupRepresentativeHomeImpl extends com.idega.user.data.GroupHomeImpl implements UserGroupRepresentativeHome
//public class UserGroupRepresentativeHomeImpl extends com.idega.data.IDOFactory implements UserGroupRepresentativeHome
{
protected Class getEntityInterfaceClass()... | gpl-3.0 |
micaherne/moodle | install/lang/nl/admin.php | 1918 | <?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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.
//
// Moodle... | gpl-3.0 |
kroody/mosh | src/frontend/stmclient.cc | 13056 | /*
Mosh: the mobile shell
Copyright 2012 Keith Winstein
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 |
toidi/hypertable | src/cc/Tools/merge_diff/merge_diff.cc | 3290 | /**
* Copyright (C) 2007-2012 Hypertable, Inc.
*
* This file is part of Hypertable.
*
* Hypertable 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; version 3 of
* the License.
*
* Hypertable is distri... | gpl-3.0 |
bcdev/beam | beam-core/src/test/java/org/esa/beam/framework/dataop/projection/SinusoidalTest.java | 2925 | /*
* Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
*
* 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 late... | gpl-3.0 |
Jonnyfriday/JDweather | webpage/v13/config.php | 2192 | <!DOCTYPE html>
<html>
<head>
<title>Configuration Page</title>
<link rel="stylesheet" href="stylesheet_conf.css">
<script>
function myFunction() {
alert("Make sure DHT11 sensor is connected by the following:\n Ground \n Power: 3v \n Data: GPIO 4");
var getInput = document.getElementById('tcon').valu... | gpl-3.0 |
tumbl3w33d/ansible | lib/ansible/modules/cloud/amazon/route53_health_check.py | 13007 | #!/usr/bin/python
# This file is part of Ansible
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function
__metaclass__ = type
ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['stableinte... | gpl-3.0 |
atgeirr/opm-common | src/opm/output/eclipse/AggregateAquiferData.cpp | 27487 | /*
Copyright (c) 2021 Equinor ASA
This file is part of the Open Porous Media project (OPM).
OPM 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) an... | gpl-3.0 |
cchampet/TuttleOFX | libraries/tuttle/src/tuttle/common/ofx/core.cpp | 2992 | #include "core.hpp"
#include <ofxImageEffect.h>
#include <boost/lexical_cast.hpp>
namespace tuttle {
namespace ofx {
std::string mapStatusToString( const OfxStatus stat )
{
switch( stat )
{
case kOfxStatOK: return "kOfxStatOK";
case kOfxStatFailed: return "kOfxStatFailed";
case kOfxStatErrFatal: return "kOf... | gpl-3.0 |
Arcscion/Shadowlyre | scripts/zones/Lower_Jeuno/npcs/Guttrix.lua | 4107 | -----------------------------------
-- Area: Lower Jeuno
-- NPC: Guttrix
-- Starts and Finishes Quest: The Goblin Tailor
-- @zone 245
-- !pos -36.010 4.499 -139.714
-----------------------------------
package.loaded["scripts/zones/Lower_Jeuno/TextIDs"] = nil;
-----------------------------------
require("scripts/globals... | gpl-3.0 |
muxiaobai/SSH | SSH/src/main/java/Util/SendEmailUtil.java | 2453 | package Util;
import java.util.Date;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.... | gpl-3.0 |
HeavensSword/darkstar | scripts/globals/items/tavnazian_taco.lua | 1521 | -----------------------------------------
-- ID: 5174
-- Item: tavnazian_taco
-- Food Effect: 30Min, All Races
-----------------------------------------
-- Health 20
-- Magic 20
-- Dexterity 4
-- Agility 4
-- Vitality 6
-- Charisma 4
-- Defense % 25
-- HP Recovered While Healing 1
-- MP Recovered While Healing 1
-- Def... | gpl-3.0 |
leejir/darkforce | third_party/boost/boost/mpl/aux_/numeric_op.hpp | 5827 |
#if !defined(BOOST_PP_IS_ITERATING)
///// header body
// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION!
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1... | gpl-3.0 |
calipzo/NFirmwareEditor | src/NCore/UI/WindowBase.cs | 2791 | using System;
using System.ComponentModel;
using System.Windows.Forms;
namespace NCore.UI
{
public class WindowBase : Form
{
private IContainer components;
public LocalizationExtender MainLocalizationExtender;
public WindowBase()
{
InitializeComponent();
if (ApplicationService.IsIconAvailable) Icon =... | gpl-3.0 |
jenarroyo/mahara-repo | htdocs/lib/dwoo/mahara/plugins/function.mahara_pagelinks.php | 3146 | <?php
/**
* Dwoo {mahara_pagelinks} function pluging
*
* appends an 'offset=n' parameter to the url to get the url for a different page
* @param integer $limit number of items per page
* @param integer $offset offset of first data item on this page
* @param integer $count total number of items
* @param string... | gpl-3.0 |
PeterAldur/WurmAssistant3 | src/Apps/WurmAssistant/WurmAssistant3.Contracts/AreaConfig.cs | 615 | using Ninject;
namespace AldursLab.WurmAssistant3
{
/// <summary>
/// This interface can be used to mark a single public class within an Area.
/// It can be used to define custom binding logic for this Area.
/// </summary>
public abstract class AreaConfig
{
/// <summary>
/// Imp... | gpl-3.0 |
mario6829/AliceO2 | Detectors/ITSMFT/ITS/macros/EVE/DisplayEventsComp.C | 17337 | /// \file DisplayEvents.C
/// \brief Simple macro to display ITS digits, clusters and tracks
#if !defined(__CLING__) || defined(__ROOTCLING__)
#include <iostream>
#include <array>
#include <algorithm>
#include <fstream>
#include <TFile.h>
#include <TTree.h>
#include <TEveManager.h>
#include <TEveBrowser.h>
#include <... | gpl-3.0 |
kevinwiede/webspell-nerv | languages/hr/squads.php | 2509 | <?php
/*
##########################################################################
# #
# Version 4 / / / #
# -----------__---/__---__------__----__---/---/- #
# ... | gpl-3.0 |
komidore64/hammer-cli-sam | lib/hammer_cli_sam/repository.rb | 683 | module HammerCLISAM
commands = %w(
create
delete
update
upload-content
)
commands.each do |cmd|
HammerCLI::MainCommand.find_subcommand('repository').subcommand_class.remove_subcommand(cmd)
end
module Repository
class ListCommand < HammerCLIKatello::Repository::ListCommand
inc... | gpl-3.0 |
lukeIam/Vocaluxe | VocaluxeLib/Songs/CSongWriter.cs | 10088 | #region license
// This file is part of Vocaluxe.
//
// Vocaluxe 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.
//
// Vocaluxe i... | gpl-3.0 |
remytms/Distribution | main/core/Entity/Widget/WidgetHomeTabConfig.php | 4067 | <?php
/*
* This file is part of the Claroline Connect package.
*
* (c) Claroline Consortium <consortium@claroline.net>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Claroline\CoreBundle\Entity\Widget;
use Claroline\C... | gpl-3.0 |
Mihara/RasterPropMonitor | RasterPropMonitor/Core/FlyingCamera.cs | 13628 | /*****************************************************************************
* RasterPropMonitor
* =================
* Plugin for Kerbal Space Program
*
* by Mihara (Eugene Medvedev), MOARdV, and other contributors
*
* RasterPropMonitor is free software: you can redistribute it and/or modify
* it under the ... | gpl-3.0 |
robacklin/sigrok | pulseview/pv/data/segment.cpp | 2544 | /*
* This file is part of the PulseView project.
*
* Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.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 2 of th... | gpl-3.0 |
matso165/islands-of-tribes | StoneAge/server/node_modules/mathjs/lib/version.js | 145 | module.exports = '3.9.1';
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.
| gpl-3.0 |
bserdar/lightblue-core | crud/src/main/java/com/redhat/lightblue/crud/validator/EnumChecker.java | 2531 | /*
Copyright 2013 Red Hat, Inc. and/or its affiliates.
This file is part of lightblue.
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 ... | gpl-3.0 |
erh3cq/hyperspy | hyperspy/samfire_utils/strategy.py | 18093 | # -*- coding: utf-8 -*-
# Copyright 2007-2021 The HyperSpy developers
#
# This file is part of HyperSpy.
#
# HyperSpy 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... | gpl-3.0 |
webSPELL/webSPELL | install/languages/de/step1.php | 2421 | <?php
/*
##########################################################################
# #
# Version 4 / / / #
# -----------__---/__---__------__----__---/---/- #
# ... | gpl-3.0 |
tk8226/YamiPortAIO-v2 | Core/Champion Ports/Ekko/TheEkko/Commons/ComboSystem/Skill.cs | 8896 | using System;
using LeagueSharp;
using LeagueSharp.Common;
using EloBuddy;
using LeagueSharp.Common;
namespace TheEkko.ComboSystem
{
abstract class Skill : IComparable<Skill>
{
public bool ComboEnabled = true, LaneclearEnabled = false, HarassEnabled = false; // If this skill should be used in Combo... | gpl-3.0 |
splintor/tdesktop | Telegram/SourceFiles/pspecific_linux.cpp | 19464 | /*
This file is part of Telegram Desktop,
the official desktop version of Telegram messaging app, see https://telegram.org
Telegram Desktop 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 ... | gpl-3.0 |
gregrgay/booking | lib/Application/Reservation/Validation/ReservationRuleResult.php | 1179 | <?php
/**
Copyright 2011-2013 Nick Korbel
This file is part of phpScheduleIt.
phpScheduleIt 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 |
vanoudt/jethro-pmm | calls/call_service_comp_detail.class.php | 671 | <?php
class Call_Service_Comp_Detail extends Call
{
function run()
{
$GLOBALS['system']->initErrorHandler();
$comp = $GLOBALS['system']->getDBObject('service_component', (int)$_REQUEST['id']);
if ($comp) {
if (!empty($_REQUEST['head'])) {
?>
<html>
<head>
<title>Jethro PMM - Service Compon... | gpl-3.0 |
dmlond/duke-data-service | spec/serializers/affiliation_serializer_spec.rb | 618 | require 'rails_helper'
RSpec.describe AffiliationSerializer, type: :serializer do
let(:resource) { FactoryBot.build(:affiliation) }
let(:expected_attributes) {{
'user' => { 'id' => resource.user.id,
'full_name' => resource.user.display_name,
'email' => resource.user.email
... | gpl-3.0 |
amazinger2013/OpenSesame | extensions/automatic_backup/automatic_backup.py | 3572 | #-*- coding:utf-8 -*-
"""
This file is part of OpenSesame.
OpenSesame 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.
OpenSesame is distri... | gpl-3.0 |
eschwert/DL-Learner | components-core/src/main/java/org/dllearner/algorithms/ocel/SubsumptionComparator.java | 1827 | /**
* Copyright (C) 2007-2011, Jens Lehmann
*
* This file is part of DL-Learner.
*
* DL-Learner 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) an... | gpl-3.0 |
Elektro1776/latestEarthables | core/client/tmp/broccoli_persistent_filterbabel-output_path-1H0a5glP.tmp/ghost-admin/tests/unit/helpers/is-not-test.js | 493 | define('ghost-admin/tests/unit/helpers/is-not-test', ['exports', 'chai', 'mocha', 'ghost-admin/helpers/is-not'], function (exports, _chai, _mocha, _ghostAdminHelpersIsNot) {
(0, _mocha.describe)('Unit: Helper: is-not', function () {
// Replace this with your real tests.
(0, _mocha.it)('works', func... | gpl-3.0 |
MartyParty21/AwakenDreamsClient | mcp/temp/src/minecraft/net/minecraft/client/renderer/vertex/VertexFormatElement.java | 4127 | package net.minecraft.client.renderer.vertex;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class VertexFormatElement {
private static final Logger field_177381_a = LogManager.getLogger();
private final VertexFormatElement.EnumType field_177379_b;
private final Ve... | gpl-3.0 |
goldeneye-source/ges-legacy-code | game/ges/server/py/ge_pymodules.cpp | 915 | ///////////// Copyright © 2009 LodleNet. All rights reserved. /////////////
//
// Project : Server
// File : ge_pymodules.cpp
// Description :
// [TODO: Write the purpose of ge_pymodules.cpp.]
//
// Created On: 9/1/2009 10:19:52 PM
// Created By: Mark Chandler <mailto:mark@moddb.com>
/////////... | gpl-3.0 |
dicarve/s3st13 | simbio2/simbio_UTILS/simbio_security.inc.php | 2186 | <?php
/**
* simbio_security class
* A Collection of static function for web security
*
* Copyright (C) 2007,2008 Arie Nugraha (dicarve@yahoo.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 Software F... | gpl-3.0 |
veger/ansible | lib/ansible/modules/files/unarchive.py | 35080 | #!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
# Copyright: (c) 2013, Dylan Martin <dmartin@seattlecentral.edu>
# Copyright: (c) 2015, Toshio Kuratomi <tkuratomi@ansible.com>
# Copyright: (c) 2016, Dag Wieers <dag@wieers.com>
# Copyright: (c) 2017, Ansible Pr... | gpl-3.0 |
adam111316/SickGear | sickbeard/providers/rsstorrent.py | 4156 | # Author: Mr_Orange
#
# This file is part of SickGear.
#
# SickGear 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.
#
# SickGear is dis... | gpl-3.0 |
MartyParty21/AwakenDreamsClient | mcp/src/minecraft/net/minecraft/client/particle/ParticleSuspendedTown.java | 2422 | package net.minecraft.client.particle;
import net.minecraft.world.World;
public class ParticleSuspendedTown extends Particle
{
protected ParticleSuspendedTown(World worldIn, double xCoordIn, double yCoordIn, double zCoordIn, double xSpeedIn, double ySpeedIn, double speedIn)
{
super(worldIn, xCoordIn, ... | gpl-3.0 |
ryzokuken/plots2 | app/models/image.rb | 2657 | require 'open-uri'
class Image < ActiveRecord::Base
attr_accessible :uid, :notes, :title, :photo, :nid, :remote_url
# has_many :comments, :dependent => :destroy
# has_many :likes, :dependent => :destroy
# has_many :tags, :dependent => :destroy
belongs_to :user, foreign_key: :uid
belongs_to :node, foreign_... | gpl-3.0 |
lizardsystem/flooding-lib | flooding_base/static/scripts/shared/overlaymanager.js | 6270 | console.log('loading overlaymanager ...');
var MAPOVERLAY= 1;
var ANIMATEDMAPOVERLAY = 2;
var MARKEROVERLAY = 3;
var ANIMATEDMARKEROVERLAY = 4;
var VECTOROVERLAY = 5;
var WMSOVERLAY = 6;
var ANIMATEDWMSOVERLAY = 7;
var PYRAMIDOVERLAY = 8;
var ANIMATEDPYRAMIDOVERLAY = 9;
/******************Overlay Manager*... | gpl-3.0 |
craigcook/bedrock | bedrock/base/tests/test_macros.py | 3102 | # 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/.
import pytest
from django_jinja.backend import Jinja2
jinja_env = Jinja2.get_default()
def render(s, context=None):
... | mpl-2.0 |
jcjones/boulder | vendor/github.com/zmap/zlint/v3/lints/rfc/lint_ext_subject_key_identifier_missing_ca.go | 2838 | package rfc
/*
* ZLint Copyright 2021 Regents of the University of Michigan
*
* 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 requi... | mpl-2.0 |
bfrohs/servo | components/layout/display_list_builder.rs | 47008 | /* 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/. */
//! Builds display lists from flows and fragments.
//!
//! Other browser engines sometimes call this "painting", b... | mpl-2.0 |
mlorb/scinote-web | spec/controllers/assets_controller_spec.rb | 2546 | # frozen_string_literal: true
require 'rails_helper'
describe AssetsController, type: :controller do
login_user
let(:user) { subject.current_user }
let!(:team) { create :team, created_by: user }
let(:user_team) { create :user_team, :admin, user: user, team: team }
let!(:user_project) { create :user_project... | mpl-2.0 |
Ninir/terraform-provider-aws | vendor/github.com/aws/aws-sdk-go/service/kinesisvideo/errors.go | 2983 | // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package kinesisvideo
const (
// ErrCodeAccountStreamLimitExceededException for service response error code
// "AccountStreamLimitExceededException".
//
// The number of streams created for the account is too high.
ErrCodeAccountStreamLimitExce... | mpl-2.0 |
hintjens/zmq.rs | src/v2_protocol.rs | 94 | pub static MORE_FLAG: u8 = 1;
pub static LARGE_FLAG: u8 = 2;
pub static COMMAND_FLAG: u8 = 4;
| mpl-2.0 |
dbresson/nomad | client/driver/executor_plugin.go | 5188 | package driver
import (
"encoding/gob"
"log"
"net/rpc"
"github.com/hashicorp/go-plugin"
"github.com/hashicorp/nomad/client/driver/executor"
cstructs "github.com/hashicorp/nomad/client/structs"
"github.com/hashicorp/nomad/nomad/structs"
)
// Registering these types since we have to serialize and de-serialize t... | mpl-2.0 |
armandobs14/SaudeBR | SaudeBR_WEB/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php | 43930 | <?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\DependencyInjection\Dumper;
use Symfony\Component\Dep... | agpl-3.0 |
pgorod/SuiteCRM | modules/Meetings/metadata/subpanels/ForActivities.php | 4855 | <?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by Sales... | agpl-3.0 |
frodejohansen/codebrag | codebrag-ui/app/scripts/common/directives/savingStatus.js | 1732 | /**
* Replaces EL text with correct value and toggle correct css class
* usage <EL saving-status="status_property"></EL>
*/
angular.module('codebrag.common.directives')
.directive('savingStatus', function($timeout) {
var statusToText = {
"pending": 'Saving...',
"success": 'Saved... | agpl-3.0 |
esofthead/mycollab | mycollab-web/src/main/java/com/mycollab/vaadin/ui/AbstractOptionValComboBox.java | 2614 | /**
* Copyright © MyCollab
* <p>
* 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.
* <p>
* This program is ... | agpl-3.0 |
ThomasMiconi/htmresearch | projects/sequence_prediction/continuous_sequence/plotPerformance.py | 17017 | #!/usr/bin/env python
# ----------------------------------------------------------------------
# Numenta Platform for Intelligent Computing (NuPIC)
# Copyright (C) 2015, Numenta, Inc. Unless you have an agreement
# with Numenta, Inc., for a separate license for this software code, the
# following terms and conditions ... | agpl-3.0 |
rafamanzo/mezuro-travis | test/unit/block_test.rb | 4804 | require File.dirname(__FILE__) + '/../test_helper'
class BlockTest < ActiveSupport::TestCase
should 'describe itself' do
assert_kind_of String, Block.description
end
should 'access owner through box' do
user = create_user('testinguser').person
box = fast_create(Box, :owner_id => user, :owner_typ... | agpl-3.0 |
liveblog/liveblog | client/app/scripts/liveblog-edit/directives/select-text-on-click.js | 240 | export default function selectTextOnClick() {
return {
link: function(scope, elem, attrs) {
elem.bind('click', () => {
elem.focus();
elem.select();
});
},
};
}
| agpl-3.0 |
Tatwi/legend-of-hondo | MMOCoreORB/bin/scripts/object/building/corellia/filler_historic_24x16_s01.lua | 2260 | --Copyright (C) 2010 <SWGEmu>
--This File is part of Core3.
--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 2 of the License,
--or (at your option) any later versio... | agpl-3.0 |
ppericard/matamog | scripts/generate_scaffolding_blast.py | 5040 | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
import argparse
from collections import defaultdict
def read_tab_file_handle_sorted(tab_file_handle, factor_index=0):
"""
Parse a tab file (sorted by a column) and return a generator
"""
previous_factor_id = ''
factor_tab_list = list()
# Reading ... | agpl-3.0 |
WoWAnalyzer/WoWAnalyzer | src/interface/reducers/reportHistory.js | 891 | import { APPEND_REPORT_HISTORY } from 'interface/actions/reportHistory';
import Cookies from 'universal-cookie';
const MAX_ITEMS = 5;
const cookies = new Cookies();
const COOKIE_NAME = 'REPORT_HISTORY';
const cookieOptions = {
path: '/',
maxAge: 86400 * 365, // 1 year
};
const defaultState = cookies.get(COOKIE_NAM... | agpl-3.0 |
aldridged/gtg-sugar | modules/Roles/vardefs.php | 4211 | <?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
*
* This program is free so... | agpl-3.0 |
HotChalk/canvas-lms | public/javascripts/fixed-data-table.js | 215131 | /**
* FixedDataTable v0.5.0
*
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same direct... | agpl-3.0 |