code stringlengths 3 1.01M | repo_name stringlengths 5 116 | path stringlengths 3 311 | language stringclasses 30
values | license stringclasses 15
values | size int64 3 1.01M |
|---|---|---|---|---|---|
#!/bin/bash
for file in `ls *CACHE*`; do
newfile=`echo $file | sed -e 's/CACHE/NOCACHE/g'`
cp $file $newfile
sed -e 's/NOPINT-CACHE/NOPINT-NOCACHE/g' < $newfile > tmp
cp tmp $newfile
sed -e 's/AccountingConsumer/AccountingRandomConsumer/g' < $newfile > tmp
cp tmp $newfile
rm tmp
done
| chris-wood/ndnSIM-accounting | examples/script.sh | Shell | gpl-3.0 | 313 |
/**
* Created by Derwish (derwish.pro@gmail.com) on 15.09.2017.
* License: http://www.gnu.org/licenses/gpl-3.0.txt
*/
import { Database } from "../database/database";
import { Container } from "../nodes/container";
import { Node } from "../nodes/node";
import { UiNode } from "../nodes/nodes/ui/ui-node";
import { Da... | derwish-pro/singlehub | src/server/dashboard.ts | TypeScript | gpl-3.0 | 7,820 |
/*
Copyright (c) 2004-2006, The Dojo Foundation
All Rights Reserved.
Licensed under the Academic Free License version 2.1 or above OR the
modified BSD license. For more information on Dojo licensing, see:
http://dojotoolkit.org/community/licensing.shtml
*/
dojo.provide("dojo.storage");
dojo.requir... | smee/elateXam | taskmodel/taskmodel-core-view/src/main/webapp/dojo/src/storage.js | JavaScript | gpl-3.0 | 13,329 |
#pragma once
#include "DomoticzHardware.h"
#include "csocket.h"
using namespace std;
class bt_openwebnet;
class COpenWebNetTCP : public CDomoticzHardwareBase
{
public:
COpenWebNetTCP(const int ID, const std::string &IPAddress, const unsigned short usIPPort, const std::string &ownPassword);
~COpenWebNetTCP(void);
... | etamminga/domoticz | hardware/OpenWebNetTCP.h | C | gpl-3.0 | 2,914 |
/* -*- c++ -*- */
/*
* Copyright 2012 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio 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, or (at your option... | bastibl/gnuradio | gr-blocks/lib/float_to_char_impl.h | C | gpl-3.0 | 1,480 |
<?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 license an... | openfisma/openfisma | library/Zend/Service/DeveloperGarden/ConferenceCall/Participant.php | PHP | gpl-3.0 | 1,996 |
import SpaceScript
import multiprocessing
from multiprocessing import Process, Queue, Pipe, Lock
from SpaceScript import frontEnd
from SpaceScript import utility
from SpaceScript.frontEnd import terminal
from SpaceScript.utility import terminalUtility
from SpaceScript.terminal import terminal as terminal
from SpaceScri... | Sauron754/SpaceScript | old/testEnvironments/SpaceScript/threadingFunctions.py | Python | gpl-3.0 | 1,480 |
// ************************************************************************** //
//
// BornAgain: simulate and fit scattering at grazing incidence
//
//! @file Core/Parametrization/ParameterDistribution.h
//! @brief Defines class ParameterDistribution.
//!
//! @homepage http://www.bornagainproject.org
//! @l... | waltervh/BornAgain | Core/Parametrization/ParameterDistribution.h | C | gpl-3.0 | 2,676 |
/******************************************************************************
*
* Project: PROJ
* Purpose: Wrapper for nlohmann/json.hpp
* Author: Even Rouault <even dot rouault at spatialys dot com>
*
******************************************************************************
* Copyright (c) 2019, Even... | zcobell/QADCModules | thirdparty/proj-7.2.0/include/proj/internal/include_nlohmann_json.hpp | C++ | gpl-3.0 | 1,756 |
import {Actions} from 'relax-framework';
class StyleActions extends Actions {
init () {
}
getActions () {
return [
'add',
'remove',
'update'
];
}
}
export default new StyleActions();
| GordonDiggs/relax | lib/client/actions/style.js | JavaScript | gpl-3.0 | 230 |
//: C15:StaticHierarchyNavigation.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Navigating class hierarchies with static_cast
#include <iostream>
#include <typeinfo>
using namespace std;
class Shape { public:... | batmancn/MyLife | learn/demos/cpp_linuxc_demo/ThinkingInCPPCode/C15/StaticHierarchyNavigation.cpp | C++ | gpl-3.0 | 1,278 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_65) on Mon Nov 03 10:09:55 CET 2014 -->
<title>M-Index</title>
<meta name="date" content="2014-11-03">
<link rel="stylesheet" type="tex... | thpar/jesse | doc/index-files/index-10.html | HTML | gpl-3.0 | 5,052 |
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace iLynx.ScreenGrabber
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
... | Melamew/iLynx.Common | iLynx.ScreenGrabber/App.xaml.cs | C# | gpl-3.0 | 335 |
/*
* CPAchecker is a tool for configurable software verification.
* This file is part of CPAchecker.
*
* Copyright (C) 2007-2014 Dirk Beyer
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You... | nishanttotla/predator | cpachecker/src/org/sosy_lab/cpachecker/cpa/smgfork/graphs/CLangSMG.java | Java | gpl-3.0 | 14,122 |
<HTML >
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252" />
<TITLE>height</TITLE>
<LINK REL="stylesheet" TYPE="text/css" HREF="../common/ie4.css" />
<LINK REL="stylesheet" TYPE="text/css" HREF="../common/ie5.css" />
<style>
BODY
{
font-family:verdana,arial,helvetica;
margin:0;
}
</style... | gucong3000/handbook | dhtml/DHTML/DHTMLref/properties/height.html | HTML | gpl-3.0 | 6,339 |
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Import Ionicon icons & Google Fonts our Bootstrap theme relies on -->
<link href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css... | gargoris/stonebreaker | html/index.html | HTML | gpl-3.0 | 1,263 |
'''
Base module for all of the exceptions classes used internally.
Created on 10 Dec 2013
@author: alex
'''
class PheException(Exception):
'''
This is the top level class that EVERYTHING must be derived from. In particular,
this class contains an abstract property called 'phe_return_code'. This property... | phe-bioinformatics/emm-typing-tool | modules/phe_exceptions.py | Python | gpl-3.0 | 2,133 |
// ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | buddyfavors/KalturaClient | KalturaClient/Types/KalturaLiveStreamAdminEntryBaseFilter.cs | C# | gpl-3.0 | 1,981 |
//
// DO NOT REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
//
// @Authors:
// timop
//
// Copyright 2004-2012 by OM International
//
// This file is part of OpenPetra.org.
//
// OpenPetra.org is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as publish... | tpokorra/openpetra.js | csharp/ICT/Common/Variant.cs | C# | gpl-3.0 | 54,987 |
# Start a journal
## by hand
(power users)
The simplest possible journal is just an empty file:\
`echo >2017.journal`
The name doesn't matter much and can be changed later.
One file per year is common,
and so is a `.journal` or `.hledger` extension.
Record a transaction, using [journal format](/journal.html):
``... | mstksg/hledger | site/start-journal.md | Markdown | gpl-3.0 | 1,526 |
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Authentication Driver
|--------------------------------------------------------------------------
|
| This option controls the authentication driver that will be utilized.
| This driver manages the retrieval... | DemocracyApps/Community-Budget-Explorer | gbe/config/auth.php | PHP | gpl-3.0 | 2,113 |
# -*- encoding: utf-8 -*-
class Doclibrary::Folder < Gwboard::CommonDb
include System::Model::Base
include System::Model::Base::Content
include System::Model::Tree
include Cms::Model::Base::Content
include Doclibrary::Model::Systemname
belongs_to :parent_folder, :foreign_key => :parent_id, :class_name => '... | ryoon/enisysgw | app/models/doclibrary/folder.rb | Ruby | gpl-3.0 | 19,774 |
/*
* Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
*
* 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 hope tha... | rart/studio-ui | ui/app/src/services/content.ts | TypeScript | gpl-3.0 | 38,805 |
/*
cl_demo.c - demo record & playback
Copyright (C) 2007 Uncle Mike
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 progr... | ptitSeb/xash3d | engine/client/cl_demo.c | C | gpl-3.0 | 28,174 |
<style type="text/css">
#form-pengumuman .modal-body
{
height: auto;
}
.checkbox label
{
font-weight: bolder;
margin-top: 10px;
}
</style>
<form id="form-pengumuman" method="POST">
<input type="hidden" name="notifikasi" value="1">
<input type="hidden" name="kode" value="<?=$kode?>">
<input type="hidden" ... | pandigresik/OpenSID | donjo-app/views/notif/pengumuman.php | PHP | gpl-3.0 | 2,955 |
package com.harium.keel.core.source;
public enum ImageSourceType {
BINARY, GRAYSCALE, RGB, RGBA;
}
| yuripourre/e-motion | src/main/java/com/harium/keel/core/source/ImageSourceType.java | Java | gpl-3.0 | 106 |
package tag7;
import is2.data.Cluster;
import is2.data.F2SF;
import is2.data.Instances;
import is2.data.InstancesTagger;
import is2.data.Long2Int;
import is2.data.Long2IntInterface;
import is2.data.ParametersFloat;
import is2.data.PipeGen;
import is2.data.SentenceData09;
import is2.io.CONLLReader09;
import is2.tools.... | matxin/matxin-lineariser | tg/src/tag7/Pipe.java | Java | gpl-3.0 | 21,991 |
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | ihmc/nomads | misc/cpp/netsensor/lede/netsensor/src/externals/include/xalanc/XPath/XPathFactoryDefault.hpp | C++ | gpl-3.0 | 1,772 |
#ifndef __CJVXRICHAUDIONODE_H__
#define __CJVXRICHAUDIONODE_H__
#include "jvx.h"
#include "templates/jvxComponents/jvxAudioNodes/CjvxAudioNode.h"
#include "jvx_spectrumEstimation/jvx_spectrumEstimation.h"
#include "pcg_jvx_spectrumEstimation.h"
#include "jvx_beampattern/jvx_beampattern.h"
#include "pcg_jvx_beampattern... | jo9k/rtap | RTAP/standalone/env-rls/sdk/software/templates/jvxComponents/jvxAudioNodes/CjvxRichAudioNode.h | C | gpl-3.0 | 6,236 |
/*
Copyright 2014 Mona
mathieu.poux[a]gmail.com
jammetthomas[a]gmail.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 Foundation, either version 3 of the License, or
(at your option) any later version.
This ... | xingyuejun/MonaServer | MonaBase/include/Mona/ServerApplication.h | C | gpl-3.0 | 1,938 |
/*
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
* http://ugfx.org/license.html
*/
/**
* @file src/gfile/gfile_rules.h
* @brief GFILE safety rules header file.
*
* @addtogroup GFILE
... | TRothfelder/Multicopter | libs/ugfx/src/gfile/gfile_rules.h | C | gpl-3.0 | 614 |
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | s20121035/rk3288_android5.1_repo | pdk/apps/TestingCamera2/src/com/android/testingcamera2/CheckableListAdapter.java | Java | gpl-3.0 | 4,127 |
/**
*
* io.c: IO operations, e.g. read input files, console output etc.
*
* A.R.Subramanian
*/
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <ctype.h>
#include "parameters.h"
#include "struct.h"
#include "translate.h"
#include "io.h"
// alig.c
extern st... | qiuqiyuan/abyss_mod | dialign/io.c | C | gpl-3.0 | 30,223 |
package es.ucm.fdi.emf.model.ed2.diagram.edit.policies;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.emf.ecore.EObject;
imp... | RubenM13/E-EDD-2.0 | es.ucm.fdi.ed2.emf.diagram/src/es/ucm/fdi/emf/model/ed2/diagram/edit/policies/LeafCanonicalEditPolicy.java | Java | gpl-3.0 | 6,030 |
#!/usr/bin/env bash
#
# Copyright (c) Facebook, Inc. and its affiliates.
# 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.
set -e
if [ -z "$IOS_CMAKE_TOOLCHAIN_FILE" ]
then
echo "IOS_CMAKE_TOOLCHAIN_FILE not set... | lavima/MLLib | src/torch/aten/src/ATen/native/quantized/cpu/qnnpack/scripts/build-ios-arm64.sh | Shell | gpl-3.0 | 1,438 |
/*
JAdventure - A Java-based RPG
Copyright (C) 2017 TehGuy
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.
... | tehguy/C-RPG-To-Java | src/logic/observer/GameObserver.java | Java | gpl-3.0 | 815 |
/*
This file is part of SCSScript.
Copyright (C) 2006-2012 by Nick Sharmanzhinov
SCSScript 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 ... | SimJobsCEO/scsscriptp3d | Src/SoundEngine/SoundEngine.h | C | gpl-3.0 | 3,316 |
/*
** Copyright 2016 @AR
**
**
**
*/
extern void system_call(void);
#include <types.h>
#include <idt.h>
#include <kernel.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <ptrace.h>
#include <mm.h>
#include <console.h>
#include <sched.h>
#include <wait.h>
#include <fs.h>
#include <console.h>
#de... | magos2/magOS | kernel/sys.c | C | gpl-3.0 | 2,976 |
CREATE OR REPLACE FUNCTION wf.ft_columna_estado_ime (
p_administrador integer,
p_id_usuario integer,
p_tabla varchar,
p_transaccion varchar
)
RETURNS varchar AS
$body$
/**************************************************************************
SISTEMA: Work Flow
FUNCION: wf.ft_columna_estado_ime
DESCRIPCI... | kplian/pxp | sis_workflow/base/funciones/wf.ft_columna_estado_ime.sql | SQL | gpl-3.0 | 5,589 |
# coding=utf-8
# Copyright (C) Duncan Macleod (2015)
#
# This file is part of the GW DetChar python package.
#
# GW DetChar 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
#... | lscsoft/gwdetchar | gwdetchar/omega/__init__.py | Python | gpl-3.0 | 1,099 |
/*********************************************************************************************
*
* 'GamlFormatter.java, in plugin msi.gama.lang.gaml, is part of the source code of the
* GAMA modeling and simulation platform.
* (c) 2007-2016 UMI 209 UMMISCO IRD/UPMC & Partners
*
* Visit https://github.com/gama-pla... | hqnghi88/gamaClone | msi.gama.lang.gaml/src/msi/gama/lang/gaml/formatting/GamlFormatter.java | Java | gpl-3.0 | 7,162 |
<html><body>Shilen's Stone Statue:<br>
(Just like it proves the fact that it has protected this place for a long time, the appearance of the statue shows abrasion here and there. However, the statue is exerting its dignity. When you stand before the statue, the response is detected.)<br>
Hey, stranger... What do you wa... | rubenswagner/L2J-Global | dist/game/data/scripts/ai/areas/PrimevalIsle/Sailren/32109.html | HTML | gpl-3.0 | 848 |
package com.ugcleague.ops.service;
import com.ugcleague.ops.config.LeagueProperties;
import com.ugcleague.ops.domain.document.Incident;
import com.ugcleague.ops.event.IncidentCreatedEvent;
import com.ugcleague.ops.service.discord.command.SplitMessage;
import com.ugcleague.ops.service.discord.util.DiscordSubscriber;
im... | iabarca/ugc-bot-redux | src/main/java/com/ugcleague/ops/service/DiscordService.java | Java | gpl-3.0 | 17,292 |
// Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret
/*******************************************************************************
* This file is part of NUISANCE.
*
* NUISANCE is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public Licen... | clarenc3/nuisance | src/MINERvA/MINERvA_CCCOHPI_XSec_1DQ2_nu.h | C | gpl-3.0 | 1,313 |
-----------------------------------
-- Area: Bastok Markets (S) (87)
-- Mob: Goblin_Lansquenet
-----------------------------------
-- require("scripts/zones/Bastok_Markets_[S]/MobIDs");
-----------------------------------
-- onMobInitialize
-----------------------------------
function onMobInitialize(mob)
end;
... | salamader/ffxi-a | scripts/zones/Bastok_Markets_[S]/mobs/Goblin_Lansquenet.lua | Lua | gpl-3.0 | 821 |
$(document).ready(function () {
var dropdown_fields_item_count = 0; // Global unique counter
$('#dropdown_fields').hide();
if ($('#custom_field_type').val() == 'dropdown' || $('#custom_field_type').val() == 'checkbox') {
$('#dropdown_fields').show();
}
$('#custom_field_type').change(function() {
... | final-gene/mrpassword | system/js/global_custom_fields.js | JavaScript | gpl-3.0 | 1,123 |
/* xoreos-tools - Tools to help with xoreos development
*
* xoreos-tools is the legal property of its developers, whose names
* can be found in the AUTHORS file distributed with this source
* distribution.
*
* xoreos-tools is free software; you can redistribute it and/or
* modify it under the terms of the GNU Ge... | farmboy0/xoreos-tools | src/images/ncgr.cpp | C++ | gpl-3.0 | 10,079 |
let io = require('socket.io-client');
let server = io('http://localhost:3000/');
let dispatcher = require('../dispatcher');
server.on('dispatch', dispatcher.handleServerAction.bind(dispatcher));
dispatcher.register(function(payload) {
if (payload.sendToServer) {
server.emit('message', payload.action);
... | blint6/app-server-deployer | src/web/io/ServerIo.js | JavaScript | gpl-3.0 | 345 |
<!--
Copyright (C) 2017 phantombot.tv
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 th... | stachu540/PhantomBot | resources/web/panel/moderation.html | HTML | gpl-3.0 | 54,283 |
/*!
* joola.io v1.4.0
*
* Copyright 2012 Joola Smart Solutions Ltd.
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
.logger {
font-weight: bold;
font-size: 13px;
position: fixed;
bottom: 15px;
right: 15px;
cursor: pointer;
}
#tblLogger {
border-left: 1p... | nvdnkpr/joola.io.analytics | public/assets/css/joolaio.css | CSS | gpl-3.0 | 70,750 |
package com.encens.khipus.action.finances.reports;
import com.encens.khipus.action.reports.GenericReportAction;
import com.encens.khipus.model.admin.BusinessUnit;
import com.encens.khipus.model.employees.Employee;
import com.encens.khipus.model.finances.CashAccount;
import com.encens.khipus.model.finances.RotatoryFund... | borboton13/sisk13 | src/main/com/encens/khipus/action/finances/reports/RotatoryFundBalancesReportAction.java | Java | gpl-3.0 | 9,791 |
/*****************************************************************************\
* $Id: ipmipower_output.h,v 1.16 2010-02-08 22:02:31 chu11 Exp $
*****************************************************************************
* Copyright (C) 2007-2015 Lawrence Livermore National Security, LLC.
* Copyright (C) 2003-... | chu11/freeipmi | ipmipower/ipmipower_output.h | C | gpl-3.0 | 1,700 |
// ===================================================================================================
// _ __ _ _
// | |/ /__ _| | |_ _ _ _ _ __ _
// | ' </ _` | | _| || | '_/ _` |
// |_|\_\__,_|_|\__|\_,_|_| \_... | buddyfavors/KalturaClient | KalturaClient/Types/KalturaClientNotification.cs | C# | gpl-3.0 | 2,572 |
<?php
// This file is part of Marsupial - 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.
//
// Mood... | projectestac/agora_moodle2 | mod/rcontent/db/log.php | PHP | gpl-3.0 | 1,310 |
/*
* Copyright (C) 2009 Camptocamp
*
* This file is part of MapFish Print
*
* MapFish Print 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 l... | alediator/mapfish-print | src/test/java/org/mapfish/print/config/DnsHostMatcherTest.java | Java | gpl-3.0 | 1,583 |
using System.Collections.Generic;
using FluentAssertions;
using Moq;
using NUnit.Framework;
using NzbDrone.Core.DecisionEngine.Specifications;
using NzbDrone.Core.Movies;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Restrictions;
using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test.DecisionEngineT... | Radarr/Radarr | src/NzbDrone.Core.Test/DecisionEngineTests/ReleaseRestrictionsSpecificationFixture.cs | C# | gpl-3.0 | 4,610 |
<?php
/*********************************************************************************
* Zurmo is a customer relationship management program developed by
* Zurmo, Inc. Copyright (C) 2012 Zurmo Inc.
*
* Zurmo is free software; you can redistribute it and/or modify it under
* the terms of t... | deep9/zurmo | app/protected/modules/missions/controllers/DefaultPortletController.php | PHP | gpl-3.0 | 1,561 |
#!/usr/bin/env ruby
# encoding: utf-8
# ODDB::View::Drugs::TestLimitationText -- oddb.org -- 29.06.2011 -- mhatakeyama@ywesee.com
$: << File.expand_path("../../../src", File.dirname(__FILE__))
require 'minitest/autorun'
require 'flexmock/minitest'
require 'view/drugs/limitationtext'
module ODDB
module View
m... | zdavatz/oddb.org | test/test_view/drugs/limitationtext.rb | Ruby | gpl-3.0 | 1,655 |
{% spaceless %}
{% load i18n %}
<div class="paginator">
<span class="text">{% trans "posts per page" %}</span>
{% for size, url in sizes %}
{% ifequal size current %}
<span class="curr">{{ size }}</span>
{% else %}
<span class="page"><a href="{{ url }}">{{ size }}</a></sp... | CLLKazan/iCQA | qa-engine/forum/skins/default/templates/paginator/page_sizes.html | HTML | gpl-3.0 | 391 |
/*
Copyright (c) 2015-2018 Oliver Lau <ola@ct.de>, Heise Medien GmbH & Co. KG
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)... | ola-ct/Qt-SESAM | libSESAM/util.h | C | gpl-3.0 | 1,783 |
<?php
/*
* This file is part of the Lisem Project.
*
* Copyright (C) 2015-2017 Libre Informatique
*
* This file is licenced under the GNU GPL v3.
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace AppBundle\DependencyInj... | libre-informatique/LISemSymfonyProject | src/AppBundle/DependencyInjection/AppExtension.php | PHP | gpl-3.0 | 1,187 |
// Boost enable_if library
// Copyright 2003 (c) The Trustees of Indiana University.
// Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// Authors: Jaakko Jarvi (jajarvi... | cppisfun/GameEngine | foreign/boost/libs/utility/enable_if/test/no_disambiguation.cpp | C++ | gpl-3.0 | 1,163 |
/**
* This file is part of Hercules.
* http://herc.ws - http://github.com/HerculesWS/Hercules
*
* Copyright (C) 2012-2015 Hercules Dev Team
* Copyright (C) Athena Dev Teams
*
* Hercules is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published ... | flpneo1/Hercules | src/common/ers.c | C | gpl-3.0 | 13,857 |
/// <reference path="../_import/_fibjs.d.ts" />
/// <reference path="../interface/object.d.ts" />
/// <reference path="../interface/SeekableStream.d.ts" />
/**
* @description 包含 multipart 的一个条目数据
*/
declare class Class_HttpUploadData extends Class_object {
/**
* @description 包含本条目数据的文件名
*/
readonl... | fibjs/fibjs | npm/types/dts/interface/HttpUploadData.d.ts | TypeScript | gpl-3.0 | 733 |
// Copyright (C) 2001-2003
// William E. Kempf
//
// 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_0.txt)
#include <boost/thread/mutex.hpp>
#include <boost/thread/condition.hpp>
#include <boost/thread/thread.hpp>... | cppisfun/GameEngine | foreign/boost/libs/thread/example/tennis.cpp | C++ | gpl-3.0 | 2,989 |
/*
* Copyright (C) 2015 PÂRIS Quentin
*
* 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, or
* (at your option) any later version.
*
* This program is dist... | Tomahna/POL-POM-5 | phoenicis-core/src/main/java/com/playonlinux/core/services/manager/ServiceInitializationException.java | Java | gpl-3.0 | 1,038 |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.269
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//----... | styrofoamboy/RainstormStudios | TestEnvironment/Properties/Settings.Designer.cs | C# | gpl-3.0 | 1,070 |
UMI.CMS 15 = b5dfd0dafd842ae04c1e9bfad48e48ee
| gohdan/DFC | known_files/hashes/sys-temp/updates/vote/classes/modules/vote/__events_handlers.php | PHP | gpl-3.0 | 46 |
//---------------------------------------------------------------------------------------
//
// Project: DirectionalityIndicator
//
// Copyright 2014-2015 Sebastian Eichelbaum (http://www.sebastian-eichelbaum.de)
// 2014-2015 Max Planck Research Group "Neuroanatomy and Connectivity"
//
// This file is part of... | NeuroanatomyAndConnectivity/DirectionalityIndicator | src/lib/di/gui/ScreenShotWidget.h | C | gpl-3.0 | 5,814 |
local messager = require 'share.messager'
local lang = require 'share.lang'
local loader
local key_cache = {}
local function get_key(w2l, type, id)
if not key_cache[type] then
local t = {}
for key, meta in pairs(w2l:metadata()[type]) do
t[meta.id] = key
end
key_cache[type... | luciouskami/YDWE | Development/Component/plugin/w3x2lni/script/prebuilt/keydata.lua | Lua | gpl-3.0 | 2,980 |
/*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* 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:... | TGMP/ModularArmour | src/main/java/com/badlogic/gdx/utils/reflect/ArrayReflection.java | Java | gpl-3.0 | 1,772 |
# -------------------------------------------------------------------------------------------------
# Copyright (c) 2015 zsh-syntax-highlighting contributors
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification, are permitted
# provided that the following conditions... | lemones/dotfiles | home/.zsh/plugins/syntax-highlighter/highlighters/main/test-data/prefix-redirection.zsh | Shell | gpl-3.0 | 2,238 |
#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 term... | chinapacs/ImageViewer | Dicom/DataDictionaryGenerator/CodeGenerator.cs | C# | gpl-3.0 | 33,325 |
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\... | OpenFOAM/OpenFOAM-dev | src/OpenFOAM/primitives/ints/uLabel/uLabel.H | C++ | gpl-3.0 | 2,895 |
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# log.py - Copyright (C) 2015 Red Hat, Inc.
# Written by Ryan Barry <rbarry@redhat.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 Foundation; version 2 of... | oVirt/ovirt-node-dbus-backend | src/log.py | Python | gpl-3.0 | 2,690 |
/************************************************************************************
Filename : UIImage.cpp
Content :
Created : 1/5/2015
Authors : Jim Dosé
Copyright : Copyright 2014 Oculus VR, LLC. All Rights reserved.
This source code is licensed under the BSD-style license found in the
LIC... | GTMoogle/StreamTheater | jni/UI/UIImage.cpp | C++ | gpl-3.0 | 1,544 |
/*
* Copyright (C) 2014 LNLS (www.lnls.br)
* Author: Lucas Russo <lucas.russo@lnls.br>
*
* Released according to the GNU GPL, version 3 or any later version.
*/
/* Error definitions and output stringification based on the work available
* at the libsllp project repository: https://github.com/brunoseivam/libsllp ... | lnls-dig/bpm-sw | src/libs/libconvc/src/convc_err.c | C | gpl-3.0 | 624 |
import unittest
import tqdm
from ieml.dictionary.script import Script
from ieml.ieml_database import IEMLDatabase, GitInterface
from ieml.usl import PolyMorpheme, Lexeme, Word
from ieml.usl.decoration.parser.parser import PathParser
from ieml.usl.decoration.path import PolymorphemePath, GroupIndex, FlexionPath, Lexem... | IEMLdev/propositions-restful-server | ieml/test/test_path.py | Python | gpl-3.0 | 8,291 |
/*
** ClanLib SDK
** Copyright (c) 1997-2011 The ClanLib Team
**
** This software is provided 'as-is', without any express or implied
** warranty. In no event will the authors be held liable for any damages
** arising from the use of this software.
**
** Permission is granted to anyone to use this software for a... | titanmonsta/fluorescence | winbuild/include/ClanLib/Core/Math/pointset_math.h | C | gpl-3.0 | 2,626 |
.bg-color-dark {
background-color: #483D8B;
color: #A9A9A9;
}
.footer {
background-color: #483D8B;
color: #A9A9A9;
}
.nav-item>a:hover, .navbar-brand:hover {
color: #FFFFFF;
}
iframe {
overflow:hidden;
} | kostovhg/SoftUni | JavaWeb/JavaWebDevelopmentBasics/g_Servlets_jsp_jpa/metubev2/src/main/webapp/resources/css/style.css | CSS | gpl-3.0 | 212 |
function Get-DbaRegistryRoot {
<#
.SYNOPSIS
Uses SQL WMI to find the Registry Root of each SQL Server instance on a computer
.DESCRIPTION
Uses SQL WMI to find the Registry Root of each SQL Server instance on a computer
.PARAMETER ComputerName
The target computer. This is not a ... | shaneis/dbatools | functions/Get-DbaRegistryRoot.ps1 | PowerShell | gpl-3.0 | 4,048 |
/************************************************************************************//**
* \file Source\HCS12\uart.h
* \brief Bootloader UART communication interface header file.
* \ingroup Target_HCS12
* \internal
*-----------------------------------------------------------------------------------... | AmesianX/OpenBLT | Target/Source/HCS12/uart.h | C | gpl-3.0 | 2,348 |
#
# Copyright 2009 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio 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, or (at your option)
# any later version.
#... | UpYou/relay | usrp_transmit_path.py | Python | gpl-3.0 | 3,809 |
<!DOCTYPE html>
<html>
<head>
<style>
body, input {
font-family: monospace;
background-color: black;
color: green;
}
input {
border-top-width: 1px;
border-bottom-width: 1px;
border-left-width: 0px;
border-right-width: 0px;
border-color: blue;
outline-width: 1px;
outline-width-le... | thraveboy/fbbs-release | fbbs-graph-core.php | PHP | gpl-3.0 | 18,400 |
{% import "macros.html" as macros %}
{% if exercises_count > 0 %}
<h1 id="exerciseCount" class="search-result-summary">
{% trans cnt=exercises_count, q_num=exercises_count|intcomma %}{{q_num}} exercise{% pluralize %}{{q_num}} exercises{% endtrans %}
{% if author_name %}
{% trans ... | maxwward/SCOPEBak | askbot/templates/main_page/headline.html | HTML | gpl-3.0 | 2,161 |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package br.com.ifc.servlets;
import br.com.ifc.util.Media;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servle... | fabriciobizotto/WebJspServlet | ServletExemplos/Servlet04/src/java/br/com/ifc/servlets/MediaServlet.java | Java | gpl-3.0 | 2,227 |
// **********************************************************************
//
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// ***************************************************... | aitormf/JdeRobotWebClients | node_example/node_modules/Ice/DispatchStatus.js | JavaScript | gpl-3.0 | 596 |
/**
* Head
*
* This file should only include basic environment setup logic and browser feature tests
*
* This should be included before the stylesheet so the browser doesn't need to reflow after adding the feature
* detect classes from modernizer. Since this goes before the stylesheet this file should be placed i... | willroche/astonmartin | themes/fe/source/js/head/init.js | JavaScript | gpl-3.0 | 664 |
#ifndef MANTID_ALGORITHMS_APPLYDEADTIMECORR_H_
#define MANTID_ALGORITHMS_APPLYDEADTIMECORR_H_
#include "MantidKernel/System.h"
#include "MantidAPI/Algorithm.h"
namespace Mantid {
namespace Algorithms {
/** ApplyDeadTimeCorr : The dead-time is here applied according to the
non-extendable paralyzable dead time model... | wdzhou/mantid | Framework/Algorithms/inc/MantidAlgorithms/ApplyDeadTimeCorr.h | C | gpl-3.0 | 2,124 |
#!/usr/bin/env python
# This file is part of Py6S.
#
# Copyright 2012 Robin Wilson and contributors listed in the CONTRIBUTORS file.
#
# Py6S 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 versi... | dmwelch/Py6S | setup.py | Python | gpl-3.0 | 2,575 |
'use strict'
const assert = require('assert')
const test = require('../../lib/test')
const Test = test.Test()
describe('Functional Contract Usage', function () {
before(Test.before())
after(Test.after())
this.timeout(10 * 1000)
it('#Constructor usage', Test.it(function (burrow) {
const source = `
... | silasdavis/eris-db | js/test/Functional/index.js | JavaScript | gpl-3.0 | 2,129 |
/*!
* \file matio_test.cc
* \brief This file implements tests for the matio library
* in long arrays.
* \author Carles Fernandez-Prades, 2017. cfernandez(at)cttc.es
*
*
* -----------------------------------------------------------------------------
*
* GNSS-SDR is a Global Navigation Satellite System softwar... | gnss-sdr/gnss-sdr | src/tests/unit-tests/arithmetic/matio_test.cc | C++ | gpl-3.0 | 5,393 |
/* strmsrv.c
*
* This builds a basic stream server. It handles connection creation but
* not any protocol. Instead, it calls a "data received" entry point of the
* caller with any data received, in which case the caller must react accordingly.
* This module works together with the netstream drivers.
*
* There ar... | rngadam/rsyslog | runtime/strmsrv.c | C | gpl-3.0 | 26,676 |
-----------------------------------
-- [Command name]: addAllSpells
-- [Author ]:
-- [Description ]: add all valid spells in the game to char
-----------------------------------
-----------------------------------
-- Action
-----------------------------------
function onTrigger(player)
player:addAllSpells();
e... | kidaa/ffxinfinity | FFXI Server-Development/Build Files/scripts/commands/addallspells.lua | Lua | gpl-3.0 | 323 |
#ifndef METASHELL_PROCESS_EXECUTION_HPP
#define METASHELL_PROCESS_EXECUTION_HPP
// Metashell - Interactive C++ template metaprogramming shell
// Copyright (C) 2016, Abel Sinkovics (abel@sinkovics.hu)
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Pub... | sabel83/metashell | lib/process/include/metashell/process/execution.hpp | C++ | gpl-3.0 | 2,078 |
/*!
* VisualEditor IME test for Firefox on Windows in Welsh.
*
* @copyright 2011-2016 VisualEditor Team and others; see http://ve.mit-license.org
*/
ve.ce.imetests.push( [ 'input-firefox-win7-welsh', [
{ imeIdentifier: 'Welsh', userAgent: 'Mozilla/5.0 (Windows NT 6.1; rv:19.0) Gecko/20100101 Firefox/19.0', startD... | Facerafter/starcitizen-tools | extensions/VisualEditor/lib/ve/tests/ce/imetests/input-firefox-win7-welsh.js | JavaScript | gpl-3.0 | 2,743 |
/* This file was generated by syncqt. */
#ifndef QT_QTNFC_VERSION_H
#define QT_QTNFC_VERSION_H
#define QTNFC_VERSION_STR "5.5.0"
#define QTNFC_VERSION 0x050500
#endif // QT_QTNFC_VERSION_H
| jlspyaozhongkai/Uter | third_party_build/Qt5.5.0/include/QtNfc/qtnfcversion.h | C | gpl-3.0 | 192 |
<?php
namespace Claroline\ForumBundle\Controller;
use Claroline\CoreBundle\Entity\Widget\WidgetInstance;
use Claroline\ForumBundle\Entity\Widget\LastMessageWidgetConfig;
use Claroline\ForumBundle\Form\Widget\LastMessageWidgetConfigType;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\... | stefk/ForumBundle | Controller/WidgetController.php | PHP | gpl-3.0 | 1,924 |
/* zzsrftrn.f -- translated by f2c (version 19980913).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
#include "f2c.h"
/* Table of constant values */
static integer c__1 = 1;
static integer c__0 = 0;
/* $Procedure ZZSRFTRN ( Surface name/ID mapping umbrella ) */
/* Su... | esa/pykep | src/third_party/cspice/zzsrftrn.c | C | gpl-3.0 | 49,143 |
#pragma once
#include <AP_Common/AP_Common.h>
#include <AP_Param/AP_Param.h>
#include <AP_Math/AP_Math.h>
#include <AP_Math/SCurve.h>
#include <AP_Math/SplineCurve.h>
#include <AP_Common/Location.h>
#include <AP_InertialNav/AP_InertialNav.h> // Inertial Navigation library
#include <AC_AttitudeControl/AC_PosControl... | tridge/ardupilot | libraries/AC_WPNav/AC_WPNav.h | C | gpl-3.0 | 16,206 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.