code stringlengths 3 1.05M | repo_name stringlengths 4 116 | path stringlengths 3 942 | language stringclasses 30
values | license stringclasses 15
values | size int32 3 1.05M |
|---|---|---|---|---|---|
/********************************
* 프로젝트 : gargoyle-rax
* 패키지 : com.kyj.fx.rax
* 작성일 : 2018. 7. 3.
* 작성자 : KYJ
*******************************/
package com.kyj.fx.rax;
import java.util.function.Function;
import com.kyj.fx.commons.utils.FxUtil;
import com.kyj.fx.commons.utils.ValueUtil;
import com.kyj.fx.ra... | callakrsos/Gargoyle | gargoyle-rax/src/main/java/com/kyj/fx/rax/AbstractFomulaParameterToLabelFunction.java | Java | gpl-2.0 | 1,093 |
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2019 Dominik Reichl <dominik.reichl@t-online.de>
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 ... | joshuadugie/KeePass-2.x | KeePassLib/Cryptography/Cipher/StandardAesEngine.cs | C# | gpl-2.0 | 3,938 |
#include<stdio.h>
int main()
{
int a[15];
int i,j,temp;
for(i=0; i<10; i++)
scanf("%d",&a[i]);
for(i=1; i<=9; i++)
for(j=0; j<9; j++)
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}... | zning1994/practice | Program/SDKDOJ/SDKDACM/VOJ/ex2.c | C | gpl-2.0 | 396 |
#ifndef CT_REDEFINE
#define CT_REDEFINE
/* Workaround for my version of rpcgen */
#define cvstool_ls_1_svc cvstool_ls_1
#define cvstool_lsver_1_svc cvstool_lsver_1
#define cvstool_update_1_svc cvstool_update_1
#endif
| garye/VCFS | cvstool_redefines.h | C | gpl-2.0 | 219 |
<?php
$this->breadcrumbs = array(
'Danh mục tuyển dụng' => array('index'),
'Manage',
);
$this->menu = array(
array('label' => 'Thêm mới', 'url' => array('create'))
);
Yii::app()->clientScript->registerScript('search', "
$('.search-button').click(function(){
$('.search-form').toggle();
return false;
});
... | sonha/camera | protected/views/admin/jobs/admin.php | PHP | gpl-2.0 | 5,774 |
package net.minecraft.src;
public class RequestDelete extends Request
{
public RequestDelete(String par1Str, int par2, int par3)
{
super(par1Str, par2, par3);
}
public RequestDelete func_96370_f()
{
try
{
this.field_96367_a.setDoOutput(true);
this.fi... | LolololTrololol/InsertNameHere | minecraft/net/minecraft/src/RequestDelete.java | Java | gpl-2.0 | 662 |
/**
* Created by kuku on 10/01/15.
*/
$(document).ready(function(){
$('.form-usuario-perfil').attr('disabled', 'disabled'); //Disable
});
$(".editarFormularioUsuarioPerfil").click(mostrarBotonesPerfil);
function mostrarBotonesPerfil(){
$("#botoneraPerfil").show("slow");
$(".editarFormularioUsuarioPerf... | IsmiKin/Podonet | web/js/usuario/perfilUsuario.js | JavaScript | gpl-2.0 | 342 |
# Makefile for OS project
# To build, first `make dep`, then `make`. Everything should be automatic.
# Will compile all *.c and *.S files in the current directory.
OUTDIR = output/
release: CFLAGS_EXTRA = -flto -ffat-lto-objects -fwhole-program -O2 -DRELEASE_BUILD
release: bootimg
# Flags to use when compiling, prep... | TakefiveInteractive/TedkOS | student-distrib/Makefile | Makefile | gpl-2.0 | 2,089 |
//
// gbuild.h --- definition of the abstract G matrix builder
//
// Copyright (C) 1996 Limit Point Systems, Inc.
//
// Author: Edward Seidl <seidl@janed.com>
// Maintainer: LPS
//
// This file is part of the SC Toolkit.
//
// The SC Toolkit is free software; you can redistribute it and/or modify
// it under the terms ... | qsnake/mpqc | src/lib/chemistry/qc/scf/gbuild.h | C | gpl-2.0 | 1,484 |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateExperimentScientistsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('ex... | khaivngo/QuickEval | database/migrations/2021_05_14_012802_create_experiment_scientists_table.php | PHP | gpl-2.0 | 870 |
<!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... | mibischo/freemind | doxygen/html/classfreemind_1_1controller_1_1filter_1_1condition_1_1_selected_view_condition-members.html | HTML | gpl-2.0 | 8,349 |
<?php
/* Finding the path to the wp-admin folder */
$iswin = preg_match('/:\\\/', dirname(__file__));
$slash = ($iswin) ? "\\" : "/";
$wp_path = preg_split('/(?=((\\\|\/)wp-content)).*/', dirname(__file__));
$wp_path = (isset($wp_path[0]) && $wp_path[0] != "") ? $wp_path[0] : $_SERVER["DOCUMENT_ROOT"];
/** Load Word... | EthanBlast/Glam-Star-Life | wp-content/plugins/kimili-flash-embed/admin/config.php | PHP | gpl-2.0 | 28,850 |
package main
import (
"fmt"
"log"
"net/http"
"os"
"strconv"
"github.com/akamensky/argparse"
"github.com/skip2/go-qrcode"
)
type Config struct {
Port *int
}
func handle(w http.ResponseWriter, r *http.Request) {
log.Printf("%s %s %s %s", r.RemoteAddr, r.Method, r.URL, r.Proto)
w.Header().Set("Access-Control... | LaoQi/icode | qrcodegen/qrcodeGen.go | GO | gpl-2.0 | 1,540 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using HA4IoT.Contracts.Api;
using HA4IoT.Contracts.Services;
using HA4IoT.Contracts.Services.Backup;
using HA4IoT.Contracts.Services.Resources;
using HA4IoT.Contracts.Services.Settings;
using HA4IoT.Contracts.Services.Storage;
... | byrialsen/HA4IoT | SDK/HA4IoT/Services/Resources/ResourceService.cs | C# | gpl-2.0 | 7,003 |
////////////////////////////////////////////////////////////////////////////////
// //
// Copyright (C) 2003-2010, Coolsand Technologies, Inc. //
// All Rights Reserved ... | BarryChen/RDA | RDA585X_V2.1_SVN32/platform/edrv/fmd/rda5820/src/fmd.c | C | gpl-2.0 | 31,554 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="./asset... | saez0pub/simpleIHM | var/templates/header_1.html | HTML | gpl-2.0 | 891 |
(function($){
$(function(){
boxHeight(0.4,0.7);
var imgSrc1 = $('.view-banner .views-field-field-image-banner img').attr('src');
var current2 = $('.view-banner .views-field-field-image-banner');
$('.view-banner .views-field-field-image-banner img').remove();
$(current2).append('<div class="backbg"></div>');
$('... | CCI-Studios/RE-Dale | sites/all/themes/redale/js/background-size.js | JavaScript | gpl-2.0 | 1,248 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- /home/test1/tmp/qtopia/qt//qtopia-core-opensource-src-4.3.6/src/corelib/kernel/qtimer.cpp -->
<head>
<title>Qt 4.3:... | muromec/qtopia-ezx | qtopiacore/qt/doc/html/qtimer-qt3.html | HTML | gpl-2.0 | 3,416 |
<?php
/**
* -------------------------------------------------------------------------
* Fields plugin for GLPI
* -------------------------------------------------------------------------
*
* LICENSE
*
* This file is part of Fields.
*
* Fields is free software; you can redistribute it and/or modify
* it under... | pluginsGLPI/fields | front/commondropdown.form.php | PHP | gpl-2.0 | 1,481 |
/**
* \file PropertyTreeTest.hpp
* \brief PropertyTree unit test header file
*
*/
/*
* This file is part of OndALear collection of open source components.
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising... | ajaniv/softwarebook | c++/Container/ContainerTest/PropertyTreeTest.hpp | C++ | gpl-2.0 | 1,435 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using Configuration;
using Domain;
using Core;
using Extensions;
namespace Extensions {
public static class CollectionExtensions {
/// <summary>
/// Merge elements in the ordered sequence <code>colle... | olale/GenericDAO | GenericDAO/Extensions/CollectionExtensions.cs | C# | gpl-2.0 | 2,940 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_05) on Wed Nov 20 14:29:07 CET 2013 -->
<title>Uses of Interface de.bwvaachen.beamoflightgame.model.INumberTile</title>
<meta nam... | BastianW/LichtstrahlenSpiel | de.bwvaachen.beamoflightgame/doc/de/bwvaachen/beamoflightgame/model/class-use/INumberTile.html | HTML | gpl-2.0 | 6,680 |
// display the calendar here
var hotelTable = document.getElementById("hotelCalendarTable");
var defaultData = hotelTable.innerHTML;
var stringHTML = "";
var date=31;
var count=0;
// stringHTML = "<tr><td>1</td><td>2</td></tr>";
var table = document.getElementById("hotelCalendarTable");
for (var i = 1; i <= date; i+... | Athit101/ITE220 | Week2-2/js/calendar.js | JavaScript | gpl-2.0 | 566 |
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : Variable Reference: $plugins</title>
<link rel="stylesheet" href="../sample.css" type="text/css">
<link rel="stylesheet" href="../sample-print.css... | mgsolipa/b2evolution_phpxref | _variables/plugins.html | HTML | gpl-2.0 | 5,626 |
<?php
/**
* @package HikaShop for Joomla!
* @version 2.6.1
* @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 hikashopOrderHelper {
var $table = '';
... | githubupttik/upttik | administrator/components/com_hikashop/helpers/order.php | PHP | gpl-2.0 | 6,728 |
// Copyright 2012 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Review notes:
//
// - The use of macros in these inline functions may seem superfluous
// but it is absolutely needed to make sure gcc generates op... | hellotomfan/v8-coroutine | deps/v8/src/objects-inl.h | C | gpl-2.0 | 224,121 |
/**
* @file region.cc
* @author Thomas M. Howard (tmhoward@csail.mit.edu)
* Matthew R. Walter (mwalter@csail.mit.edu)
* @version 1.0
*
* @section LICENSE
*
* This file is part of h2sl.
*
* Copyright (C) 2014 by the Massachusetts Institute of Technology
*
* This program is free software; you can... | tmhoward/h2sl | src/symbol/region.cc | C++ | gpl-2.0 | 4,358 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<base data-ice="baseUrl" href="../../../../../">
<title data-ice="title">js/echo/store/proxy/index.js | API Document</title>
<link type="text/css" rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="css/prettify-tomorrow.css"... | flessard/ECHO-Framework | public/esdoc/file/js/echo/store/proxy/index.js.html | HTML | gpl-2.0 | 7,853 |
//
// view_dialogs.hpp
// BoE
//
// Created by Celtic Minstrel on 17-01-21.
//
//
#ifndef BOE_VIEW_DIALOGS_HPP
#define BOE_VIEW_DIALOGS_HPP
void put_item_info(class cDialog& me, const class cItem& s_i, const class cScenario& scen);
void put_monst_info(class cDialog& me, const class cMonster& store_m, const class c... | calref/cboe | src/view_dialogs.hpp | C++ | gpl-2.0 | 446 |
/*****************************************************************************
* File: cvs_cmds.c
* Functions for communicating with the CVS server. Responses from the server
* are read into cvs_buff structures, and are read one line at a time by
* cvs_read_line.
*********************************************... | garye/VCFS | cvs_cmds.c | C | gpl-2.0 | 16,236 |
/*
***************************************************************************
* Ralink Tech Inc.
* 4F, No. 2 Technology 5th Rd.
* Science-based Industrial Park
* Hsin-chu, Taiwan, R.O.C.
*
* (c) Copyright 2002-2006, Ralink Technology, Inc.
*
* All rights reserved. Ralink's source code is an unpublished work a... | tianfy/openwrt-adkill | package/rt2860v2/files/rt2860v2/ap/ap_apcli.c | C | gpl-2.0 | 92,946 |
<?php
declare (strict_types = 1);
namespace Drupal\Tests\business\Kernel;
use Drupal\business\Tests\BusinessTestHelper;
use Drupal\invoices\Tests\BaseTestHelper;
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
/**
* CRUD tests for the Business module.
*
* @group business
*/
class BusinessCrudTest exten... | pfrenssen/invoices | web/modules/custom/business/tests/src/Kernel/BusinessCrudTest.php | PHP | gpl-2.0 | 2,893 |
#include "SparseDataLoader.h"
void SparseDataLoader::readSparseData(std::string filename){
std::ifstream file (filename);
std::string temp;
std::getline(file, temp);
while (std::getline(file, temp))
{
std::istringstream buffer(temp);
std::vector<int> tmpLine((std::istream_iterator<int>(b... | adam-andrzejczak/k_plus_triangle | SparseDataLoader.cpp | C++ | gpl-2.0 | 1,281 |
#!/usr/bin/python
import sys
import csv
import json
import pycountry
import codecs
from collections import defaultdict
class Region(object):
def __init__(self, name, code=None, level=0, parent=None, verbose=False):
self.name = name
self.code = code
self.level = level
self.contains ... | mitodl/world_geographic_regions | CountriesByRegion.py | Python | gpl-2.0 | 6,565 |
# Created by Thomas Jones on 17/12/2015 - thomas@tomtecsolutions.com
# pingspec.py, a plugin for minqlx to spec players who have network latency over a certain amount.
# This plugin is released to everyone, for any purpose. It comes with no warranty, no guarantee it works, it's released AS IS.
# You can modify everythi... | tjone270/QuakeLiveDS_Scripts | minqlx-plugins/archive/beta/pingspec.py | Python | gpl-2.0 | 2,601 |
/*
* daemonlib
* Copyright (C) 2012-2014, 2018-2019 Matthias Bolte <matthias@tinkerforge.com>
* Copyright (C) 2014, 2018 Olaf Lüke <olaf@tinkerforge.com>
*
* packet.h: Packet definition for protocol version 2
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GN... | Tinkerforge/daemonlib | packet.h | C | gpl-2.0 | 5,128 |
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2015 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// --------------------------------------------------... | espertechinc/nesper | src/NEsper.Common/common/internal/epl/expression/dot/core/ExprDotNodeImpl.cs | C# | gpl-2.0 | 41,544 |
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
void printvalues(int **data, int size)
{
int i, j;
for (i = 0; i < size; i++) {
for (j = 0; j < size; j++) {
printf("%d ", data[i][j]);
}
printf("\n");
}
}
int totalactivephones(int **data, int X1, int X2, int Y1, int Y2)
{
// printf("find total ac... | pankajdube/practice | spoj/nkmobile_debug.c | C | gpl-2.0 | 1,308 |
package org.openymsg.legacy.test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.openymsg.SlowTest;
import org.openymsg.legacy.network.FireEvent;... | OpenYMSG/openymsg | src/test/java/org/openymsg/legacy/test/StatusIT.java | Java | gpl-2.0 | 3,490 |
-- MySQL dump 10.13
--
-- Host: localhost Database: mangos
-- ------------------------------------------------------
-- Server version 5.5.32
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@... | alysher/mangos-cata-pb | sql/mangos.sql | SQL | gpl-2.0 | 751,377 |
package de.bitbrain.craft.graphics.shader;
import com.badlogic.gdx.graphics.g2d.Batch;
/**
* Handles multiple shaders for a single target
*
* @author Miguel Gonzalez <miguel-gonzalez@gmx.de>
* @since 0.1
* @version 0.1
*/
public interface ShadeArea {
// =======================================================... | bitbrain-gaming/craft | core/src/de/bitbrain/craft/graphics/shader/ShadeArea.java | Java | gpl-2.0 | 676 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0" />
<title>简历</title>
<style>
header {
background-color: #fcfcfc;
border-bottom: solid #dddfe3 1px;
}
header a{
display:... | felix0080/felix0080.github.io | me.html | HTML | gpl-2.0 | 20,168 |
/*
* 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 utilesFXAvisos.forms.util;
import ListDatos.IBusquedaListener;
import utilesFX.*;
import ListDatos.IFilaDatos;
import ListDato... | Creativa3d/box3d | paquetesGUIFX/src/utilesFXAvisos/forms/util/JTableViewEventos.java | Java | gpl-2.0 | 2,135 |
<?php
defined('WYSIJA') or die('Restricted access');
class WYSIJA_control_front_confirm extends WYSIJA_control_front{
var $model='user';
var $view='confirm';
function WYSIJA_control_front_confirm(){
parent::WYSIJA_control_front();
}
function _testKeyuser(){
$this->helperUser=WYSI... | eyanai/hop | wp-content/plugins/wysija-newsletters/controllers/front/confirm.php | PHP | gpl-2.0 | 14,472 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="es">
<head>
<!-- Generated by javadoc (1.8.0_66) on Wed Jan 27 20:11:18 CET 2016 -->
<title>Asignatura</title>
<meta name="date" content="2016-01-27">
<link rel="stylesheet" type="text/css... | daster1324/enroll | doc/modelo/Asignatura.html | HTML | gpl-2.0 | 13,791 |
<?php
include("config_mynonprofit.php");
include("connect.php");
include("functions.php");
include("template_header.php"); ?>
<h1>A confirmation email has been sent</h1><p>Follow the enclosed link to activate your account.</p>
</body>
</html> | Enjabain/My-NP | register-success.php | PHP | gpl-2.0 | 244 |
package netdata.packet;
import netdata.Payload;
public class ARPpacket extends Packet{
public enum OPERATION{
REQUEST,
REPLY
};
private int type;
private OPERATION arpOp;
private String sourceMAC, destMAC = null;
public ARPpacket(String sourceip, String destip, String sourceMAC, String destMA... | frawg/NetFramework | src/netdata/packet/ARPpacket.java | Java | gpl-2.0 | 768 |
<!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... | kypp/intel_tbb | doc/html/a00168.html | HTML | gpl-2.0 | 6,722 |
<?php
/**
* @version SVN: <svn_id>
* @package Quick2cart
* @author Techjoomla <extensions@techjoomla.com>
* @copyright Copyright (c) 2009-2016 TechJoomla. All rights reserved.
* @license GNU General Public License version 2 or later.
*/
// No direct access.
defined('_JEXEC') or die();
jimport('joo... | nitesh146/Motleymart | administrator/components/com_quick2cart/assets/elements/bssetup.php | PHP | gpl-2.0 | 1,407 |
#ifndef _LINUX_NFS_XDR_H
#define _LINUX_NFS_XDR_H
#include <linux/nfsacl.h>
#include <linux/nfs3.h>
<<<<<<< HEAD
#include <linux/sunrpc/gss_api.h>
=======
>>>>>>> 296c66da8a02d52243f45b80521febece5ed498a
/*
* To change the maximum rsize and wsize supported by the NFS client, adjust
* NFS_MAX_FILE_IO_SIZE. 64KB is ... | Core2idiot/Kernel-Samsung-3.0...- | include/linux/nfs_xdr.h | C | gpl-2.0 | 32,691 |
/*
* Copyright (C) 2008-2012 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... | BlackWolfsDen/Justicar-WoW | src/server/game/Spells/SpellScript.cpp | C++ | gpl-2.0 | 34,032 |
#define MIKTEX_UTF8_WRAP_ALL 1
#include <miktex/utf8wrap.h>
#include <iostream>
#include <string>
using namespace std;
#if defined(_MSC_VER)
# define MAIN wmain
#else
# define MAIN main
#endif
void FatalError(const string & msg)
{
cerr << msg << endl;
throw 1;
}
void Run()
{
string test = u8"\U000000E4\U00... | drazenzadravec/nequeo | Tools/MikTex/Libraries/MiKTeX/UTF8Wrap/static/utf8wrap.cpp | C++ | gpl-2.0 | 1,290 |
<?php
/**
* @copyright Ilch 2.0
* @package ilch
*/
return array
(
'menuCalendarList' => 'Calender',
'noCalendar' => 'no Entries available',
'term' => 'Term',
'title' => 'Title',
'text' => 'Text',
'color' => 'Term Color',
'place' => 'Place',
'start' => 'Start',
'end' => 'End',
... | jurri/Ilch-2.0 | application/modules/calendar/translations/en.php | PHP | gpl-2.0 | 452 |
var interface_data_cell_phone =
[
[ "callButtonClicked:", "interface_data_cell_phone.html#abb91ce98f4b5920f486508bbf150c68a", null ],
[ "mainTextLabel", "interface_data_cell_phone.html#aefc998f3932ae7f2decba1eaaec427c0", null ],
[ "titleLabel", "interface_data_cell_phone.html#a0c3e159f8e753caaaa07fe67776faa... | BiCoR/RailsServer | public/doc/iphone_client/interface_data_cell_phone.js | JavaScript | gpl-2.0 | 334 |
/*!
* \file util.h
*
* \author Copyright (C) 2010 by Luis Matos <gass@otiliamatos.ath.cx>.
*
* \author Copyright (C) 2010, 2014, 2015, 2016, 2017, 2018, 2019
* by Bert Timmerman <bert.timmerman@xs4all.nl>.
*
* \brief Header file for libDXF coding utilities.
*
* <hr>
* <h1><b>Copyright Notices.</b></h1>\n
* ... | bert/libdxf | src/util.h | C | gpl-2.0 | 4,651 |
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/) *
* *
... | Tontonitch/icinga2 | lib/methods/icingachecktask.cpp | C++ | gpl-2.0 | 8,065 |
////////////////////////////////////////////////////////////
//
// File: parser.cpp
// Author: Frank Boerman
// Parsers for files
///////////////////////////////////////////////////////////
//#pragma warning(disable : 4244) //converting double to int is needed when calculating gridsize, so disable that warning
//#pragm... | williewonka/computation2_C | Computation2_finaltask/GameOfLife/Parser.cpp | C++ | gpl-2.0 | 7,205 |
<?php
/**
* Joomla! Content Management System
*
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
namespace Joomla\CMS\Event\WebAsset;
\defined('JPATH_PLATFORM') or die;
use BadMethodCallException;
u... | twister65/joomla-cms | libraries/src/Event/WebAsset/AbstractEvent.php | PHP | gpl-2.0 | 979 |
<!--
IE 6 makes the page to wide with the following doctype. I accept
standards if they help me, not if they make anything even harder!
//-->
<!--<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN' 'http://www.w3.org/TR/REC-html40/loose.dtd'>//-->
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by PhpDoc date:... | srgg6701/WebApps | .phpDocumentation/CHMdefaultConverter/default/_com_content---views---featured---tmpl---default---all_our.php.html | HTML | gpl-2.0 | 2,191 |
<!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/html; charset=utf-8" />
<title>欧式田园八角花</title>
<meta name="keywords" content="" />
<meta na... | 306076197/hudson | cpyfw/cpfl/czpj/2014-09-23/601.html | HTML | gpl-2.0 | 23,776 |
# Copyright (C) 2014 Red Hat, Inc.
#
# This program 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 version.
#
# This program is distr... | itoed/anaconda | tests/gui/inside/summary.py | Python | gpl-2.0 | 3,986 |
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<title><?php wp_title( ' | ', true, 'right' ); ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>" />
<script sr... | Koda1004/harvardrunningclub | wp-content/themes/simple and clean/header.php | PHP | gpl-2.0 | 2,330 |
<?php
/*
Plugin Name: Memcached
Description: Memcached backend for the WP Object Cache.
Version: 2.1.2
Plugin URI: http://wordpress.org/extend/plugins/memcached/
Author: Ryan Boren, Denis de Bernardy, Matt Martz, Km.Van
Install this file to wp-content/object-cache.php
*/
function wp_cache_add($key, $data, $g... | hensonvip/zzyzan | wp-content/themes/mx/addons/cache/object-cache.php | PHP | gpl-2.0 | 11,422 |
<!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_21) on Thu May 09 16:35:11 CST 2013 -->
<title>Uses of Interface GeDBIT.mckoi.store.Area</title>
<meta name="date" content="2013-05-09"... | marknv/GeDBIT | doc/GeDBIT/mckoi/store/class-use/Area.html | HTML | gpl-2.0 | 11,960 |
#include <gst/gst.h>
int main(int argc, char *argv[]) {
GstElement *pipeline, *source, *sink;
GstBus *bus;
GstMessage *msg;
GstStateChangeReturn ret;
/* Initialize GStreamer */
gst_init (&argc, &argv);
/* Create the elements */
source = gst_element_factory_make ("videotestsrc", "source");
... | WilstonOreo/OmnidomeServer | src/main.c | C | gpl-2.0 | 2,269 |
/*********
*
* In the name of the Father, and of the Son, and of the Holy Spirit.
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2016 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
#i... | greg-hellings/bibletime | src/backend/managers/cswordbackend.h | C | gpl-2.0 | 8,611 |
using System;
using Server.Network;
using Server.Items;
namespace Server.Items
{
[FlipableAttribute( 0x27A8, 0x27F3 )]
public class Bokuto : BaseSword
{
public override WeaponAbility PrimaryAbility{ get{ return WeaponAbility.CrushingBlow; } }
public override WeaponAbility SecondaryAbility{ get{ return WeaponAbi... | brodock/sunuo | scripts/legacy/Items/Weapons/SE Weapons/Bokuto.cs | C# | gpl-2.0 | 1,431 |
//
// --------------------------------------------------------------------------
// Gurux Ltd
//
//
//
//
// Version: $Revision: 9806 $,
// $Date: 2018-01-12 11:44:00 +0200 (pe, 12 tammi 2018) $
// $Author: gurux01 $
//
// Copyright (c) Gurux Ltd
//
//------------------------... | Gurux/GXDLMSDirector | Development/ConformanceTests/Internal/GXConformanceValueDescriptorCollection.cs | C# | gpl-2.0 | 1,766 |
<?php
/**
* Test of authorisation object logic
*
* @author Stuart Prescott
* @copyright Copyright Stuart Prescott
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: auth.php,v 1.3 2006/01/05 02:32:07 stuart Exp $
* @package Bumblebee
* @subpackage Tests
*/
ini_set... | nausica/bumblebee | inc/bb/test/auth.php | PHP | gpl-2.0 | 1,056 |
#include "stdafx.h"
//
// this is the path to amplugin.h and all the plugin/libs
// by default all the libs, (debug/x64/x86) are copied to the /Plugins/ folder.
//
// If you want to copy them somewhere else
// 1) Make sure that the inlcude path below is valid
// 2) Make sure that the library path is valid
// Proj... | FFMG/myoddweb.piger | plugins/OnTop/OnTop/OnTop.cpp | C++ | gpl-2.0 | 2,935 |
using System;
using System.Linq;
namespace BirthdayGreetings
{
public class BirthdayGreetingsEngine
{
private readonly PeopleRepository _peopleRepository;
private readonly GreetingsDeliveryService _greetingsDeliverService;
public BirthdayGreetingsEngine(PeopleRepository peopleReposito... | PaoloLaurenti/BirthdayGreetingsKata | src/BirthdayGreetings/BirthdayGreetingsEngine.cs | C# | gpl-2.0 | 1,320 |
<script language="javascript">
function fncSubmit()
{
document.house.submit();
}
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
... | kukks205/jhhc | page/familyfolder/house_edt.php | PHP | gpl-2.0 | 10,864 |
/* Smooth scrolling
Changes links that link to other parts of this page to scroll
smoothly to those links rather than jump to them directly, which
can be a little disorienting.
sil, http://www.kryogenix.org/
v1.0 2003-11-11
v1.1 2005-06-16 wrap it up in an object
*/
var ss = {
fixAllLinks: ... | tatematsu/tatematsu | common/js/scroll.js | JavaScript | gpl-2.0 | 4,557 |
// Combat Simulator Project - FlightSim Demo
// Copyright (C) 2004 The Combat Simulator Project
// http://csp.sourceforge.net
//
// 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... | nsmoooose/csp | csp/cspsim/battlefield/LocalBattlefield.h | C | gpl-2.0 | 7,539 |
/*
body #main {
background: url(//essentialhotels.co.uk/wp-content/uploads/2014/08/Lowry-Hotel-Different-1200-x-Use.jpg) 50%;
text-align: center;
}
*/
body {
font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 300;
}
.typeahead,
.tt-query,
.tt-hint {
width: 420px;
... | marcus7777/eh-theme | css/mainb.css | CSS | gpl-2.0 | 4,964 |
<?php
/**
* @version 2.0 +
* @package Open Source Excellence Security Suite
* @subpackage Centrora Security Firewall
* @subpackage Open Source Excellence WordPress Firewall
* @author Open Source Excellence {@link http://www.opensource-excellence.com}
* @author Created on 01-Jun-2013
... | amang-cuelogic/wp_test | wp-content/plugins/ose-firewall/framework/oseframework/db/joomla.php | PHP | gpl-2.0 | 2,392 |
/*
* kernel/sched/core.c
*
* Kernel scheduler and related syscalls
*
* Copyright (C) 1991-2002 Linus Torvalds
*
* 1996-12-23 Modified by Dave Grothe to fix bugs in semaphores and
* make semaphores SMP safe
* 1998-11-19 Implemented schedule_timeout() and related stuff
* by Andrea Arcangeli
* 2002-01... | AOSP-Jaguar/android_kernel_sony_msm8974 | kernel/sched/core.c | C | gpl-2.0 | 208,663 |
# This file is part of BurnMan - a thermoelastic and thermodynamic toolkit for
# the Earth and Planetary Sciences
# Copyright (C) 2012 - 2022 by the BurnMan team, released under the GNU
# GPL v2 or later.
"""
example_fit_solution
--------------------
This example demonstrates how to fit parameters
for solution model... | geodynamics/burnman | examples/example_fit_solution.py | Python | gpl-2.0 | 9,817 |
/* Control over an attribute of a line
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath 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 ... | DASAR/Minim-Android | src/ddf/minim/javax/sound/sampled/Control.java | Java | gpl-2.0 | 3,000 |
<?php
// The Query
$args = array(
'post_type'=> 'pizza',
'cat' => 2,
'p' => 50
);
$the_query = new WP_Query( $args);
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
$theme_options = ifne( $GLOBALS, 'theme_options', array() );
$page_fields ... | guardiancomics/Heros-Pizza | wp-content/themes/herospizza/parts/pizzas/sides_superhumanSpinach.php | PHP | gpl-2.0 | 2,274 |
using System;
using Newtonsoft.Json;
namespace Ombi.Settings.Settings.Models.Notifications
{
public class DiscordNotificationSettings : Settings
{
public bool Enabled { get; set; }
public string WebhookUrl { get; set; }
public string Username { get; set; }
public string Icon { ... | tidusjar/Ombi | src/Ombi.Settings/Settings/Models/Notifications/DiscordNotificationSettings.cs | C# | gpl-2.0 | 956 |
<?php
/**
* Openinghtml Module class file
*
* @category Markup
* @package Xiphe\HTML
* @author Hannes Diercks <xiphe@gmx.de>
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU GENERAL PUBLIC LICENSE
* @link https://github.com/Xiphe/-HTML/blob/master/modules/Openinghtml.php
*/
namespace X... | Xiphe/DropboxConflictMerger | src/Xiphe/HTML/modules/Openinghtml.php | PHP | gpl-2.0 | 4,576 |
/*
* Copyright (C) 2013 David Graeff <david.graeff@udo.edu>
* Based on Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
* Released under the terms of the GNU GPL v2.0.
*/
#include "qconf.h"
#include "mainwindow.h"
#include <qglobal.h>
#include <QApplication>
#include <QDebug>
#include "../expr.h"
#include "... | davidgraeff/linux | scripts/kconfig/qconfig/qconf.cc | C++ | gpl-2.0 | 1,598 |
/*
Kopete Oscar Protocol
connection.cpp - independent protocol encapsulation
Copyright (c) 2004-2005 by Matt Rogers <mattr@kde.org>
Based on code Copyright (c) 2004 SuSE Linux AG <http://www.suse.com>
Based on Iris, Copyright (C) 2003 Justin Karneges
Kopete (c) 2002-2005 by the Kopete developers <kopete-devel... | iegor/kdenetwork | kopete/protocols/oscar/liboscar/connection.cpp | C++ | gpl-2.0 | 5,832 |
// DO NOT EDIT
// generated from qop_pc.h
#ifndef _QOP_D3_H
#define _QOP_D3_H
#include <qdp.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct QOP_D3_ColorVector_struct QOP_D3_ColorVector;
typedef struct QOP_D3_DiracFermion_struct QOP_D3_DiracFermion;
typedef struct QOP_D3_GaugeField_struct QOP_D3_GaugeF... | usqcd-software/qopqdp | include/qop_d3.h | C | gpl-2.0 | 30,669 |
MomentPicker
============
Project to create a date and time picker based on MomentJS
| jpobley/MomentPicker | README.md | Markdown | gpl-2.0 | 86 |
using GraphPlugins;
namespace GraphCodec
{
class CustomCodecConfig : ICodecConfig
{
public IGraphCodec CreateGraphCodec()
{
return new CustomGraphCodec();
}
public string GetCodecName()
{
return "Custom";
}
}
}
| imefGames/GraphViewer | GraphCodec/CustomCodecConfig.cs | C# | gpl-2.0 | 300 |
<!--
* The Shell that holds all other templates in place
* Copyright (C) 2014-2015 Forfuture LLC <we@forfuture.co.ke>
*
* 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 L... | forfuturellc/naijav | www/templates/shell.html | HTML | gpl-2.0 | 2,380 |
PvP-Pay
=======
_Light Weight PvP Payment System_
PvP-Pay is a bukkit running on Vault designed for PvP servers that rewards players with cash for each kill.
Permissions
--------------
Permission | Description
------------- | -------------
pvppay.pay.1 | Allows a player to be rewarded with pay level 1
pvppay.pay.2 | ... | blobic123/PvP-Pay | README.md | Markdown | gpl-2.0 | 1,164 |
package Arboles;
/**
* Esta clase crea una lista y Nodos
*
* @author Christian A. Rodriguez
* @version 1.0
* @since 25octubre2015
*/
public class Funciones {
Mensajes mensajes = new Mensajes();
Nodo raiz;
int cantidad = 0;
int altura = 0;
Nodo izquierda, derecha;
public... | cristian0193/EstructuraDatos | EstructuraDatos1/src/Arboles/Funciones.java | Java | gpl-2.0 | 4,396 |
'use strict';
var config = require('./config')
function init(opts) {
Object.assign(config, opts)
}
module.exports = {
init: init,
routes: require('./routes'),
models: require('./models'),
entry: require('./entry'),
channel: require('./channel'),
user: require('./user'),
security: require('./security'... | dogada/coect-umedia | server/index.js | JavaScript | gpl-2.0 | 480 |
package com.github.acme.tests.transfer;
import java.io.IOException;
/**
* @author alex.dobjanschi
* @since 9:36 AM 10/24/14
*/
public interface FileTransfer {
void transferBetweenAAndB(FileSystem fileSystemA, FileSystem fileSystemB) throws IOException;
}
| djalexd/test-25 | file-transfer/src/main/java/com/github/acme/tests/transfer/FileTransfer.java | Java | gpl-2.0 | 266 |
define("ace/theme/yesterday",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
exports.isDark = false;
exports.cssClass = "ace-yesterday";
exports.cssText = ".ace-yesterday .ace_gutter {\
background: #fff;\
border-right: 1px solid #ddd;\
color: #999;\
font-size: 10pt\
}\
.ace-yes... | DHUers/rigidoj | lib/assets/javascripts/ace/theme-yesterday.js | JavaScript | gpl-2.0 | 3,006 |
//
// ProductDetailViewController.h
// Dafiti-ObjC
//
// Created by Jhonathan Wyterlin on 03/11/15.
// Copyright © 2015 Jhonathan Wyterlin. All rights reserved.
//
#import "GenericViewController.h"
// Model
#import "ProductModel.h"
@interface ProductDetailViewController : GenericViewController
@property(nonatom... | jwyterlin/Dafiti-App-ObjC | Dafiti-ObjC/Dafiti-ObjC/Controller/ProductDetailViewController.h | C | gpl-2.0 | 361 |
package clustering.results;
public class ResultadoMerge {
public int[][] merge;
public final int length;
public ResultadoMerge(int size) {
merge=new int[2][size];
length=size;
}
public int[] getId1(){
return merge[0];
}
public int[] getId2(){
return merge[1];
}
}
| LBAB-Humboldt/JavaHierarchicalClustering | HierarchicalClustering/src/clustering/results/ResultadoMerge.java | Java | gpl-2.0 | 281 |
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2014 Mathieu Trudel-Lapierre <mathieu.trudel-lapierre@canonical.com>
*
* Licensed under the GNU General Public License Version 2
*
* This program is free software; you can redistribute it and/or modify
* it under the terms... | lcp/urfkill | src/urf-ofono-manager.h | C | gpl-2.0 | 1,653 |
/* ErrAbort.h - our error handler.
*
* This maintains two stacks - a warning message printer
* stack, and a "abort handler" stack.
*
* By default the warnings will go to stderr, and
* aborts will exit the program. You can push a
* function on to the appropriate stack to change
* this behavior. The to... | avilella/variscan | src/errabort.h | C | gpl-2.0 | 2,044 |
<?php
/**
* Class FieldTypesService
*
* @package ModelFramework\FieldTypesService
* @author Vladimir Pasechnik vladimir.pasechnik@gmail.com
* @author Stanislav Burikhin stanislav.burikhin@gmail.com
*/
namespace ModelFramework\FieldTypesService;
use ModelFramework\ConfigService\ConfigAwareInterface;
use Model... | modelframework/modelframework | src/ModelFramework/FieldTypesService/FiledTypesService.php | PHP | gpl-2.0 | 2,494 |
#!/usr/bin/env bash
# This is a test
###CLEAR VARIABLES
DOWNLOAD_SET=""
DOWNLOADER=""
PKGMAN=""
TEST="0"
# !!!TEST copy this line wherever you need the script to stop in a test
if [ "$TEST" == "1" ] ; then return 0 ; fi
DOWNLOAD_SELECTION=""
UNKNOWN_OPT=""
###SET VARIABLES
DOWNLOAD_DATE="`date +%Y-%m`"
WORKINGDIR=$... | qbit/Lynx-Program-Downloader | lpd.sh | Shell | gpl-2.0 | 11,074 |
<?php
/**
* glFusion CMS
*
* UTF-8 Language File for Links Plugin
*
* @license GNU General Public License version 2 or later
* http://www.opensource.org/licenses/gpl-license.php
*
* Copyright (C) 2008-2018 by the following authors:
* Mark R. Evans mark AT glfusion DOT org
*
* Based on prior work Copyright (C)... | glFusion/glfusion | private/plugins/links/language/english_utf-8.php | PHP | gpl-2.0 | 11,040 |