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 |
|---|---|---|---|---|---|
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Rosegarden
A MIDI and audio sequencer and musical notation editor.
Copyright 2000-2018 the Rosegarden development team.
Other copyrights also apply to some parts of this work. Please
see the AUTHORS file and individu... | bownie/RosegardenW | gui/dialogs/ConfigureDialogBase.h | C | gpl-2.0 | 1,826 |
<?php
/**
* OrangeHRM is a comprehensive Human Resource Management (HRM) System that captures
* all the essential functionalities required for any enterprise.
* Copyright (C) 2006 OrangeHRM Inc., http://www.orangehrm.com
*
* OrangeHRM is free software; you can redistribute it and/or modify it under the terms of
... | monokal/docker-orangehrm | www/symfony/plugins/orangehrmCorePlugin/lib/service/ReportGeneratorService.php | PHP | gpl-2.0 | 46,201 |
@echo off
color A
title Half-Life1
set DIR="%CD%"
set PWD=%CD%\wine\data\drive_c\Juegos\Inukaze\Half-Life-EE
set key1=HKEY_CURRENT_USER\Software\Valve
set key2=HKEY_CURRENT_USER\Software\Valve\Half-Life
set key3=HKEY_CURRENT_USER\Software\Valve\Half-Life\Settings
set key4=HKEY_CURRENT_USER\Software\Valve\Half... | inukaze/maestro | Videojuegos/Guion/Windows/Configurar_en_Windows_HalfLifeEE.bat | Batchfile | gpl-2.0 | 9,522 |
DROP PROCEDURE IF EXISTS add_migration;
delimiter ??
CREATE PROCEDURE `add_migration`()
BEGIN
DECLARE v INT DEFAULT 1;
SET v = (SELECT COUNT(*) FROM `migrations` WHERE `id`='20180117231403');
IF v=0 THEN
INSERT INTO `migrations` VALUES ('20180117231403');
-- Add your query below.
INSERT INTO `spell_mod` (`Id`, `Attrib... | EinBaum/server | sql/migrations/20180117231403_world.sql | SQL | gpl-2.0 | 525 |
package in.shabhushan.algo_trials.clrs.chapter9;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class MedianOfMedians {
/**
* Sort the List and return the middle elemnt
*/
public static int getMedian(List<Integer> list) {
Collections.sort(list);
return list... | Shashi-Bhushan/General | algo-trials/src/main/java/in/shabhushan/algo_trials/clrs/chapter9/MedianOfMedians.java | Java | gpl-2.0 | 1,948 |
#include <iostream>
#include "series.h"
int solve(int p);
#ifndef TESTING
int main () {
int p;
std::cin >> p;
std::cout << solve(p) << std::endl;
}
#endif
int solve(int p) {
int su = sum_naturals(p);
int suosq = sum_squares(p);
return su * su - suosq;
}
| NorfairKing/project-euler | 006/c++/solution.cc | C++ | gpl-2.0 | 270 |
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build ignore
// +build 386 amd64 s390x
package sha256
//go:noescape
func block(dig *digest, p []byte)
| paranoiacblack/gcc | libgo/go/crypto/sha256/sha256block_decl.go | GO | gpl-2.0 | 269 |
/*
JPC: An x86 PC Hardware Emulator for a pure Java Virtual Machine
Copyright (C) 2012-2013 Ian Preston
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as published by
the Free Software Foundation.
This progra... | smeny/JPC | src/main/java/com/github/smeny/jpc/emulator/execution/opcodes/vm/shld_Ed_Gd_CL.java | Java | gpl-2.0 | 2,403 |
<?php
if(function_exists("printAllNewsCategories")) { ?>
<div class="menu">
<h3><?php echo gettext("News articles"); ?></h3>
<?php printAllNewsCategories("All news",TRUE,"","menu-active"); ?>
</div>
<?php } ?>
<?php if(function_exists("printAlbumMenu")) { ?>
<div class="menu">
<h3><?php echo gettext("Gallery"); ?>... | jewsroch/sf-photos | themes/zenpage/themes/zenpage-default/sidebar.php | PHP | gpl-2.0 | 1,420 |
package com.refugiate.app.utilidades.route;
import com.google.android.gms.maps.model.PolylineOptions;
public interface RoutingListener {
public void onRoutingFailure();
public void onRoutingStart();
public void onRoutingSuccess(PolylineOptions mPolyOptions);
} | marvindelarc/Refugiate | Proyecto Tesis/RefugiateApp/app/src/main/java/com/refugiate/app/utilidades/route/RoutingListener.java | Java | gpl-2.0 | 268 |
package dynamickyManazeri;
import dynamickyAgenti.AgentVozidla;
import simulacia.Mc;
import simulacia.Sprava;
import OSPABA.DynamicAgent;
import OSPABA.DynamicAgentManager;
import OSPABA.MessageForm;
import OSPABA.Simulation;
public class ManazerVozidla extends DynamicAgentManager
{
public ManazerVozidla(int id, Sim... | nixone/ds-sem | lib/ospaba-1.6.3/samples/Oceliaren/dynamickyManazeri/ManazerVozidla.java | Java | gpl-2.0 | 1,054 |
/*
* Copyright (C) 2011-2021 Project SkyFire <https://www.projectskyfire.org/>
* Copyright (C) 2008-2021 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2005-2021 MaNGOS <https://www.getmangos.eu/>
* Copyright (C) 2006-2014 ScriptDev2 <https://github.com/scriptdev2/scriptdev2/>
*
* This program is free ... | ProjectSkyfire/SkyFire.548 | src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp | C++ | gpl-2.0 | 14,377 |
// Copyright 2015, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
// Copyright (c) XeLabs
// BohuTANG
package sqltypes
import (
"bytes"
)
// Operator used to do the aggregator for sum/min/max/ etc.
func Operator(v1 Value, v... | XeLabs/go-mysqlstack | sqlparser/depends/sqltypes/aggregator.go | GO | gpl-2.0 | 2,409 |
/* Copyright (c) 2009 Richard G. Todd.
* Licensed under the terms of the Microsoft Public License (Ms-PL).
*/
using System;
using Test.CalculatorParser.Terminals;
namespace LinguaDemo.Calculator
{
public class TermOperator : CalculatorNonterminal
{
#region Fields
#endregion
#region... | furesoft/Creek | Test/CalculatorParser/Nonterminals/TermOperator.cs | C# | gpl-2.0 | 778 |
/*
Theme Name: Restaurant
Theme URI: http://opal375.ru
Description: Easy to use but functional responsive theme to build a website for restaurants or other types of business that work on any device. Features include a loading page, an intergrated slider library to manage sliders, and optional Google Map plu... | RuslanGrigoryev/wp_restaraunt | wp-content/themes/restaurant/style.css | CSS | gpl-2.0 | 8,259 |
package net.mightypixel;
public interface MonsterPrototype {
public MonsterPrototype clone();
public int getEyeCount();
}
| MightyPixel/MightyPatterns | Prototype/src/net/mightypixel/MonsterPrototype.java | Java | gpl-2.0 | 128 |
cmd_drivers/ieee1394/built-in.o := rm -f drivers/ieee1394/built-in.o; /home/spacecaker/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ar rcs drivers/ieee1394/built-in.o
| spacecaker/Stock_spacecaker_kernel | drivers/ieee1394/.built-in.o.cmd | Batchfile | gpl-2.0 | 191 |
from enigma import eEPGCache, getBestPlayableServiceReference, \
eServiceReference, iRecordableService, quitMainloop
from Components.config import config
from Components.UsageConfig import defaultMoviePath
from Components.TimerSanityCheck import TimerSanityCheck
from Screens.MessageBox import MessageBox
import Scree... | openpli-arm/enigma2-arm | RecordTimer.py | Python | gpl-2.0 | 26,731 |
# Makefile for Sphinx documentation
#
# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
PAPER =
BUILDDIR = _build
# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/do... | jmoiron/uromkan | docs/Makefile | Makefile | gpl-2.0 | 3,450 |
/* Company : Nequeo Pty Ltd, http://www.nequeo.com.au/
* Copyright : Copyright © Nequeo Pty Ltd 2015 http://www.nequeo.com.au/
*
* File : OnCallRxOfferParam.h
* Purpose : SIP OnCallRxOfferParam class.
*
*/
/*
Permission is hereby granted, free of charge, to any person
obtaining a ... | drazenzadravec/nequeo | Source/Components/Net/Nequeo.Sip/Nequeo.PjSip/Nequeo.PjSip/OnCallRxOfferParam.h | C | gpl-2.0 | 3,366 |
<?php
namespace Drupal\Tests\typed_data\Kernel;
use Drupal\Core\Entity\TypedData\EntityDataDefinition;
use Drupal\Core\Render\BubbleableMetadata;
use Drupal\KernelTests\KernelTestBase;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\Core\Field\FieldStorageDefinitionInterfac... | marteenzh/d1 | modules/typed_data/tests/src/Kernel/DataFetcherTest.php | PHP | gpl-2.0 | 8,146 |
/*
Copyright (C) 2013 Lasath Fernando <kde@lasath.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later ver... | leonhandreke/ktp-text-ui | lib/notify-filter.h | C | gpl-2.0 | 1,198 |
<!doctype html>
<html>
<head>
<title>Votación Live Tv y Novelas 2015</title>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<script src="../socket.io/socket.io.js"></script>
<script src="../resources/jquery.min.js"></script>
<link rel="stylesheet" ... | alfredoBorboa/tvynovelas-live | public/jurado2/categoria_c.html | HTML | gpl-2.0 | 8,557 |
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>schrodinger.pipeline.pipeio.Grid</title>
<link rel="stylesheet" href="epydoc.css" type="tex... | platinhom/ManualHom | Schrodinger/Schrodinger_2012_docs/python_api/api/schrodinger.pipeline.pipeio.Grid-class.html | HTML | gpl-2.0 | 17,898 |
<?php
/**
* @package HikaShop for Joomla!
* @version 2.6.3
* @author hikashop.com
* @copyright (C) 2010-2016 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
class hikashopCharsetType{
function... | IYEO/Sweettaste | administrator/components/com_hikashop/types/charset.php | PHP | gpl-2.0 | 1,849 |
# OptimizePress Optimizely fix
##Description
Removes optimizely_enqueue_scripts action from LiveEditor pages
##Installation
1. Click Download ZIP button on the right
2. Install plugin archive through WordPress' Add plugin screen
3. Activate the plugin
##Requirements
* Requires at least: 3.5
* Stable tag: 1.0
* Lic... | OptimizePress/op-optimizely-fix | README.md | Markdown | gpl-2.0 | 481 |
import AppBar from './app-bar';
import AutoComplete from './text-fields/auto-complete';
import Avatar from './avatar';
import BottomSheet from './bottom-sheet';
import Chip from './chip';
import DialogAlert from './dialog/alert';
import DialogFullScreen from './dialog/full-screen';
import FontIcon from './font-icon';
i... | joxoo/react-material | src/index.js | JavaScript | gpl-2.0 | 2,193 |
<?php
namespace Rasty\app;
use Rasty\cache\RastyCache;
/**
* Colabora con el mapeo de los componentes.
*
* @author bernardo
* @since 02-03-2010
*
*/
class RastyMapHelper{
private static $instance;
//array con el mapeo de los componentes.
private $components_map = array(); //( [compo... | iriber/phprasty | src/main/php/Rasty/app/RastyMapHelper.php | PHP | gpl-2.0 | 4,241 |
/*
Copyright (c) 2013, 2014 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
... | kolab-groupware/kdepim | agents/sendlateragent/sendlaterjob.h | C | gpl-2.0 | 1,644 |
### Results of 2 Hour Vehicle Survey - Diggle 19/2/2019 16:30
445 - For First Hour of Survey Average Vehicles Per Hour Survey
The charts show a continuing average based on the 1st hour count, for an extra 44mins.
There were 6 occasions of about 1000 vehicles per hour, 10 cases where traffic was over 700 in t... | wrapperband/OpenTrafficSurvey | CaseStudies/2019-02-19 - Oldham Test Site2HrSurvey/README.md | Markdown | gpl-2.0 | 1,202 |
---
layout: default
title: (unrecognied function)(FIXME!)
---
[Top](../index.html)
---
### 定義場所(file name)
hotspot/src/cpu/x86/vm/templateTable_x86_64.cpp
### 名前(function name)
```
void TemplateTable::anewarray() {
```
### 本体部(body)
```
{- -------------------------------------------
(1) InterpreterRuntime::anew... | hsmemo/hsmemo.github.com | articles/no28916r7x.md | Markdown | gpl-2.0 | 683 |
<?php
/* core/themes/classy/templates/views/views-exposed-form.html.twig */
class __TwigTemplate_5fc5d24b391a167116517fc031d87374232681461f0e8ded9bd1aef1601521b2 extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = false;
... | panchaldhruv29/rc_dev | sites/default/files/php/twig/57d84834_views-exposed-form.html.twig_06b040b09f94a9393d5cc270d7f689da539203d5eefd94819e931d63f119de35/0ec3f452699ad49fcab38710434c3be77c5c8d9e1f04061c841bd24652cc0d81.php | PHP | gpl-2.0 | 3,073 |
import java.awt.*;
import java.awt.event.*;
import static java.lang.Math.*;
import javax.swing.*;
/**
* Java. Cube 3D
* based on https://rosettacode.org/wiki/Draw_a_cuboid#Java
* and http://compgraphics.info/3D/3d_affine_transformations.php
*
* @author Sergey Iryupin
* @version 0.0.3 dated Dec 28, 2018
*/
pub... | biblelamp/JavaExercises | Experiments/Cuboid.java | Java | gpl-2.0 | 3,618 |
//#include "opencv2/core.hpp"
#include <opencv2/opencv.hpp>
#include "opencv2/imgproc.hpp"
#include "opencv2/core/ocl.hpp"
#include <stdio.h>
#include <iostream>
using namespace cv;
using namespace std;
int main(int, char**) {
cv::VideoCapture vcap, vcap2;
cv::Mat image, image2;
// This works on a Tren... | rudybrian/CV_Playground | streamtest-multi-cam/streamtest-multi-cam.cpp | C++ | gpl-2.0 | 2,064 |
<!DOCTYPE html>
<html>
<head>
<meta name="eecription" content="Ejemplo d HTML"/>
<meta name="keywors" content="HTML%;CSS3;JavaScript/>
<title>Fomulario</title>
</head>
<body>
<div>
<form action="datos.html" method="post">
<fieldset>
<legend>Contacto</legend>
<label for="txtNombre">Laboral</label><br/>
<label for="txtN... | AraceliRey/Programacion4_practica_2 | Practica2.html | HTML | gpl-2.0 | 4,373 |
//***********************************************************
// Copyright © 2003-2008 Alexander S. Kiselev, Valentin Pavlyuchenko
//
// This file is part of Boltun.
//
// Boltun is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
... | miranda-ng/miranda-ng | plugins/Boltun/src/actionQueue.h | C | gpl-2.0 | 1,104 |
/*
* Copyright (C) 2007 Marco Gerards <marco@gnu.org>
* Copyright (C) 2009 David Conrad
* Copyright (C) 2011 Jordi Ortiz
*
* This file is part of FFmpeg.
*
* FFmpeg 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 S... | svn2github/MPlayer-SB | ffmpeg/libavcodec/diracdec.c | C | gpl-2.0 | 67,639 |
using System;
using System.Collections.Generic;
using System.Text;
using Server.Commands;
using Server.Gumps;
using Server.Items;
using Server.Network;
using Server.Prompts;
using System.IO;
using Server.Engines.CityLoyalty;
using Server.ContextMenus;
using Server.Services.TownCryer;
namespace Server.Mobiles
{
pub... | Frazurbluu/ServUO | Scripts/Mobiles/NPCs/TownCrier.cs | C# | gpl-2.0 | 23,076 |
package com.yh.hr.res.pt.queryhelper;
import com.yh.hr.res.pt.bo.PtEducationTrainingInfo;
import com.yh.hr.res.pt.dto.PtEducationTrainingInfoDTO;
import jade.workflow.utils.ObjectUtil;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.collect... | meijmOrg/Repo-test | freelance-hr-res/src/java/com/yh/hr/res/pt/queryhelper/PtEducationTrainingInfoQueryHelper.java | Java | gpl-2.0 | 5,295 |
// * This makes emacs happy -*-Mode: C++;-*-
#ifndef _CURSESW_H
#define _CURSESW_H
// $Id: cursesw.h,v 1.1.1.1 2004/03/24 19:53:04 sure Exp $
#include <etip.h>
#include <stdio.h>
#include <stdarg.h>
#ifdef __MWERKS__
/* This is a bogus check, stringstream is actually ANSI C++ standard,
* but old compilers like GCC d... | nslu2/glibc | ncurses/c++/cursesw.h | C | gpl-2.0 | 41,968 |
//
// DiEdge.h
// AbstractGraph
//
// Created by Jiageng Li on 4/8/12.
// Copyright (c) 2012 University of Illinois at Urbana-Champaign. All rights reserved.
//
#ifndef _DIEDGE_H_
#define _DIEDGE_H_
#include "../Nodes/DiNode.h"
#include "AbstractEdge.h"
#include "../incl.h"
class DiNode;
class AGRAPH_EXPORT ... | DeathByTape/OldWork | abstract-graph/AbstractGraph/include/Edges/DiEdge.h | C | gpl-2.0 | 596 |
const root = 'https://support.wordpress.com';
export default {
ADDING_GOOGLE_APPS_TO_YOUR_SITE: `${root}/add-email/adding-google-apps-to-your-site`,
ADDING_USERS: `${root}/adding-users`,
ALL_ABOUT_DOMAINS: `${root}/all-about-domains`,
AUTO_RENEWAL: `${root}/auto-renewal`,
BANDPAGE_WIDGET: `${root}/widgets/bandpag... | Kimsangcheon/wp-calypso | client/lib/url/support.js | JavaScript | gpl-2.0 | 2,742 |
<?php
/**
* @package com_zoo
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// include assets css/js
if (strtolower(substr($GLOBALS[($thi... | yozzh/vet-help | media/zoo/applications/cookbook/templates/default/frontpage.php | PHP | gpl-2.0 | 3,297 |
<?php
namespace MustBeSanta\Ensemble;
class Sidekick {
/** @var String */
private $firstName;
/**
* @return String
*/
public function getFirstName()
{
return $this->firstName;
}
/**
* @param String $firstName
*/
public function setFirstName($firstName)
... | kler/MustBeSanta | src/MustBeSanta/Ensemble/Sidekick.php | PHP | gpl-2.0 | 371 |
/*
* Copyright (c) 2020, OpenCloudDB/MyCAT and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software;Designed and Developed mainly by many Chinese
* opensource volunteers. you can redistribute it and/or modify it under the
* terms ... | MyCATApache/Mycat-Server | src/main/java/io/mycat/server/ServerConnection.java | Java | gpl-2.0 | 16,219 |
/*
* GPAC - Multimedia Framework C SDK
*
* Copyright (c) Jean Le Feuvre 2000-2005
* All rights reserved
*
* This file is part of GPAC / Events management
*
* GPAC is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
*... | upyzl/direct264umod | GPAC/events.h | C | gpl-2.0 | 26,279 |
public class Hello {
public static void main(String args[]) {
System.out.println("Hello Josh!, welcome to Java");
}
}
| williamsjoshua005/Java_Codes | OOpHello/Hello.java | Java | gpl-2.0 | 132 |
/*
* athena-file-info.h - Information about a file
*
* Copyright (C) 2003 Novell, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License,... | SolusOS-discontinued/athena | libathena-extension/athena-file-info.h | C | gpl-2.0 | 5,967 |
/*
Copyright (C) 2014 Red Hat, Inc.
This file is part of IcedTea.
IcedTea 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.
IcedTea is distributed in the hope that it will be useful,
but WITHOU... | GITNE/icedtea-web | tests/netx/unit/net/sourceforge/jnlp/util/docprovider/formatters/formatters/ReplacingTextFormatterTest.java | Java | gpl-2.0 | 5,586 |
/*
* Copyright (C) 2015 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... | minobilis/Picca | app/src/main/java/com/roshin/gallery/support/widget/ViewInfoStore.java | Java | gpl-2.0 | 12,963 |
var Rect = require("utils/rect");
/** Resize a window
*
* @param options Options for resize
* @param callback
*/
function resize(options,callback) {
var winId = options.window.id,
info = options.updateInfo,
os = options.os,
updateInfo = {};... | benlau/dualless | src/chrome/sys/toolbox/resize.js | JavaScript | gpl-2.0 | 1,910 |
<?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 Oliorga\GeneratorBundle\Command;
use Doctrine\Bundle\DoctrineBundle\Map... | blacksad12/oliorga | src/Oliorga/GeneratorBundle/Command/GenerateDoctrineCommand.php | PHP | gpl-2.0 | 1,176 |
/*
* Copyright (c) 2008-2009 Atheros Communications 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 notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" A... | Core2idiot/Kernel-Samsung-3.0...- | drivers/net/wireless/ath/ath.h | C | gpl-2.0 | 9,286 |
<?php
namespace Drupal\spectre_mautic\Tests;
use Drupal\Core\Url;
use Drupal\simpletest\WebTestBase;
/**
* Simple test to ensure that main page loads with module enabled.
*
* @group spectre_mautic
*/
class LoadTest extends WebTestBase{
/**
* Modules to enable.
*
* @var array
*/
public static $mo... | tannguyen04/99mobile | web/modules/custom/spectre_mautic/src/Tests/LoadTest.php | PHP | gpl-2.0 | 876 |
/*
* arch/arm/mach-rpc/include/mach/io.h
*
* Copyright (C) 1997 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Modifications:
* 06-Dec-1997 RMK Created... | leftrepo/Owl-Kernel-for-Xperia-Sola | arch/arm/mach-rpc/include/mach/io.h | C | gpl-2.0 | 5,865 |
CREATE TABLE [dbo].[Customer_User]
(
UserID uniqueidentifier NOT NULL,
CustomerID INT NOT NULL
CONSTRAINT pk_UserID_CustomerID PRIMARY KEY (UserID,CustomerID),
CONSTRAINT fk_UserID FOREIGN KEY (UserID) REFERENCES [dbo].[aspnet_Users](UserId),
CONSTRAINT fk_CustomerID FOREIGN KEY (CustomerID) REFERENCES [dbo].[Cu... | sarychuk/MIS418GroupProject | Database/MIS418 DB/CustomerUser.table.sql | SQL | gpl-2.0 | 344 |
/**
* Select2 Spanish translation
*/
(function ($) {
"use strict";
$.extend($.fn.select2.defaults, {
formatNoMatches: function () { return "No se encontraron resultados"; },
formatInputTooShort: function (input, min) { var n = min - input.length; return "Por favor, introduzca " + n + " car" + ... | sadpiglet20/ninesouthestates | wp-content/themes/real-spaces/includes/ReduxCore/assets/js/vendor/select2/select2_locale_es.js | JavaScript | gpl-2.0 | 822 |
<html>
<body>
/*Create table and test all DML Operation on the table */
<?php
$conn=odbc_connect('mycsql','root','manager');
if (!$conn)
{
echo "Connection Failed";
exit(1);
}
$sth = odbc_prepare($conn,"CREATE TABLE t1(f1 INT, f2 CHAR(20));");
$res = odbc_execute($sth);
if (!$res)
{
echo "Error in Creation";
... | mattibickel/csql | examples/php/phpexample.php | PHP | gpl-2.0 | 2,436 |
#include <dcc/RosDccData.h>
#include <dcc/History.h>
#include <dcc/ClearFreq.h>
#include <std_srvs/Empty.h>
#include <ros/ros.h>
#include <pthread.h>
#include <map>
#include <vector>
#include <list>
std::map<int, int> counts;
std::map<int, int> nonzero;
ros::Subscriber dccSub;
ros::Publisher outgoing;
ros::ServiceServ... | jodavaho/sig_client | ROSSH/src/cpp/sampler.cpp | C++ | gpl-2.0 | 2,248 |
// -*- C++ -*-
// Class which controls what tasks are executed.
// Copyright (C) 2004 David Dooling <banjo@users.sourceforge.net>
//
// This file is part of CHIMP.
//
// 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 Fr... | ddgenome/chimp | src/manager.h | C | gpl-2.0 | 3,813 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta name="generator" content="AWStats 6.95 (build 1.943) from config file awstats.ckbran.ru.conf (http://awstats.sourceforge.net)">
<meta name="robots" content="noindex,nofollow">
<meta http-equiv="content-type" content="text/html... | AxelFG/ckbran-inf | old/webstat/awstats.ckbran.ru.downloads.092013.html | HTML | gpl-2.0 | 4,211 |
<!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_25) on Wed Aug 07 11:50:46 BRT 2013 -->
<title>Uses of Class br.com.dazen.main.App</title>
<meta name="date" content="2013-08-07">
<lin... | CharlesQueiroz/NFValidator | doc/br/com/dazen/main/class-use/App.html | HTML | gpl-2.0 | 3,976 |
package edu.stanford.nlp.classify;
import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;
import edu.stanford.nlp.ling.Datum;
import edu.stanford.nlp.math.ADMath;
import edu.stanford.nlp.math.ArrayMath;
import edu.stanford.nlp.math.DoubleAD;
import edu.stanford.nlp.optimization.Abs... | PeterisP/LVTagger | src/main/java/edu/stanford/nlp/classify/LogConditionalObjectiveFunction.java | Java | gpl-2.0 | 28,501 |
using System;
using Server;
using Server.Gumps;
using Server.Mobiles;
using Server.Commands;
using System.Collections;
using System.Collections.Generic;
using Kaltar.Habilidades;
namespace Kaltar.Talentos
{
public class AprenderHabilidadeTalento : AprenderHabilidadeGump
{
public static void I... | alucardxlx/kaltar | Scripts/Kaltar/Jogador/Talento/Gump/AprenderHabilidadeTalento.cs | C# | gpl-2.0 | 3,242 |
<!DOCTYPE html>
<html lang="en-US">
<!-- Mirrored from www.w3schools.com/bootstrap/tryit.asp?filename=trybs_case_jumbotron&stacked=h by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 07:34:12 GMT -->
<head>
<title>Tryit Editor v2.3</title>
<meta id="viewport" name='viewport'>
<script>
(function() {
if ( n... | platinhom/ManualHom | Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/bootstrap/tryit476d.html | HTML | gpl-2.0 | 6,049 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pt">
<head>
<!-- Generated by javadoc (1.8.0_25) on Tue Mar 24 10:53:23 BRT 2015 -->
<title>testes</title>
<meta name="date" content="2015-03-24">
<link rel="stylesheet" type="text/css" hr... | fabinhodsouza/metodos_avancados_uepb | doc/testes/package-summary.html | HTML | gpl-2.0 | 4,793 |
#ifndef RNGSUPPORT_H
#define RNGSUPPORT_H
#ifdef __cplusplus
#if __cplusplus >= 201103L || (defined _MSC_VER && _MSC_VER >= 1600)
#define NYQ_USE_RANDOM_HEADER
#endif
#if defined NYQ_USE_RANDOM_HEADER
#include <vector>
#include <random>
namespace Nyq
{
typedef std::mt19937 nyq_generator;
const int nyq_generator_st... | ShanghaiTimes/Audacity2015 | lib-src/libnyquist/RngSupport.h | C | gpl-2.0 | 5,102 |
/*
* This file is part of the TrinityCore 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
... | Shauren/TrinityCore | src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp | C++ | gpl-2.0 | 77,173 |
<p>This is the singleItem view.</p>
{{item}}
<form ng-submit="save()">
<input type="text" ng-model="item.name">
<input type="text" ng-model="item.weight">
<label>
<input type="checkbox" ng-model="item.in_stock"> In stock
</label>
<button type="submit">Save</button>
</form> | daniellowtw/angular-parse-crud | app/views/singleitem.html | HTML | gpl-2.0 | 313 |
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="assets/stylesheet-en.css" />
</head>
<body class="eng">
<div class='verse' id='Ch_C05_S14_V02' type='mantra'>
<div class='versetext'>atsyannaṁ paśyasi priyamattyannaṁ paśyati priyaṁ bhavatyasya brahmavarcasaṁ kulē ya ētamēvamātmānaṁ vaiśvānaramupāstē... | SrirangaDigital/shankara-android | app/src/main/assets/html/en/Ch_C05_S14_V02.html | HTML | gpl-2.0 | 691 |
JFLAGS = -O -Xlint
JC = javac
.SUFFIXES: .java .class
.java.class:
$(JC) $(JFLAGS) $*.java
CLASSES = \
detector/Detector.java \
detector/DetectorCir.java \
detector/DetectorLin.java \
graphs/CList.java \
graphs/Graph.java \
graphs/GraphCir.java \
graphs/GraphLin.java \
order/GeneOrder.java \
... | stplaydog/DCJStream | Makefile | Makefile | gpl-2.0 | 1,657 |
import unittest
import mock
import blivet
from pykickstart.constants import CLEARPART_TYPE_ALL, CLEARPART_TYPE_LINUX, CLEARPART_TYPE_NONE
from parted import PARTITION_NORMAL
from blivet.flags import flags
DEVICE_CLASSES = [
blivet.devices.DiskDevice,
blivet.devices.PartitionDevice
]
@unittest.skipUnless(not... | atodorov/blivet | tests/clearpart_test.py | Python | gpl-2.0 | 9,228 |
/*
* linux/drivers/mmc/core/bus.c
*
* Copyright (C) 2003 Russell King, All Rights Reserved.
* Copyright (C) 2007 Pierre Ossman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundati... | Core2idiot/Kernel-Samsung-3.0...- | drivers/mmc/core/bus.c | C | gpl-2.0 | 9,637 |
// $HeadURL$
// $Id$
//
// Copyright © 2006, 2010, 2011, 2012 by the President and Fellows of Harvard College.
//
// Screensaver is an open-source project developed by the ICCB-L and NSRB labs
// at Harvard Medical School. This software is distributed under the terms of
// the GNU General Public License.
package edu.h... | hmsiccbl/screensaver | web/src/main/java/edu/harvard/med/screensaver/ui/arch/datatable/column/DateColumn.java | Java | gpl-2.0 | 1,302 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ip::address_v6::to_string (1 of 2 overloads)</title>
<link rel="stylesheet" href="../../../../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
<link rel="start" href="../../../.... | scs/uclinux | lib/boost/boost_1_38_0/doc/html/boost_asio/reference/ip__address_v6/to_string/overload1.html | HTML | gpl-2.0 | 3,396 |
#!/bin/bash
echo "....................................................."
echo "Starting Build for S6-Flat Device"
echo "....................................................."
sleep 5
./build_flat.sh
sleep 3
./repack_flat.sh
sleep 3
clear
echo "....................................................."
echo "Starting Bui... | Hybridmax/G92XF_Mystery_Kernel | build_all.sh | Shell | gpl-2.0 | 469 |
# SPDX-License-Identifier: GPL-2.0+
# Copyright (c) 2016 Google, Inc
# Written by Simon Glass <sjg@chromium.org>
#
# Entry-type module for 'u-boot-nodtb.bin'
#
from entry import Entry
from blob import Entry_blob
class Entry_u_boot_spl_nodtb(Entry_blob):
def __init__(self, image, etype, node):
Entry_blob._... | ev3dev/u-boot | tools/binman/etype/u_boot_spl_nodtb.py | Python | gpl-2.0 | 431 |
<?php
//namespace Admin;
/**
* The admin-specific functionality of the plugin.
*
* @link http://eliseoeric.com
* @since 1.0.0
*
* @package Citrix_Connect
* @subpackage Citrix_Connect/admin
*/
/**
* The admin-specific functionality of the plugin.
*
* Defines the plugin name, version, and two e... | eliseoeric/citrix-connect | admin/class-citrix-connect-admin.php | PHP | gpl-2.0 | 3,244 |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Authorization;
/**
* Responsible for internal authorization decision making based on provided role, resource and privilege
*
* @api
*/
interface PolicyInterface
{
/**
* Check... | kunj1988/Magento2 | lib/internal/Magento/Framework/Authorization/PolicyInterface.php | PHP | gpl-2.0 | 595 |
package org.andork.jogl.uniform;
import org.andork.jogl.shader.Uniform4fvLocation;
import com.jogamp.opengl.GL2ES2;
public class Uniform4fv implements Uniform {
int count = 1;
float[] value;
int value_offset;
public Uniform4fv count(int count) {
this.count = count;
return this;
}
@Override
public void p... | jedwards1211/breakout | andork-jogl-gl2es2-utils/src/org/andork/jogl/uniform/Uniform4fv.java | Java | gpl-2.0 | 744 |
<?PHP
// $Id$
//
// Release $Name$
//
// Copyright (c)2002-2003 Matthias Finck, Dirk Fust, Oliver Hankel, Iver Jackewitz, Michael Janneck,
// Martti Jeenicke, Detlev Krause, Irina L. Marinescu, Timo Nolte, Bernd Pape,
// Edouard Simon, Monique Strauss, José Manuel González Vázquez
//
// This file is part of CommSy.
... | commsy/commsy | legacy/classes/cs_dates_item.php | PHP | gpl-2.0 | 33,248 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta name="generator" content="AWStats 7.0 (build 1.971) from config file awstats.manager.crimea.edu.conf (http://awstats.sourceforge.net)">
<meta name="robots" content="noindex,nofollow">
<meta http-equiv="content-type" content="t... | mng-crimea/mng-crimea | webstat/awstats.manager.crimea.edu.alldomains.082012.html | HTML | gpl-2.0 | 5,150 |
using System;
using System.Collections.Generic;
using ServiceStack.OrmLite;
using ServiceStack.DataAnnotations;
namespace PhotoBookmart.DataLayer.Models.Sites
{
[Alias("TopicLanguage")]
[Schema("CMS")]
public partial class SiteTopicLanguage : ModelBase
{
public SiteTopicLanguage()
{
... | dvchinh/HTQLNHCS | DataModel/Models/Sites/TopicLanguage.cs | C# | gpl-2.0 | 1,660 |
/***************************************************************************
qgsgpxfeatureiterator.cpp
---------------------
begin : Dezember 2012
copyright : (C) 2012 by Martin Dobias
email : wonder dot sk at gmail dot com
**********************************... | gioman/QGIS | src/providers/gpx/qgsgpxfeatureiterator.cpp | C++ | gpl-2.0 | 13,657 |
<?php
/*
* This file is part of the LightCMSBundle package.
*
* (c) Fulgurio <http://fulgurio.net>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Fulgurio\LightCMSBundle\Controller;
use Symfony\Bundle\FrameworkBundle\C... | fulgurio/LightCMSBundle | Controller/AdminDashboardController.php | PHP | gpl-2.0 | 595 |
¾g@U<?php exit; ?>a:1:{s:7:"content";a:12:{s:10:"_edit_last";a:1:{i:0;s:1:"1";}s:17:"_wp_page_template";a:1:{i:0;s:25:"template-subscription.php";}s:14:"slide_template";a:1:{i:0;s:7:"default";}s:17:"pp_sidebar_layout";a:1:{i:0;s:10:"full-width";}s:17:"pp_filters_switch";a:1:{i:0;s:3:"yes";}s:17:"pp_title_bar_hide";a:1:... | betoarpi/Cerveza-Postal | wp-content/cache/object/000000/91d/400/91d400cddb20d5663aaf5790dcedde69.php | PHP | gpl-2.0 | 727 |
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include <cinttypes>
#include <cstring>
#include "Common/CPUDetect.h"
#include "Common/CommonTypes.h"
#include "Common/Logging/Log.h"
#include "Common/x64Emitter.h"
#include "Common/x64Reg.h"
namespace Gen
... | pierrewillenbrock/dolphin | Source/Core/Common/x64Emitter.cpp | C++ | gpl-2.0 | 84,130 |
package com.ezest.javafx.vijaysimha;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.scene.shape.ArcBuilder;
import javafx.scene.shape.ArcToBuilder;
import javafx.scene.shape.ArcType;
import javafx.scene.shape.CircleBuilder;
import javafx.scene.shape.Lin... | SaiPradeepDandem/javafx-demos | src/main/java/com/ezest/javafx/vijaysimha/JavaFX_DartBoard.java | Java | gpl-2.0 | 9,388 |
<?php
/* core/modules/system/templates/field-multiple-value-form.html.twig */
class __TwigTemplate_b12b1c5d9d9971d9b4b2bae595e0b002dd20d229bfbb3037426b14b4cbe8a301 extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = false;
... | rujiali/cooking4 | sites/default/files/php/twig/1#b1#2b#1c5d9d9971d9b4b2bae595e0b002dd20d229bfbb3037426b14b4cbe8a301/c1a8964f766259bc17d15542bb592bad06be875f8a19520329e296b6be3013f7.php | PHP | gpl-2.0 | 3,196 |
<html>
<head>
<title>Templating System Tag Reference: Switch</title>
</head>
<body bgcolor="#ffffff">
<h2>Switch</h2>
<a href="..">Templating System</a> :
<a href="../designer-guide.html">Designer Guide</a> :
<a href="index.html">Tag Reference</a> : Switch
<hr>
<h3>Summary</h3>
<p>T... | openacs/openacs-core | packages/acs-templating/www/doc/tagref/switch.html | HTML | gpl-2.0 | 2,251 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DevExpress.Data.Filtering;
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Actions;
using DevExpress.ExpressApp.Editors;
using DevExpress.ExpressApp.Layout;
using DevExpress.ExpressApp.Model.NodeGenerators;
using DevEx... | daltonnyx/Vinabits_OM | Vinabits_OM_2017.Module.Web/Controllers/Vanban/DocumentListviewViewController.cs | C# | gpl-2.0 | 8,054 |
/*
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
* 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 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be ... | jmahler/linux-next | fs/xfs/xfs_log.c | C | gpl-2.0 | 116,711 |
.rublon-unlocked {
top: -5px;
}
.rublon-locked {
top: -4px;
} | khanhnd91/khaosan | wp-content/plugins/rublon/assets/css/rublon2factor_admin_safari.css | CSS | gpl-2.0 | 64 |
# Working Unit Test Benches for Network Simulator
# Last Revised: 14 November 2015 by Sushant Sundaresh & Sith Domrongkitchaiporn
'''
IMPORTANT: Please turn off logging (MEASUREMENT_ENABLE = False) in constants.py
before running these testbenches.
'''
# Unit Testing Framework
import unittest
# Test Modules
import r... | sssundar/NetworkSimulator | Code/Python/unit_test_benches.py | Python | gpl-2.0 | 12,927 |
<?php
/*
* This file is part of the Sententiaregum project.
*
* (c) Maximilian Bosch <maximilian@mbosch.me>
* (c) Ben Bieler <ben@benbieler.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace... | Sententiaregum/Sententiaregum | src/AppBundle/Tests/Unit/Model/User/RoleTest.php | PHP | gpl-2.0 | 737 |
<?php
/**
* Template Name: Maintainance page
*
* @package Organique
*/
// WP header
?>
<div class="container">
<h2>Hi! We are currently working on an exciting new upgrade to our site. In the meantime, to place an order please call 08096879999</h2>
</div>
| integrait/wp_ds | wp-content/themes/sistina/maintainance.php | PHP | gpl-2.0 | 262 |
.mark{width:10px;height:10px;position:absolute;background-size:contain} | lduarte1991/diacritic-annotator | build/diacritic-annotator.min.css | CSS | gpl-2.0 | 71 |
/*
* max77843-muic.h - MUIC for the Maxim 77843
*
* Copyright (C) 2011 Samsung Electrnoics
* Seoyoung Jeong <seo0.jeong@samsung.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; eit... | goodhanrry/N910U_goodhanrry_kernel | include/linux/muic/max77843-muic.h | C | gpl-2.0 | 8,655 |
/*
* event tracer
*
* Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
*
* - Added format output of fields of the trace point.
* This was based off of work by Tom Zanussi <tzanussi@gmail.com>.
*
*/
#include <linux/workqueue.h>
#include <linux/spinlock.h>
#include <linux/kthread.h>
#incl... | kofemann/linux-redpatch | kernel/trace/trace_events.c | C | gpl-2.0 | 38,122 |
#ifndef CACHE_H
#define CACHE_H
#include "git-compat-util.h"
#include "strbuf.h"
#include "hash.h"
#include "advice.h"
#include "gettext.h"
#include "convert.h"
#include SHA1_HEADER
#ifndef git_SHA_CTX
#define git_SHA_CTX SHA_CTX
#define git_SHA1_Init SHA1_Init
#define git_SHA1_Update SHA1_Update
#define git_SHA1_Fin... | dragonfax/git_webos | cache.h | C | gpl-2.0 | 42,649 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.