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 |
|---|---|---|---|---|---|
html {
-webkit-font-smoothing: antialiased;
}
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
border-radius: 0;
max-width:250px !important;
border: 1px solid #cfcfcf;
background: #fff;
border-radius:3px;
color: #8e8e8e;
-webki... | davidHuanghw/david_blog | wp-content/themes/truemag/css/tooltipster.css | CSS | gpl-2.0 | 9,332 |
#pragma once
#include <windows.h>
#include <vector>
#include "KeyboardEvent.h"
#include "log.h"
#include <thread>
class KeyboardHelper
{
public:
KeyboardHelper()
{
}
~KeyboardHelper()
{
}
void PressAndReleaseKey(const KeyboardEvent& ke)
{
if (ke._bRShift)
{
INPUT inp;
inp.ki.dwFlags = 0;
inp.... | nextfullstorm/uswitcher | KeyboardHelper.h | C | gpl-2.0 | 8,262 |
<?php
/*
Plugin Name: WPBakery Visual Composer (shared on http://urokwp.ru)
Plugin URI: http://vc.wpbakery.com
Description: Drag and drop page builder for WordPress. Take full control over your WordPress site, build any layout you can imagine – no programming knowledge required.
Version: 4.7
Author: Michael M - WPBaker... | VitaAprel/mynotebook | wp-content/plugins/js_composer4-7/js_composer.php | PHP | gpl-2.0 | 20,440 |
#ifndef DOCK_SOURCE_BUTTON_H // :)
#define DOCK_SOURCE_BUTTON_H
#include "tintedbuttonbase.h"
class SourceButton : public TintedButtonBase
{
Q_OBJECT
public:
SourceButton(const QModelIndex& index, QWidget* parent = NULL);
virtual ~SourceButton();
protected:
virtual void indexChanged()... | Elv13/Umbrello-ng2 | umbrello/dock/pages/controller/delegateWidgets/sourcebutton.h | C | gpl-2.0 | 333 |
#include "Config/Config.h"
#include "config.h"
#include "../Player.h"
#include "PlayerbotAI.h"
#include "PlayerbotMgr.h"
#include "WorldPacket.h"
#include "../Chat.h"
#include "../ObjectMgr.h"
#include "../GossipDef.h"
#include "../Chat.h"
#include "../Language.h"
#include "../WaypointMovementGenerator.h"
#include "../... | cala/portaltbc | src/game/playerbot/PlayerbotMgr.cpp | C++ | gpl-2.0 | 44,869 |
<?php
/**
* Template Name: Portfolio > Trinity
*
* @package WordPress
*/
get_header(); ?>
<section class="port-fullWidth" id="top">
<div class="wrapper port-ts">
<h1>Trinity Brooks</h1>
<div class="divide"></div>
<p>A collection of images reflecting contemporary urb... | amunadesigns/amunadesigns | wp-content/themes/amuna_wordpress/trin-detail.php | PHP | gpl-2.0 | 1,772 |
<?php
/**
* Is Valid Geo Coord
*
* @todo This function can be deprecated.
*
* @param float $lat Latitude.
* @param float $long Longitude.
* @return bool
*/
function wpgeo_is_valid_geo_coord( $lat, $lng ) {
$coord = new WPGeo_Coord( $lat, $lng );
return $coord->is_valid_coord();
}
/... | DrPollo/wp-commons | wp-content/plugins/wp-geo/includes/functions.php | PHP | gpl-2.0 | 4,172 |
/**
* Ionize Extend Media Manager
*
*/
ION.ExtendMediaManager = new Class({
Implements: [Events, Options],
options: {
thumbSize: 120,
resizeOnUpload: false,
uploadAutostart: false,
uploadMode: '',
standalone: false
},
/**
*
* @param options
*/
initialize: function... | jkzleond/school | themes/admin/javascript/ionize/ionize_extendmediamanager.js | JavaScript | gpl-2.0 | 12,485 |
<?php
require_once('lib_books.php');
require_once('constants.php');
function get_books_with_syntax() {
$res = sql_query("SELECT book_id, status, user_id FROM anaphora_syntax_annotators");
$syntax = array();
while ($r = sql_fetch_array($res)) {
if (!isset($syntax[$r['book_id']]))
$syntax[... | OpenCorpora/opencorpora | lib/lib_anaphora_syntax.php | PHP | gpl-2.0 | 20,904 |
<?php
/**
* Social Login
*
* @version 1.0
* @author Arkadiy, Joomline
* @copyright © 2012. All rights reserved.
* @license GNU/GPL v.3 or later.
*/
// No direct access
defined('_JEXEC') or die;
class plgSlogin_authVkontakte extends JPlugin
{
private $provider = 'vkontakte';
public function onSlogin... | raimov/broneering | plugins/slogin_auth/vkontakte/vkontakte.php | PHP | gpl-2.0 | 5,087 |
#include <linux/version.h>
#include <linux/dvb/version.h>
#include <lib/dvb/dvb.h>
#include <lib/dvb/frontendparms.h>
#include <lib/base/cfile.h>
#include <lib/base/eerror.h>
#include <lib/base/nconfig.h> // access to python config
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#incl... | oostende/openblachole | lib/dvb/frontend.cpp | C++ | gpl-2.0 | 87,073 |
/*
* Copyright (C) 2005 aCaB <acab@clamav.net>
*
* 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... | kidmaple/CoolWall | user/clamav/libclamav/spin.c | C | gpl-2.0 | 12,993 |
package com.charlesdream.office.word.enums;
import com.charlesdream.office.BaseEnum;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;
/**
* Specifies how to associate a style sheet with the document.
* <p>
*
* @author Charles Cui on 3/5/2016.
* @since 1.0
*/
public enum WdStyleSheetLin... | Lotusun/OfficeHelper | src/main/java/com/charlesdream/office/word/enums/WdStyleSheetLinkType.java | Java | gpl-2.0 | 2,047 |
using System;
using System.Collections;
using Server.Targeting;
using Server.Network;
using Server.Mobiles;
using Server.Items;
using Server.Spells;
namespace Server.ACC.CSS.Systems.Cleric
{
public class ClericDivineFocusSpell : ClericSpell
{
private static SpellInfo m_Info = new SpellInfo(
... | alucardxlx/kaltar | Scripts/Kaltar/Complete Spell System/-=+ 03 Systems/Cleric/Spells/DivineFocusSpell.cs | C# | gpl-2.0 | 2,576 |
package org.wordpress.android.ui.notifications;
import android.app.Activity;
import android.app.Fragment;
import android.app.NotificationManager;
import android.content.Intent;
import android.os.Bundle;
import android.os.Parcelable;
import android.support.annotation.StringRes;
import android.support.v7.widget.DefaultI... | wangkang0627/WordPress-Android | WordPress/src/main/java/org/wordpress/android/ui/notifications/NotificationsListFragment.java | Java | gpl-2.0 | 16,506 |
<?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.trajectory.ffstructure._FFBondProperty</title>
<link rel="stylesheet" href="epy... | platinhom/ManualHom | Schrodinger/Schrodinger_2012_docs/python_api/api/schrodinger.trajectory.ffstructure._FFBondProperty-class.html | HTML | gpl-2.0 | 11,143 |
/*
* QLogic qlge NIC HBA Driver
* Copyright (c) 2003-2008 QLogic Corporation
* See LICENSE.qlge for copyright and licensing details.
* Author: Linux qlge network device driver by
* Ron Mercer <ron.mercer@qlogic.com>
*/
#ifndef _QLGE_H_
#define _QLGE_H_
#include <linux/version.h>
#include <linux/init.h>
#inclu... | spacex/kernel-centos5 | drivers/net/qlge/qlge.h | C | gpl-2.0 | 59,109 |
namespace UFIDA.U9.Cust.XMQX.LaserLabBP.LaserLabScrapBP
{
using System;
using System.Collections.Generic;
using System.Text;
using UFIDA.U9.Cust.XMQX.LaserLabBE.LaserLab;
using UFSoft.UBF.AopFrame;
using UFSoft.UBF.Business;
using UFSoft.UBF.PL;
using UFSoft.UBF.Util.Context;
/// <... | amazingbow/yonyou | 侨兴/QiaoXing_Code/LaserLabBP/BpImplement/LaserLabScrapBP/ReturnLBMasterExtend.cs | C# | gpl-2.0 | 1,519 |
/* Empty. Add your own CSS if you like */
.Gmap{
height: 300px;
border: 1px solid;
}
.descriptAcc{
height: 200px;
margin-top: 20px;
}
.Gmap-Acc{
height: 300px;
border: 1px solid;
}
.comment{
margin-top: 5px;
height: 100px;
}
.main{
background-image: url('../img/fondo.jpg');
}
.personalData{
margin-top:... | taddeiPablo/Accomodation_App | Accomodation_app/www/css/style.css | CSS | gpl-2.0 | 1,091 |
/* Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the... | W4TCH0UT/zz_quark | drivers/video/msm/mdss/mdss_mdp_overlay.c | C | gpl-2.0 | 103,452 |
<?php
namespace T3Monitor\T3monitoring\ViewHelpers\Format;
/*
* This file is part of the t3monitoring extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
use T3Monitor\T3monitoring\Domain\Model\Extension;
... | georgringer/t3monitoring | Classes/ViewHelpers/Format/ExtensionStateViewHelper.php | PHP | gpl-2.0 | 1,105 |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package zprojectsupdater.models;
import org.json.JSONObject;
/**
*
* @author m4tuu
*/
public class Archivo {
private int id;
private String url, ruta;
public int getId() {
return id;
}
... | infoINGenieria/zprojectsUpdater | ZProjectsUpdater/src/zprojectsupdater/models/Archivo.java | Java | gpl-2.0 | 1,030 |
# Makefile for the Linux video drivers.
# 5 Aug 1999, James Simmons, <mailto:jsimmons@users.sf.net>
# Rewritten to use lists instead of if-statements.
# Each configuration option enables a list of files.
obj-$(CONFIG_VGASTATE) += vgastate.o
obj-y += fb_notify.o
obj-$(CONFIG_FB) ... | lshw/loongson1-linux-3.0 | drivers/video/Makefile | Makefile | gpl-2.0 | 7,298 |
/*
* Copyright (C) 2009 Red Hat, Inc.
*
* This work is licensed under the terms of the GNU GPL, version 2. See
* the COPYING file in the top-level directory.
*/
#include <linux/mm.h>
#include <linux/sched.h>
#include <linux/highmem.h>
#include <linux/hugetlb.h>
#include <linux/mmu_notifier.h>
#include <linux/... | tweakos/HD-Kernel | mm/huge_memory.c | C | gpl-2.0 | 63,956 |
/*
* USE - UML based specification environment
* Copyright (C) 1999-2004 Mark Richters, University of Bremen
*
* 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
* Li... | stormymauldin/stuff | src/main/org/tzi/use/uml/ocl/expr/ExpNavigation.java | Java | gpl-2.0 | 4,724 |
<?php
/*
Template Name: Archive 2
*/
?>
<?php
get_header();
?>
<div id="primary" class="site-content">
<div id="content" role="main">
<div class="readable-content">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( ... | octavian-nita/cadeauxsucres2 | wp-content/themes/read-v3-9-1/page-archive-2.php | PHP | gpl-2.0 | 2,650 |
<?php
/**
* @package reason
* @subpackage function_libraries
*/
/**
* Include the reason header
*/
include_once( 'reason_header.php' );
/**
* @param string $entity_a The unique name of the type on the "A" side of the relationship
* @param string $entity_b The unique name of the type on the "B" side of the rela... | mischler/reason_package | reason_4.0/lib/core/function_libraries/relationship_finder.php | PHP | gpl-2.0 | 4,713 |
<!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... | widora/openwrt_widora | package/multimedia/platinum/src/Platinum/Docs/Doxygen/html/classPLT__MediaCache.html | HTML | gpl-2.0 | 3,100 |
package com.myJava.file.metadata.posix.jni.wrapper;
import com.myJava.object.ToStringHelper;
/**
* <BR>
* @author Olivier PETRUCCI
* <BR>
*
*/
/*
Copyright 2005-2014, Olivier PETRUCCI.
This file is part of Areca.
Areca is free software; you can redistribute it and/or modify
it under the terms of the... | wintonBy/areca-backup-release-mirror | src/com/myJava/file/metadata/posix/jni/wrapper/SetFileOwnerResult.java | Java | gpl-2.0 | 1,297 |
/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
*
* $Id: edsam.c,v 1.31.2.1 2008/12/18 15:24:30 carsten Exp $
*
* This source code is part of
*
* G R O M A C S
*
* GROningen MAchine for Chemical Simu... | tectronics/force-distribution-analysis.gromacs-4-0-5 | src/mdlib/edsam.c | C | gpl-2.0 | 88,744 |
/*
Theme Name: Website
Adding support for language written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
http://codex.wordpress.org/Right_to_Left_Language_Support
*/
/*
body... | surajajency/wordpress | wp-content/themes/website/rtl.css | CSS | gpl-2.0 | 366 |
/*
* Android display memory setup for OMAP4+ displays
*
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
*
* Author: Lajos Molnar
*
* 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 t... | ReconInstruments/jet_kernel | arch/arm/plat-omap/android-display.c | C | gpl-2.0 | 7,608 |
function gp_loadMediaButtonPopup(widget_name, shortcode, widget_title)
{
gp_hide_all_widget_popups();
var tag = jQuery('<div id="gold_plugins_popup"></div>');
var params = {
action: 'gold_plugins_insert_widget_popup',
widget_name: widget_name,
shortcode: shortcode
};
if (typeof(widget_title) ... | divakar111/codoid.com | wp-content/plugins/easy-testimonials/include/lib/GP_Media_Button/js/gp_media_button_v1.js | JavaScript | gpl-2.0 | 3,414 |
/* Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the... | SlimLG2/android_kernel_motorola_msm8992 | drivers/soc/qcom/rpm-smd.c | C | gpl-2.0 | 34,820 |
package com.tinkerlad.chemistry.utils.vector;
import com.google.common.io.ByteArrayDataInput;
import com.tinkerlad.chemistry.utils.interfaces.IVector2;
import net.minecraft.nbt.NBTTagCompound;
public class Vector2 implements Cloneable, IVector2 {
public double x;
public double z;
public Vector2() {
... | Tinkerlad0/Periodic-Production | src/main/java/com/tinkerlad/chemistry/utils/vector/Vector2.java | Java | gpl-2.0 | 3,794 |
<?php
/**
* Export support class
*
* PHP version 5
*
* Copyright (C) Villanova University 2010.
*
* 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 distri... | IISH/vufind | module/VuFind/src/VuFind/Export.php | PHP | gpl-2.0 | 10,752 |
ucodes = {
"U0001" : "High Speed CAN Communication Bus" ,
"U0002" : "High Speed CAN Communication Bus (Performance)" ,
"U0003" : "High Speed CAN Communication Bus (Open)" ,
"U0004" : "High Speed CAN Communication Bus (Low)" ,
"U0005" : "High Speed CAN Communication Bus (High)" ,
"U0006" : "High Speed ... | lkarsten/pyobd | network_codes.py | Python | gpl-2.0 | 18,096 |
#ifndef KBS_STRING_H
#define KBS_STRING_H
#include "kbs_Alphabet.h"
#include "kbs_Types.h"
typedef struct kbs_ustring{
Kbs_Ulong strLength; /** length of the string */
Kbs_Uchar *str; /** character array of length strLength plus terminating 0 */
Kbs_Alphabet *alphabet; /** the alphabet of th... | anadon/BPR2 | src/Standard/kbs_String.h | C | gpl-2.0 | 1,520 |
#
# Makefile for misc devices that really don't fit anywhere else.
#
obj-$(CONFIG_IBM_ASM) += ibmasm/
obj-$(CONFIG_AD525X_DPOT) += ad525x_dpot.o
obj-$(CONFIG_AD525X_DPOT_I2C) += ad525x_dpot-i2c.o
obj-$(CONFIG_AD525X_DPOT_SPI) += ad525x_dpot-spi.o
obj-$(CONFIG_INTEL_MID_PTI) += pti.o
obj-$(CONFIG_ATMEL_PWM) += atmel_... | jjm2473/AMLOGIC_M8 | drivers/misc/Makefile | Makefile | gpl-2.0 | 3,280 |
<?php
$obj_ambulance = new Hmgt_ambulance();
if(isset($_REQUEST['save_ambulance']))
{
if(isset($_REQUEST['action']) && ($_REQUEST['action'] == 'insert' || $_REQUEST['action'] == 'edit'))
{
$result = $obj_ambulance->hmgt_add_ambulance($_POST);
if($result)
{
if($_REQUEST['action'] == 'edit')
{
?><div... | ahmedalaahagag/HospitalManagementSystem | wp-content/plugins/hospital-management/template/ambulance.php | PHP | gpl-2.0 | 11,992 |
<?php
defined('_JEXEC') or die;
if(!defined('DS'))
{
define( 'DS', DIRECTORY_SEPARATOR );
}
?>
<?php
JLoader::import('joomla.filesystem.file');
define( 'YOURBASEPATH', dirname(__FILE__) );
require(YOURBASEPATH . DS . "includes/var.php");
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php ... | tomlagier/SLORTA | templates/at_newscenter/index.php | PHP | gpl-2.0 | 6,315 |
<!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"/>
<title>QuaZIP: Member List</title>
<link href="tabs.css" rel="stylesheet"... | Kurios/mudlet-dev | src/lib/quazip-0.4.4/doc/html/classJlCompress-members.html | HTML | gpl-2.0 | 3,984 |
<?php
/**
* cc.elearning.dev.com (elearning-Seite zum Erstellen/Bearbeiten von Kursanträgen)
* Indexdokument zum Entgegennehmen aller Requests
* @author Robert Leonhardt
* @date 2014/08/12
* @version 0.2
*/
## Session starten
$Session = new Session;
## Moodle API starten
$MoodleAPI = new M... | relecand/moodle-course-order | index.php | PHP | gpl-2.0 | 668 |
\documentclass[cjk,dvipdfmx,12pt,%
hyperref={bookmarks=true,bookmarksnumbered=true,bookmarksopen=false,%
colorlinks=false,%
pdftitle={第 57 回 関西 Debian 勉強会},%
pdfauthor={倉敷・のがた・河田・佐々木},%
%pdfinstitute={関西 Debian 勉強会},%
pdfsubject={資料},%
}]{beamer}
\title{第 57 回 関西 Debian 勉強会}
\subtitle{{\scriptsize 資料}}
\author[佐々木 洋平]... | dancerj/monthly-report | 2012/debianmeetingresume201203-kansai-presentation.tex | TeX | gpl-2.0 | 9,803 |
# server-based syntax
# ======================
# Defines a single server with a list of roles and multiple properties.
# You can define all roles on a single server, or split them:
server 'louisecrow.com', user: 'deploy', roles: %w{app db web}
# server 'example.com', user: 'deploy', roles: %w{app web}, other_property:... | crowbot/planningalerts-app | config/deploy/production.rb | Ruby | gpl-2.0 | 2,066 |
#define IDL4_INTERNAL
#include <idl4/test.h>
#define dprintf(a...)
void pager_thread(void)
{
int r;
l4_threadid_t src;
l4_umword_t dw0, dw1;
l4_msgdope_t result;
unsigned int dummyint;
l4_threadid_t mypagerid, dummyid, myid;
dprintf("Pager starting up (%X.%d)\n", l4_myself().id.task, l4_myself().id.... | l4ka/idl4 | src/test/api/v2/pager.c | C | gpl-2.0 | 1,629 |
#ifndef VECTOR_H
#define VECTOR_H
typedef struct Vector Vector;
// Allocates Vector |v| with bytes per element |bs|.
int VecNew(Vector **v, size_t bs);
// Adds element to end of Vector |v|.
int VecPush(Vector *v, void *data);
// Removes last element in Vector |v|.
int VecPop(Vector *v);
// Overwrites element at |i... | jneg/Vector | Vector.h | C | gpl-2.0 | 1,253 |
<?php
if(IN_MANAGER_MODE!="true") die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the MODX Content Manager instead of accessing this file directly.");
if(!$modx->hasPermission('exec_module')) {
$modx->webAlertAndQuit($_lang["error_no_privileges"]);
}
$id = isset($_GET['id'])? intval($_GET['id']) : 0;
if($id... | fortunto2/automodx | modx.evo.custom-master/manager/processors/execute_module.processor.php | PHP | gpl-2.0 | 3,648 |
/* asn_public.h
*
* Copyright (C) 2006-2016 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
* wolfSSL 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 op... | jay/wolfssl | wolfssl/wolfcrypt/asn_public.h | C | gpl-2.0 | 9,857 |
/*global angular*/
(function(angular, undefined) {
"use strict";
function CardsDeckCtrl() {
var ctrl = this;
}
CardsDeckCtrl.$inject = [];
angular
.module("cards.controllers.components")
.controller("CardsDeckCtrl", CardsDeckCtrl);
})(angular);
| Temoto-kun/cards-against-html | app/js/angular/controllers/components/CardsDeckCtrl.js | JavaScript | gpl-2.0 | 295 |
#ifndef __GC0307_H__
#define __GC0307_H__
static const struct regval_list gc0307_init_regs[] = {
// Initail Sequence Write In.
//========= close output
{0xf0,0x00},
{0x43,0x00},
{0x44,0xe2},
// {0x44,0xe6},
//========= close some functions
// open them after configure their parmameters
// {0x40,0x10},
// {0x41... | lshw/loongson1-linux-3.0 | drivers/media/video/ls1x_gc0307.h | C | gpl-2.0 | 7,508 |
<?php
if($permission < 4 || $username != 'admin'){
header("location: ../../index.php");
exit;
}
$time = time();
require '../../includes/main/pdoTablePrefix.php';
// "Example table."
$sql="CREATE TABLE {$skeleton}example(
`id` INT(10) NOT NULL AUTO_INCREMENT,
`example` ... | eahe/zzbulletin | plugins/skeleton/sql/install/skeleton.php | PHP | gpl-2.0 | 882 |
var utils = require('./utils'),
path = require('path'),
semver = require('semver'),
async = require('async');
exports.load = async.memoize(function (dir, callback) {
var settings_file = path.resolve(dir, 'package.json');
utils.readJSON(settings_file, function (err, settings) {
if (err) {
... | berkmancenter/spectacle | node_modules/bbb/node_modules/jamjs/lib/settings.js | JavaScript | gpl-2.0 | 1,497 |
#include "rule.hh"
using namespace iNA::Ast;
Rule::Rule(Node::NodeType type, GiNaC::ex rule)
: Node(type), rule(rule)
{
// pass
}
Rule::~Rule()
{
}
GiNaC::ex
Rule::getRule() const
{
return this->rule;
}
void
Rule::setRule(GiNaC::ex rule)
{
this->rule = rule;
}
void
Rule::accept(Ast::Visitor &visitor)... | hmatuschek/intrinsic-noise-analyzer | lib/ast/rule.cc | C++ | gpl-2.0 | 1,896 |
package mx.gob.imss.cit.bp.ws.bovedapersonalcommonschema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import mx.gob.imss.cit... | sidlors/BovedaPersonal | boveda-personal-ws/src/main/java/mx/gob/imss/cit/bp/ws/bovedapersonalcommonschema/BaseRequest.java | Java | gpl-2.0 | 2,455 |
<?php
/*
* @version $Id: softwareversion.class.php 23327 2015-02-02 17:15:33Z tsmr $
-------------------------------------------------------------------------
GLPI - Gestionnaire Libre de Parc Informatique
Copyright (C) 2003-2014 by the INDEPNET Development Team.
http://indepnet.net/ http://glpi-project.org
--... | dtiguarulhos/suporteguarulhos | inc/softwareversion.class.php | PHP | gpl-2.0 | 11,716 |
//
// PatternFormatterTest.cpp
//
// $Id: //poco/1.4/Foundation/testsuite/src/PatternFormatterTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of ... | aleciten/foo_siesta | Poco/Foundation/testsuite/src/PatternFormatterTest.cpp | C++ | gpl-2.0 | 3,919 |
<?php
/**
* @version SVN: <svn_id>
* @package Quick2cart
* @author Techjoomla <extensions@techjoomla.com>
* @copyright Copyright (c) 2009-2015 TechJoomla. All rights reserved.
* @license GNU General Public License version 2 or later.
*/
// No direct access.
defined('_JEXEC') or die();
?>
<div clas... | BetterBetterBetter/B3App | components/com_quick2cart/views/product/tmpl/taxship.php | PHP | gpl-2.0 | 5,915 |
/* This file is part of the KDE project
Copyright ( C ) 2003 Nadeem Hasan <nhasan@kde.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 you... | iegor/kdebase | ksysguard/gui/SensorDisplayLib/SensorLoggerSettings.h | C | gpl-2.0 | 1,556 |
# Android
Simple Android examples
| Juanjors/Android | README.md | Markdown | gpl-2.0 | 35 |
/*
* Copyright © 2010 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it wil... | ajtowns/altos | altosuilib/AltosVoice.java | Java | gpl-2.0 | 2,459 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2005,2006 INRIA
*
* 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 distri... | teto/ns-3-dev-git | src/core/model/ptr.h | C | gpl-2.0 | 21,074 |
/*
* GPL HEADER START
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This program 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 Foundation.
*
* This program is distributed... | tweag/lustre | lustre/include/lustre_swab.h | C | gpl-2.0 | 5,817 |
WARNINGS=-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return \
-Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wbad-function-cast \
-Wwrite-strings
CFLAGS+=-ffast-math -fomit-frame-pointer -static -pthread
ifeq "$(DATATYPE)" ""
DATATYPE=double
endif
ifeq "$(DATATYPE)" "int16_t"
TYPEFLAGS=... | IngenicSemiconductor/kernel-inwatch | tools/dmic-test/Makefile | Makefile | gpl-2.0 | 645 |
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/
package org.hibernate.jpa.event.spi;
import java.lang.annotation.Annotation;
import ja... | lamsfoundation/lams | 3rdParty_sources/hibernate-core/org/hibernate/jpa/event/spi/CallbackType.java | Java | gpl-2.0 | 1,134 |
package org.youscope.plugin.matlabscripting;
/*
* Copyright (c) 2010, Joshua Kaplan
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* - Redistributions of source code must retain the above... | langmo/youscope | plugins/matlab-scripting/src/main/java/org/youscope/plugin/matlabscripting/LocalMatlabProxy.java | Java | gpl-2.0 | 10,055 |
/* Build expressions with type checking for C compiler.
Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it... | ptriller/dcpu-gcc | gcc/c-typeck.c | C | gpl-2.0 | 340,349 |
# Portions Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
# Copyright Mercurial Contributors
#
# This software may be used and distributed according to the terms of the
# GNU General Public License v... | facebookexperimental/eden | eden/scm/edenscm/mercurial/annotate.py | Python | gpl-2.0 | 4,963 |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package controladora.Movimiento;
import Util.Utils;
import bo.DocumentoBO;
import bo.MovimientoBO;
import bo.TipoMovimientoBO;
import ... | jorgeevj/SICOTEC | sicotec-war/src/java/controladora/Movimiento/MovimientoMB.java | Java | gpl-2.0 | 2,565 |
/*
* Hotkey control
*
* Copyright 1998, 1999 Eric Kohl
* Copyright 2002 Gyorgy 'Nog' Jeney
* Copyright 2004 Robert Shearman
*
* 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; eith... | sunnyden/reactos | dll/win32/comctl32/hotkey.c | C | gpl-2.0 | 14,333 |
// --------------------------------------------------------------------------
// United Business Technologies
// Copyright (c) 2000 - 2010 All Rights Reserved.
//
// Source in this file is released to the public under the following license:
// ------------------------------------------------------------------... | ambilight-4-mediaportal/AtmoWin | XMLFoundation/Libraries/XMLFoundation/src/Utils/GMemory.cpp | C++ | gpl-2.0 | 2,774 |
/*
* Java Terrain and Stellar System Ports
*
* Copyright (C) 2006 Martin H. Smith based on work by original
* authors.
*
* Released under the terms of the GNU General Public License
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public ... | madebyjeffrey/TerraJ | src/main/java/com/alvermont/terraj/fracplanet/ui/CameraPosDialog.java | Java | gpl-2.0 | 19,778 |
//
// BNWorkbenchViewController.h
// BNApp
//
// Created by wujianqiang on 15/1/17.
// Copyright (c) 2015年 wujianqiang. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface BNWorkbenchViewController : UITabBarController
@end
| xwxz/BNApp | BNApp/BNApp/Controllers/BNWorkbenchViewController.h | C | gpl-2.0 | 240 |
<div>
<h2><span translate="tpjpaApp.electronique.detail.title">Electronique</span> {{electronique.id}}</h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th translate="entity.detail.field">Field</th>
... | CherifAbdoul/TpSirM1MIAGE_Ierlomenko-Kinfack-Haidara | tpJpa/src/main/webapp/scripts/app/entities/electronique/electronique-detail.html | HTML | gpl-2.0 | 712 |
/*
* Copyright (C) 2010, 2012-2014 ARM Limited. All rights reserved.
*
* This program is free software and is provided to you under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
... | stargo/android_kernel_amazon_ford | drivers/misc/mediatek/gpu/mt8127/mali/ump/linux/ump_kernel_linux.h | C | gpl-2.0 | 685 |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34011
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... | jimbojetset/Steganography | Steganography/Properties/Settings.Designer.cs | C# | gpl-2.0 | 1,070 |
<?php
/**
* @file
* Drupal site-specific configuration file.
*
* IMPORTANT NOTE:
* This file may have been set to read-only by the Drupal installation program.
* If you make changes to this file, be sure to protect it again after making
* your modifications. Failure to remove write permissions to this file is a... | tonysh518/shenzhi | sites/default/settings.php | PHP | gpl-2.0 | 23,496 |
/*
* linux/include/asm-arm/mmu_context.h
*
* Copyright (C) 1996 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.
*
* Changelog:
* 27-06-1996 RMK Created
... | kidmaple/CoolWall | linux-2.6.x/include/asm-arm/mmu_context.h | C | gpl-2.0 | 2,914 |
#ifndef RGRAPHICSSCENEQV_H
#define RGRAPHICSSCENEQV_H
#include <QGraphicsScene>
#include <QStack>
#include "RGraphicsScene.h"
#include "RLine.h"
#include "RPoint.h"
#include "RCircle.h"
#include "RArc.h"
class RDocumentInterface;
class RGraphicsItem;
class RGraphicsViewQV;
/**
* Graphics scene. This class impleme... | biluna/biluna | gv/src/gui/qt/qgraphicsview/RGraphicsSceneQV.h | C | gpl-2.0 | 1,833 |
/*****************************************************************************
1 Í·Îļþ°üº¬
*****************************************************************************/
#include "vos.h"
#include "pslog.h"
#include "PsCommonDef.h"
#include "rabminclude.h"
#include "NasRabmMain.h"
#include "NasRabmMsgProc.... | gabry3795/android_kernel_huawei_mt7_l09 | drivers/vendor/hisi/modem/ps/nas/gu/src/Rabm/src/NasRabmMain.c | C | gpl-2.0 | 40,673 |
/*
* Crossfire -- cooperative multi-player graphical RPG and adventure game
*
* Copyright (c) 1999-2014 Mark Wedel and the Crossfire Development Team
* Copyright (c) 1992 Frank Tore Johansen
*
* Crossfire is free software and comes with ABSOLUTELY NO WARRANTY. You are
* welcome to redistribute it under certain c... | tdalman/crossfire | common/button.cc | C++ | gpl-2.0 | 27,720 |
<!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_79) on Wed Jul 15 14:25:17 NZST 2015 -->
<title>All Classes</title>
<meta name="date" content="2015-07-15">
<link rel="stylesheet" type... | andrewjw1995/pairtree-java | doc/allclasses-noframe.html | HTML | gpl-2.0 | 988 |
# [Screenshot Captor](https://donationcoder.com/Software/Mouser/screenshotcaptor)
- Version: 4.16.1
- Date: 2015-12-12 | crowds0urce/source | tech/software/capture/screenshot_captor.md | Markdown | gpl-3.0 | 118 |
// Copyleft 2013 Chris Korda
// 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 any later version.
/*
chris korda
revision history:
rev date co... | victimofleisure/ChordEase | trunk/OptionsPage.h | C | gpl-3.0 | 1,807 |
# ----------------------------------------------------------------------
# Numenta Platform for Intelligent Computing (NuPIC)
# Copyright (C) 2013, Numenta, Inc. Unless you have purchased from
# Numenta, Inc. a separate commercial license for this software code, the
# following terms and conditions apply:
#
# This pro... | tkaitchuck/nupic | py/nupic/analysis/inspectors/network/__init__.py | Python | gpl-3.0 | 1,690 |
#include <stdio.h>
#include <wiringPi.h>
#include <sys/time.h>
int main()
{
wiringPiSetup();
pinMode(8,OUTPUT);
pinMode(9,INPUT);
int val;
while(1)
{
digitalWrite(8,LOW);
digitalWrite(8,HIGH);
delayMicroseconds(10);
digitalWrite(8,LOW);
struct timeval start,end;
while(1)
{
val=digitalRead... | GuidengLi/hello | hc_sr04.c | C | gpl-3.0 | 799 |
/*******************************************************************************
* Copyright 2009, 2017 Martin Davis
*
* 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.... | iCarto/siga | proj4j/src/main/java/org/locationtech/proj4j/UnsupportedParameterException.java | Java | gpl-3.0 | 993 |
using UnityEngine;
using System.Collections;
namespace Triangle.ItemSystem
{
public class ISEquipmentSlot : IISEquipmentSlot
{
[SerializeField] string _name;
[SerializeField] Sprite _icon;
public string Name
{
get { return _name; }
set { _name = value;... | zachstratton/Player | PlayerGame/Assets/ItemSystem(IS)/Scripts/ISEquipmentSlot.cs | C# | gpl-3.0 | 460 |
---
layout: politician2
title: kishor kumar
profile:
party: IPP
constituency: Kushi Nagar
state: Uttar Pradesh
education:
level: Graduate
details: professional b.com,llb,allahabad university
photo:
sex:
caste:
religion:
current-office-title:
crime-accusation-instances: 1
date-of-bir... | vaibhavb/wisevoter | site/politicians/_posts/2013-12-18-kishor-kumar.md | Markdown | gpl-3.0 | 1,264 |
package legacy;
import fbrec.control.Config;
import fbrec.error.TaggingException;
import fbrec.tagging.FbConnector.FbMessage;
import fbrec.tagging.FbConnector.FbStatus;
import fbrec.model.Tag;
import fbrec.tagging.module.Module;
import legacy.TfidfMatrix;
import legacy.TermMatrix.Doc;
import java.util.ArrayList;
impor... | dburgmann/fbRecommender | src/java/legacy/TfIdfTextModule.java | Java | gpl-3.0 | 3,104 |
package org.chaseme.gps;
import android.app.AlertDialog;
import android.app.Service;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android... | JayHuang/ChaseMe | ChaseMe/src/org/chaseme/gps/GPS.java | Java | gpl-3.0 | 6,302 |
<?php
namespace WinWin\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
class EncryptCookies extends BaseEncrypter
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}
| Yafuncl/winwin | app/Http/Middleware/EncryptCookies.php | PHP | gpl-3.0 | 303 |
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int temp,b,n,a;
float aa;
cin >> b >>n;
while(b!=0&&n!=0){
aa=pow(b,1.0/n);
a=floor(aa);
if((pow(a+1,n)-b)>(b-pow(a,n))){
cout << a <<endl;
}
else{
cout << a+1<<endl;
... | PuzzlesLab/WPC | Past Competitions/WPC - 009/B/15453763_jiuntian_B.cpp | C++ | gpl-3.0 | 372 |
namespace System.Net.NetworkInformation
{
public class PhysicalAddress
{
public static readonly PhysicalAddress None;
public PhysicalAddress(byte[] address)
{
throw new NotImplementedException();
}
public override int GetHashCode()
... | zebraxxl/CIL2Java | StdLibs/System/System/Net/NetworkInformation/PhysicalAddress.cs | C# | gpl-3.0 | 961 |
/*
This script captures a snap shot of disk file I/O
The sample duration is set by the @Delay parameter.
Aggregate and average values are calcuated for each file
The @DBName parameter can be used to select a single database, otherwise all user dbs and tempdb
The @Drive parameter can be used to choose a singl... | VaSquirrel/QueryWork | File_Get_IO_Stats_SnapShot.sql | SQL | gpl-3.0 | 5,522 |
/**
* Copyright 2010 Dejan Jovanovic.
*
* This file is part of cutsat.
*
* Cutsat is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later versio... | dddejan/cutsat | src/parser/mps_parser.h | C | gpl-3.0 | 1,282 |
package org.fhissen.settings;
import java.io.File;
import java.util.HashMap;
import java.util.Iterator;
import org.apache.commons.codec.binary.Base64;
import org.fhissen.utils.FileUtils;
public class KeyvalueFile {
private File f;
private HashMap<String, String> hm = new HashMap<>();
public Keyva... | fhissen/CrococryptFile | CrococryptFile/common/org/fhissen/settings/KeyvalueFile.java | Java | gpl-3.0 | 2,800 |
/* Heroes Persist
Product which helps in organizing, broadcasting, celebrating events
Copyright (C) 2014 Sai Pranav
Email: rsaipranav92@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 S... | saipranav/Heroes-Persist | Sports/src/main/java/com/heroespersist/sports/exception/SportsException.java | Java | gpl-3.0 | 1,088 |
Ext.namespace("GEOR.Addons");
GEOR.Addons.Annotation = function(map, options) {
this.map = map;
this.options = options;
this.control = null;
this.item = null;
this.window = null;
};
// If required, may extend or compose with Ext.util.Observable
//Ext.extend(GEOR.Addons.Annotation, Ext.util.Observa... | pgiraud/georchestra | mapfishapp/src/main/webapp/app/addons/annotation/js/main.js | JavaScript | gpl-3.0 | 2,237 |
base:
scripts/00_getbase_download.sh
scripts/01_getbase_busybox.sh
scripts/02_getbase_kernel_headers.sh
scripts/03_getbase_uclibc.sh
scripts/04_getbase_python.sh
scripts/05_getbase_samba.sh
scripts/06_getbase_dropbear.sh
download:
scripts/00_getbase_download.sh
busybox:
scripts/01_getbase_busybox.sh
kernel_hea... | NachE/PiNAS | Makefile | Makefile | gpl-3.0 | 1,713 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.