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 |
|---|---|---|---|---|---|
package AnyDBM_File;
use warnings;
use strict;
use 5.006_001;
our $VERSION = '1.01';
our @ISA = qw(NDBM_File DB_File GDBM_File SDBM_File ODBM_File) unless @ISA;
my $mod;
for $mod (@ISA) {
if (eval "require $mod") {
@ISA = ($mod); # if we leave @ISA alone, warnings abound
return 1;
}
}
die "No DBM package w... | operepo/ope | client_tools/svc/rc/usr/share/perl5/core_perl/AnyDBM_File.pm | Perl | mit | 2,611 |
// Copyright (c) 2020 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <policy/fees.h>
#include <test/fuzz/FuzzedDataProvider.h>
#include <test/fuzz/fuzz.h>
#include <test/fuzz/util.h>
#inclu... | rnicoll/dogecoin | src/test/fuzz/policy_estimator_io.cpp | C++ | mit | 988 |
//
// TKDataFormNamePhoneEditor.h
// TelerikUI
//
// Copyright © 2015 Telerik. All rights reserved.
//
#import "TKDataFormTextFieldEditor.h"
@interface TKDataFormNamePhoneEditor : TKDataFormTextFieldEditor
@end
| danik121/HAN-MAD-DT-NATIVESCRIPT | node_modules/nativescript-telerik-ui/platforms/ios/TelerikUI.framework/Headers/TKDataFormNamePhoneEditor.h | C | mit | 218 |
<div class="umb-property-editor umb-mediapicker" ng-class="{'umb-mediapicker-multi':isMultiPicker, 'umb-mediapicker-single':!isMultiPicker}" ng-controller="Umbraco.PropertyEditors.MediaPickerController as vm">
<p ng-if="(vm.mediaItems|filter:{trashed:true}).length == 1"><localize key="mediaPicker_pickedTrashedItem... | umbraco/Umbraco-CMS | src/Umbraco.Web.UI.Client/src/views/propertyeditors/mediapicker/mediapicker.html | HTML | mit | 3,925 |
/*
Highcharts JS v7.1.0 (2019-04-01)
(c) 2010-2019 Highsoft AS
Author: Sebastian Domas
License: www.highcharts.com/license
*/
(function(a){"object"===typeof module&&module.exports?(a["default"]=a,module.exports=a):"function"===typeof define&&define.amd?define("highcharts/modules/histogram-bellcurve",["highcharts... | joeyparrish/cdnjs | ajax/libs/highcharts/7.1.0/modules/histogram-bellcurve.js | JavaScript | mit | 4,265 |
#!/bin/bash
set -e
# set variables
PREFIX="/usr/local"
BASE_DIR="$PREFIX/share/vibe"
SRC_DIR=$(dirname $0)
CONFIG_DIR="/etc/vibe"
CONFIG_FILE="$CONFIG_DIR/vibe.conf"
LOG_DIR="/var/spool/vibe"
LOG_FILE="$LOG_DIR/install.log"
MENU_DIR="$PREFIX/share/applications"
MENU_FILE="$MENU_DIR/vibe.desktop"
USER_NAME="www-vib... | rejectedsoftware/vibe.d | setup-linux.sh | Shell | mit | 4,524 |
/*
* This file provided by Facebook is for non-commercial testing and evaluation
* purposes only. Facebook reserves all rights not expressly granted.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS... | s1rius/fresco | samples/comparison/src/main/java/com/facebook/samples/comparison/urlsfetcher/ImageUrlsRequest.java | Java | mit | 1,379 |
The MIT License
Copyright (c) 2013 Markit On Demand, Inc. http://markitondemand.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the right... | crumudgin/DataApis | LICENSE.md | Markdown | mit | 1,118 |
package org.multibit.hd.ui.views.wizards.edit_contact;
import org.multibit.hd.core.dto.Contact;
import org.multibit.hd.ui.views.wizards.AbstractWizardModel;
import java.util.List;
/**
* <p>Model object to provide the following to "edit contact" wizard:</p>
* <ul>
* <li>Storage of panel data</li>
* <li>State tran... | bitcoin-solutions/multibit-hd | mbhd-swing/src/main/java/org/multibit/hd/ui/views/wizards/edit_contact/EditContactWizardModel.java | Java | mit | 844 |
#!/usr/bin/env python3
# Copyright (C) 2010-2011 Marcin Kościelnicki <koriakin@0x04.net>
# Copyright (C) 2010 Luca Barbieri <luca@luca-barbieri.com>
# Copyright (C) 2010 Marcin Slusarz <marcin.slusarz@gmail.com>
# All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy o... | hakzsam/envytools | rnn/headergen.py | Python | mit | 7,156 |
#!/usr/bin/env perl
########################################################################
# Authors: Christopher Henry, Scott Devoid, Paul Frybarger
# Contact email: chenry@mcs.anl.gov
# Development location: Mathematics and Computer Science Division, Argonne National Lab
############################################... | kbase/KBaseFBAModeling | scripts/fba-phenosensitivity.pl | Perl | mit | 5,501 |
<?php
namespace Kunstmaan\AdminBundle\Service;
use Kunstmaan\AdminBundle\Entity\UserInterface;
use Kunstmaan\AdminBundle\Event\ChangePasswordSuccessEvent;
use Kunstmaan\AdminBundle\Event\Events;
use Kunstmaan\AdminBundle\Service\AuthenticationMailer\AuthenticationMailerInterface;
use Symfony\Component\EventDispatcher... | dbeerten/KunstmaanBundlesCMS | src/Kunstmaan/AdminBundle/Service/PasswordResetService.php | PHP | mit | 2,663 |
var vows = require('vows'),
_ = require('underscore')._,
RawTests = require('./selenium.vows');
// makeSuite takes a configuration and makes a batch of tests, splitting
// up tests according to 'conf.processes'
exports.makeSuite = function(conf) {
var getCapText = function(conf, cap) {
return " (" + cap.bro... | UziTech/jquery.kinetic | test/selenium/makeSuite.js | JavaScript | mit | 1,904 |
#include "Config.h"
using namespace std;
using namespace ramulator;
//Config::Config() {}
//Config::Config(const char* config_fname) : file(config_fname)
void Config::parse(const string& fname)
{
ifstream file(fname);
assert(file.good() && "Bad config file");
string line;
while (getline(file, line))... | i7mist/ramulator | src/Config.cpp | C++ | mit | 1,155 |
/*
* The MIT License (MIT)
*
* Copyright (c) 2007-2015 Broad Institute
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
*... | godotgildor/igv | src/org/broad/igv/track/SelectableFeatureTrack.java | Java | mit | 3,124 |
id_mappings = {
"EX1_097": "Abomination",
"CS2_188": "Abusive Sergeant",
"EX1_007": "Acolyte of Pain",
"NEW1_010": "Al'Akir the Windlord",
"EX1_006": "Alarm-o-Bot",
"EX1_382": "Aldor Peacekeeper",
"EX1_561": "Alexstrasza",
"EX1_393": "Amani Berserker",
"CS2_038": "Ancestral Spirit",
... | slaymaker1907/hearthbreaker | tests/card_tests/id_mapping.py | Python | mit | 23,324 |
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.excerpt %}{{ page.excer... | mrbriandavis/resumecard | _includes/head.html | HTML | mit | 1,420 |
/*
* Copyright (c) 2000-2016 Apple Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file exc... | e-t-h-a-n/esdarwin | macos-10124/esdarwin-destroot-b1/System/Library/Frameworks/System.framework/Versions/B/PrivateHeaders/netinet6/ip6_var.h | C | mit | 8,526 |
package scorex.crypto.ads.merkle
import java.io.File
import org.mapdb.{DBMaker, HTreeMap, Serializer}
import scorex.crypto.hash.CryptographicHash.Digest
import scorex.storage.Storage
import scorex.utils.ScorexLogging
import scala.util.{Failure, Success, Try}
@deprecated("Use tree storage from scrypto library", "1.2... | ScorexProject/Scorex-Lagonaki | scorex-basics/src/main/scala/scorex/crypto/ads/merkle/TreeStorage.scala | Scala | cc0-1.0 | 1,770 |
/*******************************************************************************
* Copyright (c) 2017 Red Hat, Inc and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX... | jboss-reddeer/reddeer | tests/org.eclipse.reddeer.eclipse.test/src/org/eclipse/reddeer/eclipse/test/Activator.java | Java | epl-1.0 | 1,910 |
/*
* Copyright 2012 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.jboss.forge.addon.maven.projects.facets;
import java.util.Arrays;
import java.util.List;
import java.util.Properties;
import ... | agoncal/core | maven/impl-projects/src/main/java/org/jboss/forge/addon/maven/projects/facets/MavenJavaCompilerFacet.java | Java | epl-1.0 | 3,999 |
package org.restlet.example.book.restlet.ch05.sec6.server;
import org.restlet.example.book.restlet.ch03.sect5.sub5.common.RootResource;
import org.restlet.resource.ServerResource;
/**
* Root resource implementation.
*/
public class RootServerResource extends ServerResource implements RootResource {
p... | debrief/debrief | org.mwc.asset.comms/docs/restlet_src/org.restlet.example/org/restlet/example/book/restlet/ch05/sec6/server/RootServerResource.java | Java | epl-1.0 | 431 |
/*
* Copyright (c) 2012-2017 Red Hat, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red H... | TypeFox/che | wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceEvent.java | Java | epl-1.0 | 1,640 |
/**
* Copyright (c) 2005-2011 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Eclipse Public License (EPL).
* Please see the license.txt included with this distribution for details.
* Any modifications to this file must keep this entire header intact.
*/
/*
* Created on Oct 13, 2004
... | akurtakov/Pydev | plugins/org.python.pydev/src/org/python/pydev/tree/AllowValidPathsFilter.java | Java | epl-1.0 | 917 |
/**
* Copyright 2005-2010 Noelios Technologies.
*
* The contents of this file are subject to the terms of one of the following
* open source licenses: LGPL 3.0 or LGPL 2.1 or CDDL 1.0 or EPL 1.0 (the
* "Licenses"). You can select the license that you prefer but you may not use
* this file except in complia... | debrief/debrief | org.mwc.asset.comms/docs/restlet_src/org.restlet/org/restlet/engine/log/LoggingThreadFactory.java | Java | epl-1.0 | 3,017 |
/**
* Copyright (c) 2011, 2014 Eurotech and/or its affiliates
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
... | mhddurrah/kura | kura/org.eclipse.kura.core/src/main/java/org/eclipse/kura/core/cloud/CloudPayloadEncoder.java | Java | epl-1.0 | 561 |
/*****************************************************************************
* posterize.c : Posterize video plugin for vlc
*****************************************************************************
* Copyright (C) 2010 VLC authors and VideoLAN
* $Id: 4f80ff2a53336271b7e6a64f1a744023eb89a6d0 $
*
* Authors: B... | sunqueen/vlc-2.1.4.32.subproject-2013-update2 | modules/video_filter/posterize.c | C | gpl-2.0 | 17,843 |
<?php
/**
* @version $Id: default.php 39490 2011-07-05 06:50:31Z btowles $
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
?>
<?php if ($that->show_page_heading): ?>
<h1><?ph... | larenz/Gokujo | components/com_rokgallery/templates/gallery/list-2col/default.php | PHP | gpl-2.0 | 1,003 |
<?php
/**
* @file
* Contains Drupal\page_manager\Form\PageVariantAddForm.
*/
namespace Drupal\page_manager\Form;
use Drupal\Core\Form\FormStateInterface;
/**
* Provides a form for adding a variant.
*/
class PageVariantAddForm extends PageVariantFormBase {
/**
* {@inheritdoc}
*/
protected function su... | ccatalina/panopoly8.x-2.0-alpha1 | profiles/panopoly/modules/contrib/page_manager/src/Form/PageVariantAddForm.php | PHP | gpl-2.0 | 593 |
#!/bin/sh
# /**
# * ---------------------------------------------------------------------
# * GLPI - Gestionnaire Libre de Parc Informatique
# * Copyright (C) 2015-2018 Teclib' and contributors.
# *
# * http://glpi-project.org
# *
# * based on GLPI - Gestionnaire Libre de Parc Informatique
# * Copyright (C) 200... | orouet/glpi | tools/genapidoc.sh | Shell | gpl-2.0 | 1,662 |
/*
===========================================================================
Copyright (C) 1999-2005 Id Software, Inc.
This file is part of Quake III Arena source code.
Quake III Arena source code is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License as
... | sethk/quake3-ios | code/q3_ui/ui_controls2.c | C | gpl-2.0 | 53,979 |
/*************************************************************************
*
* AVRGAMING LLC
* __________________
*
* [2013] AVRGAMING LLC
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of AVRGAMING LLC and its suppliers,
* if any. The intellectual an... | help3r/civcraft-1 | civcraft/src/com/avrgaming/civcraft/command/debug/DebugFarmCommand.java | Java | gpl-2.0 | 3,603 |
# -*- coding: utf-8 -*-
## $Id: webmessage_templates.py,v 1.32 2008/03/26 23:26:23 tibor Exp $
##
## handles rendering of webmessage module
##
## This file is part of Invenio.
## Copyright (C) 2009, 2010, 2011 CERN.
##
## Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU G... | MSusik/invenio | invenio/legacy/bibexport/templates.py | Python | gpl-2.0 | 29,937 |
/* rescoff.c -- read and write resources in Windows COFF files.
Copyright 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support.
This file is part of GNU Binutils.
This program is free software; you can redistribute it and/or modify
it under the terms of the ... | nslu2/Build-binutils-2.13.2 | binutils/rescoff.c | C | gpl-2.0 | 21,675 |
.banner_url_form_field fieldset {
float: left;
clear: left;
margin-bottom: 20px;
}
.banner_url_form_field .button,
.banner_url_form_field label {
float: left;
margin-right: 10px;
}
.banner_url_form_field label {
line-height: 2em;
}
.banner_url_form_field img {
float: left;
clear: left;
margin-top: 10px;
m... | thazinthein/universal | wp-content/plugins/woocommerce-category-banner/assets/css/wcb-admin.css | CSS | gpl-2.0 | 339 |
obj-y += io.o dma.o memory.o
ifndef CONFIG_ARM_ARCH_TIMER
obj-y += timer.o
endif
obj-$(CONFIG_USE_OF) += board-dt.o
obj-y += acpuclock.o
obj-$(CONFIG_HW_PERF_EVENTS) += perf_trace_counters.o perf_trace_user.o
obj-$(CONFIG_ARCH_MSM_KRAIT) += msm-krait-l2-accessors.o perf_event_msm_krait_l2.o
obj-$(CONFIG_ARCH_MSM_KRAIT... | rostifaner/android_kernel_xiaomi_msm8956 | arch/arm/mach-msm/Makefile | Makefile | gpl-2.0 | 3,128 |
from autotest.client.shared import error
from virttest import qemu_monitor
def run(test, params, env):
"""
QMP Specification test-suite: this checks if the *basic* protocol conforms
to its specification, which is file QMP/qmp-spec.txt in QEMU's source tree.
IMPORTANT NOTES:
o Most tests depe... | uni-peter-zheng/tp-qemu | qemu/tests/qmp_basic.py | Python | gpl-2.0 | 14,858 |
/*
* Driver O/S-independent utility routines
*
* $Copyright Open Broadcom Corporation$
* $Id: bcmutils.c 496061 2014-08-11 06:14:48Z $
*/
#include <bcm_cfg.h>
#include <typedefs.h>
#include <bcmdefs.h>
#include <stdarg.h>
#ifdef BCMDRIVER
#include <osl.h>
#include <bcmutils.h>
#else /* !BCMDRIVER */
#include <... | alyubomirov/Amlogic_s905-kernel | drivers/amlogic/wifi/bcmdhd/bcmutils.c | C | gpl-2.0 | 78,045 |
<?php
// Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s).
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY. Ple... | Olari0/Finugriling | cite/styles/cite_AnnGlaciol_JGlaciol.php | PHP | gpl-2.0 | 27,347 |
/*
* The MIT License (MIT)
*
* Copyright (c) 2014 Apigee Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* t... | rgparkins/http-stub | src/tests/node_modules/swagger-tools/middleware/swagger-metadata.js | JavaScript | gpl-2.0 | 15,539 |
/* ---------- Preview Styles ----------- */
.js #preview {
clear: both;
float: none !important;
}
#preview {
background-color: #fff;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
line-height: 1.5;
overflow: hidden;
word-wrap: break-word;
margin-bottom: 10px;
}
#preview-header... | marceliotstein/mes8 | core/themes/bartik/color/preview.css | CSS | gpl-2.0 | 3,927 |
<P>
Line 1.
</P>
<TABLE CELLPADDING="4">
<TR>
<TD>one</TD>
<TD>two</TD>
<TD>three</TD>
<TD>four</TD>
</TR>
<TR>
<TD>one</TD>
<TD>two</TD>
<TD>three</TD>
</TR>
<TR>
<TD>one</TD>
<TD>two</TD>
</TR>
<TR>
<TD>one</TD>
</TR>
</TABLE>
<P>
Line 2.
</P>
| farvardin/txt2tags-test | test/csv/ok/cell-decrease.html | HTML | gpl-2.0 | 248 |
<?php
/**
* This file belongs to the YIT Plugin Framework.
*
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.txt
*/
... | lieison/IndustriasFenix | wp-content/plugins/yith-live-chat/plugin-options/general-options.php | PHP | gpl-2.0 | 3,192 |
<?php
/**
* Piwik - Open source web analytics
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\DataTable\Renderer;
use Piwik\DataTable\Manager;
use Piwik\DataTable;
use Piwik\DataTable\Renderer;
/**
* Simple output
*/
class Console extends Ren... | agiza/vs-port | piwik/core/DataTable/Renderer/Console.php | PHP | gpl-2.0 | 4,950 |
<?php
if (function_exists('load_plugin_textdomain')) {
load_plugin_textdomain('newsletter-statistics', false, 'newsletter/statistics/languages');
load_plugin_textdomain('newsletter', false, 'newsletter/languages');
}
require_once NEWSLETTER_INCLUDES_DIR . '/controls.php';
$module = NewsletterStatistics::instanc... | dragonshivan/learninglife | wp-content/plugins/newsletter/statistics/index.php | PHP | gpl-2.0 | 5,339 |
////////////////////////////////////////////////////////////////////////////////////////
//
// Nestopia - NES/Famicom emulator written in C++
//
// Copyright (C) 2003-2008 Martin Freij
//
// This file is part of Nestopia.
//
// Nestopia is free software; you can redistribute it and/or modify
// it under the terms of th... | JasonGoemaat/NestopiaDx9 | source/core/input/NstInpAdapter.cpp | C++ | gpl-2.0 | 5,464 |
<?php
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Tax\Test\Unit\Model\TaxClass;
use Magento\Framework\Api\SortOrder;
use \Magento\Tax\Model\TaxClass\Repository;
use Magento\Framework\Exception\CouldNotDeleteException;
use Magento\Framework\Excep... | FPLD/project0 | vendor/magento/module-tax/Test/Unit/Model/TaxClass/RepositoryTest.php | PHP | gpl-2.0 | 14,359 |
// closure to avoid namespace collision
(function(){
var edTest = '';
// creates the plugin
tinymce.create('tinymce.plugins.js_columns', {
init : function(ed, url) {
ed.addButton('js_columns_button', {
title : 'Add Column',
image : url+'/icon_columns.png',
... | marcminor/citywell | wp-content/themes/savior/_theme_settings/shortcodes/columns/script.js | JavaScript | gpl-2.0 | 3,717 |
#include "builtin.h"
#include "cache.h"
#include "refs.h"
#include "parse-options.h"
static const char * const git_symbolic_ref_usage[] = {
N_("git symbolic-ref [<options>] <name> [<ref>]"),
N_("git symbolic-ref -d [-q] <name>"),
NULL
};
static int check_symref(const char *HEAD, int quiet, int shorten, int print)
... | cpackham/git | builtin/symbolic-ref.c | C | gpl-2.0 | 2,070 |
<?php
namespace Drupal\taxonomy\Plugin\migrate\source\d6;
use Drupal\migrate\Row;
/**
* Gets all the vocabularies based on the node types that have Taxonomy enabled.
*
* @MigrateSource(
* id = "d6_taxonomy_vocabulary_per_type",
* source_module = "taxonomy"
* )
*/
class VocabularyPerType extends Vocabulary... | morethanthemes/magazine-lite | site/core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php | PHP | gpl-2.0 | 1,560 |
package ProFTPD::Tests::Commands::HELP;
use lib qw(t/lib);
use base qw(ProFTPD::TestSuite::Child);
use strict;
use File::Spec;
use IO::Handle;
use ProFTPD::TestSuite::FTP;
use ProFTPD::TestSuite::Utils qw(:auth :config :features :running :test :testsuite);
$| = 1;
my $order = 0;
my $TESTS = {
help_ok => {
o... | pghmcfc/proftpd | tests/t/lib/ProFTPD/Tests/Commands/HELP.pm | Perl | gpl-2.0 | 4,152 |
--- Screen module
--- Screen fields.
-- Inherits from Object.
-- @see object.Object
-- @table Screen
-- @int[opt=0] x x position
-- @int[opt=0] y y position
-- @int[opt=0] width width
-- @int[opt=0] height height
-- @tparam control.Control activeControl active control
-- @tparam control.Control focusedControl focused ... | g0g0dancer/searework | LuaUI/Widgets/chili_new/controls/screen.lua | Lua | gpl-2.0 | 8,646 |
/*
* This file is part of the OregonCore Project. See AUTHORS file for Copyright information
*
* 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
... | superwow/foton.core | src/game/Formulas.h | C | gpl-2.0 | 6,022 |
/* -*- c++ -*- ----------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04... | Pakketeretet2/lammps | src/USER-MISC/angle_quartic.h | C | gpl-2.0 | 1,198 |
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of ... | vanfanel/scummvm | engines/ultima/shared/engine/data_archive.h | C | gpl-2.0 | 6,204 |
<?php
/**
* @version: $Id: list.php 626 2011-01-19 18:13:09Z Sigrid Suski $
* @package: SobiPro Template
* ===================================================
* @author
* Name: Sigrid Suski & Radek Suski, Sigsiu.NET GmbH
* Email: sobi[at]sigsiu.net
* Url: http://www.Sigsiu.NET
* =======================... | kiennd146/nhazz.com | tmp/install_50053093b34b9/Admin/acl/list.php | PHP | gpl-2.0 | 2,949 |
<html>
<head>
<title>DragMath Documentation - License</title>
</head>
<body>
<span style=" color: #000099; font-size: x-large; font-family: Arial;"><strong>DragMath copyright information</strong></span>
<span style=" font-size: small; font-family: Arial;">
<p>DragMath is licensed under the GNU General Publ... | nadavkav/MoodleTAO | lib/editor/common/dragmath/COPYRIGHT.html | HTML | gpl-2.0 | 1,774 |
/*
* Copyright (C) 2008-2012 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.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 ver... | MistCore/MistCore | src/server/game/Battlegrounds/Zones/BattlegroundEY.cpp | C++ | gpl-2.0 | 44,296 |
/* C type extensions */
typedef unsigned char uint8_t;
typedef char int8_t;
typedef unsigned short int uint16_t;
typedef short int int16_t;
typedef unsigned int uint32_t;
typedef int int32_t;
typedef unsigned long long uint64_t;
typedef long long int64_t;
typedef unsigned long size_t;
typedef void ... | eduardocrn/tp1HellFireOs | arch/mips/hf-risc/include/hal.h | C | gpl-2.0 | 4,317 |
/** -*- c++ -*-
* Copyright (C) 2008 Doug Judd (Zvents, 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 2 of the
* License, or any late... | sjhalaz/hypertable | src/cc/Hypertable/Lib/BlockCompressionHeaderCommitLog.cc | C++ | gpl-2.0 | 1,930 |
<?php
$HOME = realpath(dirname(__FILE__)) . "/../../../..";
require_once($HOME . "/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php");
/*
* This file is part of EC-CUBE
*
* Copyright(c) 2000-2014 LOCKON CO.,LTD. All Rights Reserved.
*
* http://www.lockon.co.jp/
*
* This program is free soft... | poego/eccube-2_13 | tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_sfUpdateOrderNameColTest.php | PHP | gpl-2.0 | 3,552 |
<!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_55) on Tue Aug 12 22:14:04 PDT 2014 -->
<title>Uses of Class org.apache.nutch.plugin.PluginDescriptor (apache-nutch 1.9 API)</title>
<m... | aglne/nutcher | nutch-chinese/apache-nutch-1.9/docs/api/org/apache/nutch/plugin/class-use/PluginDescriptor.html | HTML | gpl-2.0 | 14,528 |
/*
* Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | teamfx/openjfx-9-dev-rt | modules/javafx.base/src/main/java/com/sun/javafx/event/RedirectedEvent.java | Java | gpl-2.0 | 2,213 |
<?php
/*
* Copyright (c) 2009 Bouncing Minds - Option 3 Ventures Limited
*
* This file is part of the Regions plug-in for Flowplayer.
*
* The Regions plug-in 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 So... | adqio/revive-adserver | plugins_repo/openXVideoAds/plugins/bannerTypeHtml/vastOverlayBannerTypeHtml/vastOverlayHtml.delivery.php | PHP | gpl-2.0 | 2,446 |
/*
* Renamed dm_getopt because MySQL keeps putting things in my_ space.
*
* getopt.h - cpp wrapper for dm_getopt to make it look like getopt.
* Copyright 1997, 2000, 2001, 2002, Benjamin Sittler
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associate... | moveone/dbmail | src/dm_getopt.h | C | gpl-2.0 | 3,174 |
/*
* Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
*
* Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
*
* Copyright (C) 2009-2010 TrinityZero <http://www.trinityzero.org/>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General ... | brotalnia/TrinityZero | src/framework/Policies/Singleton.h | C | gpl-2.0 | 1,927 |
/* Copyright (C) 2005-2014 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | infoburp/glibc | sysdeps/unix/sysv/linux/readlinkat.c | C | gpl-2.0 | 1,298 |
<?php
/**
*
* NOTICE OF LICENSE
*
* This source file is subject to the GNU General Public License (GPL 3)
* that is bundled with this package in the file LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Payone to newer
* versions in the future. If you wish to customize Pay... | ReichardtIT/modified-inkl-bootstrap-by-karl | includes/external/payone/php/Payone/Api/Response/Management/GetFile.php | PHP | gpl-2.0 | 1,824 |
/*
* Copyright (C) 2007 Google, Inc.
* Copyright (c) 2008-2010, Code Aurora Forum. All rights reserved.
* Author: Brian Swetland <swetland@google.com>
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, di... | maniacx/android_kernel_htcleo-3.0_old | arch/arm/mach-msm/include/mach/msm_iomap-8x50.h | C | gpl-2.0 | 3,500 |
#
# Makefile for the Linux AX.25 layer.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...
O_TARGET := ax25.o
O... | jur/linux-2.2.1-ps2 | net/ax25/Makefile | Makefile | gpl-2.0 | 768 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="categories" content="prime">
<meta name="product" content="Prime">
<title>Prime Navigation and the Guide</title>
<link rel="stylesheet" type="text/css" href=... | platinhom/ManualHom | Schrodinger/Schrodinger_2012_docs/maestro/help_Maestro91/prime/info_nav.html | HTML | gpl-2.0 | 4,482 |
/*******************************************************************************
* This file is part of OpenNMS(R).
*
* Copyright (C) 2002-2014 The OpenNMS Group, Inc.
* OpenNMS(R) is Copyright (C) 1999-2014 The OpenNMS Group, Inc.
*
* OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.
*
* OpenNMS(... | jeffgdotorg/opennms | opennms-web-api/src/main/java/org/opennms/web/category/CategoryModel.java | Java | gpl-2.0 | 15,627 |
/* COVERAGE: unshare */
#define _GNU_SOURCE
#include <sched.h>
int main()
{
unshare(CLONE_FILES);
//staptest// unshare (CLONE_FILES) = 0
unshare(-1);
//staptest// unshare (CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_PTRACE|CLONE_VFORK|CLONE_PARENT|CLONE_THREAD|CLONE_NEWNS|CLONE_SYSVSEM|CLONE_SE... | serhei/stap-experiments | testsuite/systemtap.syscall/unshare.c | C | gpl-2.0 | 376 |
/*!
* VisualEditor ContentEditable View class.
*
* @copyright 2011-2014 VisualEditor Team and others; see http://ve.mit-license.org
*/
/**
* Generic base class for CE views.
*
* @abstract
* @extends OO.ui.Element
* @mixins OO.EventEmitter
*
* @constructor
* @param {ve.dm.Model} model Model to observe
* @p... | felixonmars/app | extensions/VisualEditor/lib/ve/src/ce/ve.ce.View.js | JavaScript | gpl-2.0 | 5,092 |
import React from "react";
import PropTypes from "prop-types";
import Box from "grommet/components/Box";
import Heading from "grommet/components/Heading";
import Anchor from "../partials/Anchor";
import Label from "grommet/components/Label";
import Paragraph from "grommet/components/Paragraph";
import LinkIcon from "... | pamfilos/data.cern.ch | ui/cap-react/src/components/welcome/Documentation.js | JavaScript | gpl-2.0 | 4,448 |
<?php
//
// ## BEGIN COPYRIGHT, LICENSE AND WARRANTY NOTICE ##
// SOFTWARE NAME: eZ Flow
// SOFTWARE RELEASE: 5.0.0
// COPYRIGHT NOTICE: Copyright (C) 1999-2012 eZ Systems AS
// SOFTWARE LICENSE: GNU General Public License v2.0
// NOTICE: >
// This program is free software; you can redistribute it and/or
// modify it... | alafon/ezpublish-community-built | ezpublish_legacy/var/storage/packages/eZ-systems/ezflow_extension/ezextension/ezflow/modules/ezflow/function_definition.php | PHP | gpl-2.0 | 5,710 |
<?php
require_once(sfConfig::get('sf_lib_dir').'/filter/doctrine/BaseFormFilterDoctrine.class.php');
/**
* UniqueTest filter form base class.
*
* @package filters
* @subpackage UniqueTest *
* @version SVN: $Id: sfDoctrineFormFilterGeneratedTemplate.php 11675 2008-09-19 15:21:38Z fabien $
*/
class BaseUniq... | gease/abajour | lib/symfony/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseUniqueTestFormFilter.class.php | PHP | gpl-2.0 | 1,456 |
<?php
/**
* Sidebar Left
*
* Content for our sidebar, provides prompt for logged in users to create widgets
*
* @package Openstrap
* @subpackage Openstrap
* @since Openstrap 0.1
*/
?>
<?php $col = openstrap_get_sidebar_cols(); ?>
<!-- Sidebar -->
<div class="col-md-<?php echo $col;?> sidebar-left" >
<?php i... | IdeasFactoryPL/stef-pol | wp-content/themes/openstrap/sidebar-left.php | PHP | gpl-2.0 | 742 |
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of ... | vanfanel/scummvm | engines/toon/detection.cpp | C++ | gpl-2.0 | 5,591 |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/xr19rel/WINNT_5.2_Depend/mozilla/embedding/browser/webBrowser/nsIWebBrowserPrint.idl
*/
#ifndef __gen_nsIWebBrowserPrint_h__
#define __gen_nsIWebBrowserPrint_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't ... | nikgoodley-ibboost/forklabs-javaxpcom | tools/xulrunner-1.9.0.13-sdk/sdk/include/nsIWebBrowserPrint.h | C | gpl-2.0 | 17,681 |
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Logging;
using MediaBrowser.Providers.Manager;
using System.Collections.Generic;
using MediaBr... | gsnerf/MediaBrowser | MediaBrowser.Providers/Games/GameSystemMetadataService.cs | C# | gpl-2.0 | 1,499 |
/**
* This file is part of the KDE project.
*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 2000 Simon Hausmann <hausmann@kde.org>
* (C) 2000 Stefan Schimanski (1Stein@gmx.de)
* (C) 2003 Apple Computer, Inc.
* (C) 2005 Niels Leenheer <niels.leenheer@gmail.com>
*
... | melvyn-sopacua/kdelibs | khtml/rendering/render_frames.cpp | C++ | gpl-2.0 | 25,663 |
<!-- START Category Search -->
<div class="em-search-category em-search-field">
<label><?php echo esc_html(get_option('dbem_search_form_category_label')); ?></label>
<?php
$selected = !empty($_REQUEST['category']) ? $_REQUEST['category'] : 0;
EM_Object::ms_global_switch(); //in case in global tables mode of... | Christopherallen/idc-dev | wp-content/plugins/events-manager/templates/templates/search/categories.php | PHP | gpl-2.0 | 804 |
<HTML>
<CENTER><A HREF = "http://lammps.sandia.gov">LAMMPS WWW Site</A> - <A HREF = "Manual.html">LAMMPS Documentation</A> - <A HREF = "Section_commands.html#comm">LAMMPS Commands</A>
</CENTER>
<HR>
<H3>compute stress/atom command
</H3>
<P><B>Syntax:</B>
</P>
<PRE>compute ID group-ID stress/atom keyword ...
<... | nchong/icliggghts | doc/compute_stress_atom.html | HTML | gpl-2.0 | 5,266 |
<!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 (1.8.0_66) on Mon Feb 24 12:02:36 PST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>com.marginallyclever.robotOv... | i-make-robots/Arm5 | docs/com/marginallyclever/robotOverlord/engine/undoRedo/package-frame.html | HTML | gpl-2.0 | 1,039 |
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
**... | repstd/modified_vlc | contrib/i586-mingw32msvc/include/qt4/src/corelib/kernel/qfunctions_vxworks.h | C | gpl-2.0 | 4,504 |
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2009 Ralph Schreyer
Copyright (C) 2009 Klaus Spanderen
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free so... | EuroPlusFinance/Software | Quantum Trading Platforms/QuantLib-1.4/ql/math/matrixutilities/bicgstab.hpp | C++ | gpl-2.0 | 1,691 |
/****************************************************************************
* ixj.c
*
* Device Driver for Quicknet Technologies, Inc.'s Telephony cards
* including the Internet PhoneJACK, Internet PhoneJACK Lite,
* Internet PhoneJACK PCI, Internet LineJACK, Internet PhoneCARD and
* SmartCABLE
*
* (c) Co... | xtreamerdev/linux-xtr | drivers/telephony/ixj.c | C | gpl-2.0 | 321,287 |
/*
* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
* above copyright not... | aicjofs/android_kernel_lge_v500 | drivers/staging/prima_kk_2_7/CORE/MAC/src/pe/lim/limUtils.h | C | gpl-2.0 | 21,027 |
/*
* This file is part of the CMaNGOS Project. See AUTHORS file for Copyright information
*
* 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 o... | Leadballoon2000/mangos-tbc | src/game/WaypointMovementGenerator.cpp | C++ | gpl-2.0 | 15,674 |
/* Copyright_License {
XCSoar Glide Computer - http://www.xcsoar.org/
Copyright (C) 2000-2014 The XCSoar Project
A detailed list of copyright holders can be found in the file "AUTHORS".
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
... | CnZoom/XcSoarWork | src/Engine/Task/Ordered/AATIsolineSegment.hpp | C++ | gpl-2.0 | 2,037 |
<?php
/**
* @version $Id$
* @package WR PageBuilder
* @author WooRockets Team <support@www.woorockets.com>
* @copyright Copyright (C) 2012 www.woorockets.com. All Rights Reserved.
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
*
* Websites: http://www.www.woorockets.com
* ... | SayenkoDesign/playground | wp-content/plugins/wr-pagebuilder/core/helper/html/button-group.php | PHP | gpl-2.0 | 1,161 |
/*
* Freeplane - mind map editor
* Copyright (C) 2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev
*
* This file is modified by Dimitry Polivaev in 2008.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as p... | fnatter/freeplane-debian-dev | freeplane/src/main/java/org/freeplane/view/swing/map/cloud/CloudView.java | Java | gpl-2.0 | 6,981 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<script src="../../lib/prototype.js" type="text/javascript"></script>
<script src="../../src/scriptaculous.js" type="text/ja... | nikhilsharma869/bio-pharma-dev | scriptaculous/test/functional/dragdrop7_test.html | HTML | gpl-2.0 | 5,404 |
#ifndef UNCALI_ACCHUB_H
#define UNCALI_ACCHUB_H
#include <linux/ioctl.h>
#endif
| Alberto96/android_kernel_ulefone_k11ta_a | drivers/misc/mediatek/uncali_acc/uncali_acchub/uncali_acchub.h | C | gpl-2.0 | 82 |
#ifndef __INPUT_FORMATTER_LOCAL_H_INCLUDED__
#define __INPUT_FORMATTER_LOCAL_H_INCLUDED__
#include "input_formatter_global.h"
#include "isp.h" /* ISP_VEC_ALIGN */
typedef struct input_formatter_state_s input_formatter_state_t;
#define HIVE_IF_FSM_SYNC_STATUS 0x100
#define HIVE_IF_FSM_SYNC_COUNTER ... | nels83/android_kernel_samsung_santos10 | drivers/media/video/atomisp2/css2400/hive_isp_css_2400_system/host/input_formatter_local.h | C | gpl-2.0 | 2,011 |
<?php
/**
* @package com.jpexs.image.bmp
*
* JPEXS ICO Image functions
* @version 2.1
* @author JPEXS
* @copyright (c) JPEXS 2004-2009
*
* Webpage: http://www.jpexs.com
* Email: jpexs@jpexs.com
*
* If you like my script, you can donate... visit my webpages or email me for more info.
*
* ... | jegelstaff/formulize | libraries/wideimage/lib/vendor/JPEXS/ico.php | PHP | gpl-2.0 | 27,177 |
using System;
class Foo<T>
{
public enum TestEnum { One, Two, Three }
public TestEnum Test;
public Foo (TestEnum test)
{
this.Test = test;
}
}
class X
{
public static void Main ()
{
Foo<int>.TestEnum e = Foo<int>.TestEnum.One;
Console.WriteLine (e);
Foo<int> foo = new Foo<int> (e);
foo.Test = e;
... | xen2/mcs | tests/gtest-313.cs | C# | gpl-2.0 | 324 |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using UtilityExtensions;
using Intuit.Ipp.Core;
using Intuit.Ipp.Security;
using Intuit.Ipp.Data.Qbo;
namespace CmsData.Classes.QuickBooks
{
public class QBOHelper : QuickBooksHelper
... | RGray1959/MyParish | CmsData/Classes/QuickBooks/QBOHelper.cs | C# | gpl-2.0 | 2,727 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 4.3.2 or newer
*
* @package CodeIgniter
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2006, EllisLab, Inc.
* @license http://codeigniter.... | Calico90/codeigniter-version-scanner | CodeIgniter_1.6.3/CodeIgniter_1.6.3/system/libraries/Unit_test.php | PHP | gpl-2.0 | 7,526 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.