repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
bozhbo12/demo-spring-server
spring-game/src/main/java/com/spring/game/game/protocal/relation/getRequest/GetAddRequestProcessor.java
1541
package com.snail.webgame.game.protocal.relation.getRequest; import org.epilot.ccf.config.Resource; import org.epilot.ccf.core.processor.ProtocolProcessor; import org.epilot.ccf.core.processor.Request; import org.epilot.ccf.core.processor.Response; import org.epilot.ccf.core.protocol.Message; import org.slf4j.Logger; ...
gpl-3.0
linagora/mupee
backend/rules/parameter-definition.js
292
'use strict'; var ParameterDef = function(object) { this.id = object.id; this.summary = object.summary; this.description = object.description; this.type = object.type; this.mandatory = object.mandatory; this.defaultValue = object.defaultValue; }; module.exports = ParameterDef;
gpl-3.0
Niky4000/UsefulUtils
projects/others/eclipse-platform-parent/eclipse.jdt.core-master/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/JavaElementRequestor.java
6654
/******************************************************************************* * Copyright (c) 2000, 2013 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at ...
gpl-3.0
VaysseB/id_generator
src/parser.py
15217
import string import ast from state_machine import PSM, Source class SpecialPattern: individual_chars = ('t', 'n', 'v', 'f', 'r', '0') range_chars = ('d', 'D', 'w', 'W', 's', 'S') special_chars = ('^', '$', '[', ']', '(', ')', '{', '}', '\\', '.', '*', '?', '+', '|', '.') rest...
gpl-3.0
mgood7123/UPM
Files/Code/perl/lib/site_perl/5.26.1/auto/share/dist/DateTime-Locale/xog.pl
4559
{ am_pm_abbreviated => [ "Munkyo", "Eigulo" ], available_formats => { E => "ccc", EHm => "E HH:mm", EHms => "E HH:mm:ss", Ed => "d, E", Ehm => "E h:mm a", Ehms => "E h:mm:ss a", Gy => "G y", GyMMM => "G y MMM", GyMMMEd => "G y MMM d, E", GyMMMd => "G y MMM d", H...
gpl-3.0
egovernments/eGov-Search
src/test/java/org/egov/search/service/SimpleFieldsResourceGeneratorTest.java
3937
/* * eGov suite of products aim to improve the internal efficiency,transparency, * accountability and the service delivery of the government organizations. * * Copyright (C) <2015> eGovernments Foundation * * The updated version of eGov suite of products as by eGovernments Foundation * is availa...
gpl-3.0
ilovefox8/zhcrm
client/src/views/email/fields/from-email-address.js
261
Fox.define('views/email/fields/from-email-address', 'views/fields/link', function (Dep) { return Dep.extend({ listTemplate: 'email/fields/from-email-address/detail', detailTemplate: 'email/fields/from-email-address/detail', }); });
gpl-3.0
modemm3/fic
fic-inventory/fic-inventory-business/src/main/java/com/mx/fic/inventory/business/builder/UserDetailBuilder.java
1223
package com.mx.fic.inventory.business.builder; import com.mx.fic.inventory.business.builder.config.AbstractDTOBuilder; import com.mx.fic.inventory.business.builder.config.BuilderConfiguration; import com.mx.fic.inventory.dto.BaseDTO; import com.mx.fic.inventory.dto.UserDetailDTO; import com.mx.fic.inventory.persistent...
gpl-3.0
elkonurbaev/nine-e
src/utils/Bounds.js
219
export function Bounds(width, height) { this.width = width; this.height = height; } Bounds.prototype.equals = function(o) { return ((o != null) && (this.width == o.width) && (this.height == o.height)); };
gpl-3.0
angeloprudentino/QtNets
Doc/qtsql/qsqlquerymodel-members.html
26906
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qsqlquerymodel.cpp --> <title>List of All Members for QSqlQueryModel | Qt SQL 5.7</title> <link rel="stylesheet" type="text/css" href="style/offline-simple.css"...
gpl-3.0
NGO-DB/ndb-core
src/app/child-dev-project/attendance/model/event-attendance.ts
934
import { ATTENDANCE_STATUS_CONFIG_ID, AttendanceStatusType, NullAttendanceStatusType, } from "./attendance-status"; import { DatabaseField } from "../../../core/entity/database-field.decorator"; /** * Simple relationship object to represent an individual child's status at an event including context information....
gpl-3.0
staskobzar/amiws
web_root_vue/src/main.js
826
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue'; import BootstrapVue from 'bootstrap-vue'; import 'bootstrap-vue/dist/bootstrap-vue.css'; import 'bootstrap/dist/css/bootstrap.css'; import { mapActions } fr...
gpl-3.0
RossGammon/the-gammons.net
RossFamilyTree/srn/f/3/95b01a5fdd342ebb10992a51c878ec3f.html
3143
<!DOCTYPE html> <html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head lang="en-GB"> <title>Ross Gammon’s Family Tree - Surname - RAINSFORD</title> <meta charset="UTF-8" /> <meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" /> <meta na...
gpl-3.0
battis/data-utilities
doc/reports/deprecated.html
7685
<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/> <meta charset="utf-8"/> <title> &raquo; Deprecated elements </title> <meta name="author" content=""/> <meta name="description" content=""/> <li...
gpl-3.0
matgla/AquaLampWiFiModule
test/UT/src/stub/timeStub.cpp
464
#include "hal/time/time.hpp" namespace hal { namespace time { static u64 currentTime = 0; u64 milliseconds() { return currentTime; } } // namespace time } // namespace hal namespace stub { namespace time { void setCurrentTime(u64 milliseconds) { hal::time::currentTime = millise...
gpl-3.0
ouyangyu/fdmoodle
backup/cc/cc_lib/cc_version1.php
21798
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle 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 version. // //...
gpl-3.0
inazense/java-generate-bills
src/main/java/com/programandoapasitos/facturador/gui/MenuPrincipal.java
3783
package com.programandoapasitos.facturador.gui; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JMenuBar; import javax.swing.JMenu; import javax.swing.JMenuItem; import javax.swing.JLabel; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; import com.progra...
gpl-3.0
DrPantera/gsiege
docs/rule-sweeppawn.md
1701
# Sweep with the pawns This rule will have all pawns sweep the board, trying to defeat as many pieces as possible. We will assume we have all pawns in the front row. The idea is to have them all stay in a row: first, they will all advance to row 2, then to row 3, and so on, without breaking formation. ``` (defrule E...
gpl-3.0
skmezanul/disk42
server/gc/gc-core.c
13299
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ #include "common.h" #include "seafile-session.h" #include "bloom-filter.h" #include "gc-core.h" #include "utils.h" #define DEBUG_FLAG SEAFILE_DEBUG_OTHER #include "log.h" #define MAX_BF_SIZE (((size_t)1) << 29) /* 64 MB */ /* Total num...
gpl-3.0
Tedlar/Mission-Impossible
doxygen/latex/_factory_controller_8cpp.tex
425
\hypertarget{_factory_controller_8cpp}{\section{src/interfaces/\+Factory\+Controller.cpp File Reference} \label{_factory_controller_8cpp}\index{src/interfaces/\+Factory\+Controller.\+cpp@{src/interfaces/\+Factory\+Controller.\+cpp}} } {\ttfamily \#include \char`\"{}I\+Controller.\+h\char`\"{}}\\* {\ttfamily \#include $...
gpl-3.0
ivandiazwm/opensupports
server/controllers/staff/search-tickets.php
2810
<?php use Respect\Validation\Validator as DataValidator; /** * @api {post} /staff/search-tickets Search tickets * @apiVersion 4.5.0 * * @apiName Search tickets * * @apiGroup Staff * * @apiDescription This path search some tickets. * * @apiPermission staff1 * * @apiParam {String} query Query string to searc...
gpl-3.0
jpenalbae/radare2
libr/io/cache.c
2674
/* radare - LGPL - Copyright 2008-2014 - pancake */ // TODO: implement a more inteligent way to store cached memory // TODO: define limit of max mem to cache #include "r_io.h" static void cache_item_free(RIOCache *cache) { if (!cache) return; if (cache->data) free (cache->data); free (cache); } R_API void r_...
gpl-3.0
Lumeer/web-ui
src/app/view/perspectives/dashboard/search-all/search-all.module.ts
1450
/* * Lumeer: Modern Data Definition and Processing Platform * * Copyright (C) since 2017 Lumeer.io, s.r.o. and/or its affiliates. * * 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 ...
gpl-3.0
mecwerks/spearmint-ios
code/botlib/l_precomp.h
6785
/* =========================================================================== Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company. This file is part of Spearmint Source Code. Spearmint Source Code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licens...
gpl-3.0
DomNomNom/anisotropic
tweaker.h
179
// you can call this function to create a window to tweak a float value // if it is called multiple times, it will add more tweakable bars to that window void tweak(float *var);
gpl-3.0
acetcom/cellwire
lib/asn1c/common/NULL.h
1102
/*- * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>. All rights reserved. * Redistribution and modifications are permitted subject to BSD license. */ #ifndef ASN_TYPE_NULL_H #define ASN_TYPE_NULL_H #include <asn_application.h> #ifdef __cplusplus extern "C" { #endif /* * The value of the NULL type is meani...
gpl-3.0
drbizzaro/diggime
base/main/src/com/diggime/modules/email/model/impl/PostmarkEMail.java
5687
package com.diggime.modules.email.model.impl; import com.diggime.modules.email.model.EMail; import com.diggime.modules.email.model.MailContact; import org.json.JSONObject; import java.time.LocalDateTime; import java.util.List; import static org.foilage.utils.checkers.NullChecker.notNull; public class PostmarkEMail ...
gpl-3.0
blackleg/libdam
src/main/java/es/blackleg/libdam/geometry/Circulo.java
2177
/* * Copyright (C) 2014 Hector Espert Pardo * * 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 3 of the License, or * (at your option) any later version. * * This program i...
gpl-3.0
jlorente/social-abstract-client
config/config.php
450
<?php return [ 'facebook' => [ 'appId' => '', //application api id for facebook 'appSecret' => '', //application api secret for facebook 'scope' => 'email, user_birthday, publish_actions' //facebook scopes ], 'twitter' => [ 'appId' => '', //twitter application consumer key ...
gpl-3.0
cerberustesting/cerberus-source
source/src/main/java/org/cerberus/service/groovy/impl/GroovyService.java
3363
/** * Cerberus Copyright (C) 2013 - 2017 cerberustesting * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This file is part of Cerberus. * * Cerberus 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 Softw...
gpl-3.0
andreasbalzer/MicropolisForWindows
Micropolis.W10/ViewModels/EvaluationPaneViewModel.cs
24009
using System; using System.Collections.Generic; using System.Text; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Engine; using Micropolis.Common; using Microsoft.ApplicationInsights; namespace Micropolis.ViewModels { public class EvaluationPaneViewModel : BindableBase, Engine.IListener { p...
gpl-3.0
abracce/theme-abracce.org.br
app/class/custom-posts.php
2596
<?php /** * KR_Custom_Posts */ class KR_Custom_Posts extends Odin_Post_Type { private $_labels = array(); private $_arguments = array(); private $_dashicon = 'dashicons-'; private $_supports = array( 'title', 'editor', 'thumbnail' ); private $_slug; private $_singular; private $_plural; private $_rewr...
gpl-3.0
acastellon/smtcc
sites/default/files/php/twig/42a2597a_block--system-branding-block.html.twig_c69e55da788ed29c4c90e83e1c7f08c4006237988dbbe9f913bdfe4f6f661444/498169c485adefe3bb313999225832f5bbdd2ab6ac9b397903eae1c54b5b0ab3.php
5470
<?php /* core/modules/system/templates/block--system-branding-block.html.twig */ class __TwigTemplate_f1b301a70237e4e176f4b41c2721030700b3dd2e5c3f618f2513416e3a699971 extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); // line 1 $this...
gpl-3.0
Lunat1q/Catchem-PoGo
Source/PoGo.PokeMobBot.Logic/StatisticsAggregator.cs
7499
#region using directives using System; using PoGo.PokeMobBot.Logic.Event; using PoGo.PokeMobBot.Logic.Event.Egg; using PoGo.PokeMobBot.Logic.Event.Fort; using PoGo.PokeMobBot.Logic.Event.Global; using PoGo.PokeMobBot.Logic.Event.GUI; using PoGo.PokeMobBot.Logic.Event.Item; using PoGo.PokeMobBot.Logic.Event.Logic; usi...
gpl-3.0
RobinHood70/HoodBot
WallE/Base/Outputs/AllCategoriesItem.cs
839
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member (no intention to document this file) namespace RobinHood70.WallE.Base { public class AllCategoriesItem { #region Constructors internal AllCategoriesItem(string category, int files, bool hidden, int pages, int size, int subc...
gpl-3.0
ajylee/gpaw-rtxs
c/libxc/src/libxc_funcs.f90
6568
module libxc_funcs_m implicit none public integer, parameter :: XC_LDA_X = 1 ! Exchange integer, parameter :: XC_LDA_C_WIGNER = 2 ! Wigner parametrization integer, parameter :: XC_LDA_C_RPA = 3 ! Random Phase Approximation integer, parame...
gpl-3.0
devmessias/brasillivre
README.md
2273
# brasillivre ![alt text](readme.png "") Segundo o [Ministério do Trabalho](http://www.mtps.gov.br/fiscalizacao-combate-trabalho-escravo) >Considera-se trabalho realizado em condição análoga à de escravo a que resulte das seguintes situações, quer em conjunto, quer isoladamente: a submissão de trabalhador a trabalh...
gpl-3.0
chfoo/warcat
warcat/__init__.py
130
'''WARCAT: Web ARChive (WARC) Archiving Tool Tool and library for handling Web ARChive (WARC) files. ''' from .version import *
gpl-3.0
williamfdevine/PrettyLinux
include/uapi/linux/target_core_user.h
3382
#ifndef __TARGET_CORE_USER_H #define __TARGET_CORE_USER_H /* This header will be used by application too */ #include <linux/types.h> #include <linux/uio.h> #define TCMU_VERSION "2.0" /* * Ring Design * ----------- * * The mmaped area is divided into three parts: * 1) The mailbox (struct tcmu_mailbox, below) *...
gpl-3.0
BrickCat/symphony
src/main/java/org/b3log/symphony/processor/IndexProcessor.java
21728
/* * Symphony - A modern community (forum/SNS/blog) platform written in Java. * Copyright (C) 2012-2017, b3log.org & hacpai.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 ve...
gpl-3.0
colinodell/mcforge
Commands/CmdMap.cs
9301
/* Copyright 2011 MCForge Dual-licensed under the Educational Community License, Version 2.0 and the GNU General Public License, Version 3 (the "Licenses"); you may not use this file except in compliance with the Licenses. You may obtain a copy of the Licenses at http://www.osedu.org/licenses/ECL-2.0 http:/...
gpl-3.0
rogeraaut/rogeraaut.github.io
lang.ruby.d/tests/fizzbuzz_test.rb
688
require 'test/unit' class FizzbuzzTest < Test::Unit::TestCase # Called before every test method runs. Can be used # to set up fixture information. def setup # Do nothing end # Called after every test method runs. Can be used to tear # down fixture information. def teardown # Do nothing end ...
gpl-3.0
andlaus/opm-common
tests/parser/integration/IncludeTest.cpp
5738
/* Copyright 2013 Statoil ASA. This file is part of the Open Porous Media project (OPM). OPM 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 v...
gpl-3.0
ZeroOne71/ql
02_ECCentral/02_Portal/UI/ECCentral.Portal.UI.MKT/NeweggCN/Models/AmbassadorNewsVM.cs
1650
using System; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Ink; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using Newegg.Oversea.Silverlight.ControlPanel.Core.Ba...
gpl-3.0
Csluikidikilest/Bm2sServer
Bm2s.Data.Utils/Datas.cs
2584
using ServiceStack.OrmLite; using System; using System.Configuration; using System.Data; namespace Bm2s.Data.Utils { /// <summary> /// Data access point /// </summary> public class Datas { /// <summary> /// Database provider /// </summary> private IOrmLiteDialectProvider _dbProvider; //...
gpl-3.0
caimmy/prehistory
static/js/js_modules/archjs_tools.js
154
/** * Created by caimiao on 15-6-14. */ define(function(require, exports, module) { exports.hello= function (echo) { alert(echo); }; })
gpl-3.0
lancillot72/JSCE
com_sciclubpadova/site/models/sciclubpadova.php
2647
<?php /** * @package Joomla.Administrator * @subpackage com_sciclubpadova * * @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // No direct access to this file defined('_JEXEC') or...
gpl-3.0
boy404/hu60wap6
src/tpl/classic/css/default.css
6783
body { word-wrap: break-word; word-break: break-all; padding: 2px 5px; background-color: #FFFFFF; color: #000000; max-width: 1024px; margin: 0px auto; box-shadow: 0 0 15px #ccc; tab-size: 4; -moz-tab-size: 4; -o-tab-size: 4; -webkit-tab-size: 4; } p, div { overflow: hidden; } p...
gpl-3.0
Aiwings/FNMNS_Formations
assets/PHPExcel/Classes/PHPExcel/Reader/SYLK.php
12367
<?php /** PHPExcel root directory */ if (!defined('PHPEXCEL_ROOT')) { /** * @ignore */ define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../'); require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php'); } /** * PHPExcel_Reader_SYLK * * Copyright (c) 2006 - 2015 PHPExcel * * This library is free software; you can redistribute i...
gpl-3.0
jopohl/urh
src/urh/controller/dialogs/FuzzingDialog.py
15833
import math from PyQt5.QtCore import Qt, pyqtSlot from PyQt5.QtGui import QCloseEvent from PyQt5.QtWidgets import QDialog, QInputDialog from urh import settings from urh.models.FuzzingTableModel import FuzzingTableModel from urh.signalprocessing.ProtocoLabel import ProtocolLabel from urh.signalprocessing.ProtocolAnal...
gpl-3.0
jeremiah-c-leary/vhdl-style-guide
vsg/tests/iteration_scheme/test_rule_300.py
1279
import os import unittest from vsg.rules import iteration_scheme from vsg import vhdlFile from vsg.tests import utils sTestDir = os.path.dirname(__file__) lFile, eError =vhdlFile.utils.read_vhdlfile(os.path.join(sTestDir,'rule_300_test_input.vhd')) dIndentMap = utils.read_indent_file() lExpected = [] lExpected.ap...
gpl-3.0
maddes/madcart
catalog/controller/checkout/register.php
9487
<?php class ControllerCheckoutRegister extends Controller { public function index() { $this->language->load('checkout/checkout'); $this->data['text_checkout_payment_address'] = __('text_checkout_payment_address'); $this->data['text_your_details'] = __('text_your_details'); $this->data['text_your_addre...
gpl-3.0
ferdv/claws
src/procheader.c
28320
/* * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client * Copyright (C) 1999-2014 Hiroyuki Yamamoto and the Claws Mail team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; eit...
gpl-3.0
Alberto-Beralix/Beralix
i386-squashfs-root/usr/src/linux-headers-3.0.0-12-generic/include/linux/ide.h
51
../../../linux-headers-3.0.0-12/include/linux/ide.h
gpl-3.0
telinc1/Telicraft
telicraft_common/telinc/telicraft/util/PetrifyDamageSource.java
1253
package telinc.telicraft.util; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.util.ChatMessageComponent; import net.minecraft.util.StatCollector; public class PetrifyDamageSource extends TelicraftDamageSource { protected EntityLivingBase entity; protect...
gpl-3.0
jmmnn/linksSDGs
solr-5.4.0/docs/solr-core/org/apache/solr/update/processor/class-use/ParseBooleanFieldUpdateProcessorFactory.html
5185
<!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_45) on Fri Dec 04 23:17:14 GMT 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.a...
gpl-3.0
Duffney/IAC-DSC
Hyper-V/Provision-VirtualRouter.ps1
435
$Name = 'VyOS' $SwitchName = 'Internal' $HardDiskSize = 2GB $HDPath = 'E:\Hyper-V\Virtual Hard Disks'+'\'+$Name+'.vhdx' $Generation = '1' $ISO_Path = 'D:\ISOs\vyos-1.1.6-amd64.iso' New-VM -Name $Name -SwitchName $SwitchName ` -NewVHDSizeBytes $HardDiskSize ` -NewVHDPath $HDPath -Generation $Generation -MemoryStartupB...
gpl-3.0
vijaysebastian/bill
vendor/darryldecode/cart/src/Darryldecode/Cart/CartConditionCollection.php
210
<?php namespace Darryldecode\Cart; /** * Created by PhpStorm. * User: darryl * Date: 1/15/2015 * Time: 9:46 PM */ use Illuminate\Support\Collection; class CartConditionCollection extends Collection { }
gpl-3.0
katsikas/gnuradio
build/docs/doxygen/html/volk__32fc__x2__square__dist__32f__a_8h_source.html
10631
<!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"/> <title>GNU Radio 7f75d35b ...
gpl-3.0
dozzatq/Phoenix
mylibrary/src/main/java/com/github/dozzatq/phoenix/advertising/Reflector.java
173
package com.github.dozzatq.phoenix.advertising; /** * Created by Rodion Bartoshik on 04.07.2017. */ interface Reflector { FactoryAd reflection(); int state(); }
gpl-3.0
aleatorio12/ProVentasConnector
jasperreports-6.2.1-project/jasperreports-6.2.1/src/net/sf/jasperreports/web/commands/CommandException.java
1750
/* * JasperReports - Free Java Reporting Library. * Copyright (C) 2001 - 2014 TIBCO Software Inc. All rights reserved. * http://www.jaspersoft.com * * Unless you have purchased a commercial license agreement from Jaspersoft, * the following license terms apply: * * This program is part of JasperReports. * * J...
gpl-3.0
rbtcollins/lmirror
l_mirror/tests/test_logging_support.py
2180
# # LMirror is Copyright (C) 2010 Robert Collins <robertc@robertcollins.net> # # LMirror 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...
gpl-3.0
PlamenHP/Softuni
OOP Advanced/Reflection - Exercise/BarracksWars/Contracts/IRunnable.cs
106
namespace _03BarracksWars.Contracts { public interface IRunnable { void Run(); } }
gpl-3.0
jsolarz/angular-base
TodoListApi/Startup.cs
1323
using Microsoft.Owin; using Microsoft.Owin.Security.OAuth; using Owin; using System; using System.Web.Http; using TodoList.Api.Infrastructure.Authentication; [assembly: OwinStartup(typeof(TodoList.Api.Startup))] namespace TodoList.Api { public class Startup { public void Configuration(IAppBuilder app)...
gpl-3.0
mhameed/LaTeXLex
utf8Test/replacement-test.tex
148
\alpha \beta \gamma \delta \epsilon \zeta \eta \theta \iota \kappa \lambda \mu \nu \xi \omicron \pi \rho \sigma \tau \upsilon \phi \chi \psi \omega
gpl-3.0
buzz/claws
src/prefs_folder_item.c
71677
/* * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client * Copyright (C) 1999-2015 Hiroyuki Yamamoto and the Claws Mail team * * 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; e...
gpl-3.0
mgood7123/UPM
Tests/PACKAGES/hexchat-2.12.4-6-x86_64/usr/share/doc/fontconfig/fontconfig-devel/fcatomiccreate.html
2691
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE >FcAtomicCreate</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK REL="HOME" HREF="index.html"><LINK REL="UP" TITLE="FcAtomic" HREF="x102.html#AEN3766"><L...
gpl-3.0
LaurentClaessens/LaTeXparser
Occurrence.py
7331
# -*- coding: utf8 -*- ########################################################################### # This is the package latexparser # # 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...
gpl-3.0
mmanto/sstuv
secur/templates/menu.html
669
<div> <nav> <ul id="menu"> {% for m in menu %} <li> {% if m.subsistemas %} {{ m.nombreDireccion }} <ul> {% for submenu in m.subsistemas %} <li> <a href="{{submenu.target}}">{{ submenu.nombreSistema }}</a> </li> {% e...
gpl-3.0
motteler/cris_telecon
ccast_noaa1/crisdefs.tex
1764
% acronyms for text or math mode \newcommand {\ccast} {\mbox{\small CCAST}} \newcommand {\cris} {\mbox{\small CrIS}} \newcommand {\airs} {\mbox{\small AIRS}} \newcommand {\iasi} {\mbox{\small IASI}} \newcommand {\idps} {\mbox{\small IDPS}} \newcommand {\nasa} {\mbox{\small NASA}} \newcommand {\noaa} {\mbox{\small NOA...
gpl-3.0
datakid/dj-library
locale.sh
294
#!/bin/bash APP_DIR=`pwd`/books/ LOCALE_DIR=$APP_DIR/locale/ echo $APP_DIR pushd $APP_DIR echo `pwd` for lang in `ls $LOCALE_DIR`; do echo "Setting up locale for $lang" django-admin.py makemessages -l $lang done echo "*************************" django-admin.py compilemessages popd
gpl-3.0
jacquet33/miERP
FrontEnd/MixERP.Net.FrontEnd/Modules/Sales.Data/Transactions/Delivery.cs
2573
/******************************************************************************** Copyright (C) Binod Nepal, Mix Open Foundation (http://mixof.org). This file is part of MixERP. MixERP is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Fre...
gpl-3.0
kunagpal/recommend-fm
config/initializers/session_store.rb
133
# Be sure to restart your server when you modify this file. Rails.application.config.session_store :cookie_store, key: '_FM_session'
gpl-3.0
RaviVengatesh/Guvi_codes
Pali.java
449
import java.util.*; public class Pali { public static void main(String args[]) { Scanner sc=new Scanner(System.in); String str=sc.next(); StringBuffer buff=new StringBuffer(str).reverse(); String str1=buff.toString(); if(str.isequals(str1)) { System.out.p...
gpl-3.0
jschanck-si/NTRUEncrypt
src/ntru_crypto_hash.c
10074
/****************************************************************************** * NTRU Cryptography Reference Source Code * Copyright (c) 2009-2013, by Security Innovation, Inc. All rights reserved. * * ntru_crypto_hash.c is a component of ntru-crypto. * * Copyright (C) 2009-2013 Security Innovation * * This...
gpl-3.0
mholtrop/Phys605
Python/DevLib/MCP320x.py
11971
#!/usr/bin/env python # # MCP320x # # Author: Maurik Holtrop # # This module interfaces with the MCP300x or MCP320x family of chips. These # are 10-bit and 12-bit ADCs respectively. The x number indicates the number # of multiplexed analog inputs: 2 (MCP3202), 4 (MCP3204) or 8 (MCP3208) # Communications with this chi...
gpl-3.0
ferenc-jdev/no-babylon
src/main/java/org/laatusys/nobabylon/support/ExcludeRegexpFilter.java
1328
/* No-Babylon a job search engine with filtering ability Copyright (C) 2012-2014 ferenc.jdev@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 3 of the Lic...
gpl-3.0
codendev/rapidwsgi
src/mako/__init__.py
256
# __init__.py # Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com # # This module is part of Mako and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php __version__ = '0.3.4'
gpl-3.0
fjruizruano/ngs-protocols
divsum_analysis.py
974
#!/usr/bin/python import sys print "divsum_analysis.py DivsumFile NumberOfNucleotides" try: file = sys.argv[1] except: file = raw_input("Introduce RepeatMasker's Divsum file: ") try: nucs = sys.argv[2] except: nucs = raw_input("Introduce number of analysed nucleotides: ") nucs = int(nucs) data = o...
gpl-3.0
ProfessorXZ/TShock
TShockAPI/Commands.cs
183890
/* TShock, a server mod for Terraria Copyright (C) 2011-2018 Pryaxis & TShock Contributors 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 3 of the License, or (at your option) any la...
gpl-3.0
wizjany/craftbook
src/main/java/com/sk89q/craftbook/cart/CartDeposit.java
7011
package com.sk89q.craftbook.cart; import java.util.ArrayList; import java.util.Arrays; import org.bukkit.block.Chest; import org.bukkit.block.Sign; import org.bukkit.entity.Minecart; import org.bukkit.entity.StorageMinecart; import org.bukkit.inventory.Inventory; import org.bukkit.inventory.ItemStack; im...
gpl-3.0
sumitnegi933/GWL_MOODLE
blocks/course_overview/lang/en/block_course_overview.php
3501
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle 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 version. // // Moodle ...
gpl-3.0
noqisofon/coreHezelnut
include/coreHezelnut/classes/CHNOrderedCollection.h
1127
// // CHNOrderedCollection.h // // Auther: // ned rihine <ned.rihine@gmail.com> // // Copyright (c) 2012 rihine All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software F...
gpl-3.0
aroramanish63/bulmail_app
Live Backup/databagg 30 jan backup/user/ajax_load_list_11_7.php
1421
<?php session_start(); include("../connect.php"); include("../function.php"); //session_start(); if($_REQUEST['cat_id']) { $data=""; $count=0; $select_list_data="select * from users_data where int_fid in(".$_REQUEST['cat_id'].") and int_del_status='0'"; $result_list_dat...
gpl-3.0
rvega/morphasynth
vendors/pd-extended-0.43.4/externals/Gem/src/openGL/GEMglTexCoord3s.cpp
2880
//////////////////////////////////////////////////////// // // GEM - Graphics Environment for Multimedia // // Implementation file // // Copyright (c) 2002-2011 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at // zmoelnig@iem.kug.ac.at // For information on usage and redistribution, and for a DISCLAIMER /...
gpl-3.0
crisis-economics/CRISIS
CRISIS/src/eu/crisis_economics/abm/markets/nonclearing/InterbankNetwork.java
4215
/* * This file is part of CRISIS, an economics simulator. * * Copyright (C) 2015 Victor Spirin * * CRISIS 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 * (...
gpl-3.0
pkukulak/courseography
hs/Response/Export.hs
1487
{-# LANGUAGE OverloadedStrings #-} module Response.Export (pdfResponse) where import Happstack.Server import qualified Data.ByteString.Lazy as BS import Control.Monad.IO.Class (liftIO) import qualified Data.ByteString.Base64.Lazy as BEnc import ImageConversion import TimetableImageCreator (renderTable) import Sy...
gpl-3.0
Wolframe/wolfzilla
phpclient/config.php
425
<?php # server running the wolframe daemon $WOLFRAME_SERVER = "localhost"; # wolframe daemon port $WOLFRAME_PORT = 7962; # for SSL secured communication, a file with combined client certificate # and client key $WOLFRAME_COMBINED_CERTS = "certs/combinedcert.pem"; # which user agents should use client XSLT $BROWSER...
gpl-3.0
pdewan/Comp401LocalChecks
src/gradingTools/comp401f16/assignment11/testcases/package-info.java
95
/** * */ /** * @author dewan * */ package gradingTools.comp401f16.assignment11.testcases;
gpl-3.0
alsotoes/MCS_programmingLanguages
go/slides/code/imports.go
152
package main import ( "fmt" "math/rand" ) func main() { fmt.Println(rand.Int()) fmt.Println(rand.Float64()) }
gpl-3.0
AnubisSet/LetsModReboot
src/main/java/mcid/anubisset/letsmodreboot/block/BlockFlag.java
327
package mcid.anubisset.letsmodreboot.block; import mcid.anubisset.letsmodreboot.creativetab.CreativeTabLMRB; /** * Created by Luke on 30/08/2014. */ public class BlockFlag extends BlockLMRB { public BlockFlag() { super(); this.setBlockName("flag"); this.setBlockTextureName("flag"); ...
gpl-3.0
richard-fisher/chromebrew
packages/libxau.rb
466
require 'package' class Libxau < Package description 'xau library for libX11' homepage 'https://x.org' version '1.0.8' source_url 'https://www.x.org/archive/individual/lib/libXau-1.0.8.tar.gz' source_sha256 'c343b4ef66d66a6b3e0e27aa46b37ad5cab0f11a5c565eafb4a1c7590bc71d7b' depends_on 'xproto' def s...
gpl-3.0
anoidgit/padavan
trunk/user/openvpn/openvpn-2.4.x/tests/unit_tests/openvpn/test_argv.c
4359
#include "config.h" #include "syshead.h" #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <stdarg.h> #include <string.h> #include <setjmp.h> #include <cmocka.h> #include <assert.h> #include "argv.h" #include "buffer.h" /* Defines for use in the tests and the mock parse_line() */ #define PATH1 ...
gpl-3.0
solvespace/solvespace
.github/scripts/install-macos.sh
701
#!/bin/sh -xe if [ "$1" = "ci" ]; then armloc=$(brew fetch --bottle-tag=arm64_big_sur libomp | grep -i downloaded | grep tar.gz | cut -f2 -d:) x64loc=$(brew fetch --bottle-tag=big_sur libomp | grep -i downloaded | grep tar.gz | cut -f2 -d:) cp $armloc /tmp/libomp-arm64.tar.gz mkdir /tmp/libomp-arm64 ||...
gpl-3.0
rchicoli/samba
source3/lib/netapi/localgroup.c
36680
/* * Unix SMB/CIFS implementation. * NetApi LocalGroup Support * Copyright (C) Guenther Deschner 2008 * * 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 3 of the Licen...
gpl-3.0
huzheng001/stardict-3
dict/src/pluginmanagedlg.cpp
20060
/* * Copyright 2011 kubtek <kubtek@mail.com> * * This file is part of StarDict. * * StarDict 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 l...
gpl-3.0
ouyangyu/fdmoodle
lib/phpmailer/changelog.md
22998
# ChangeLog ## Version 5.2.7 (September 12th 2013) * Add Ukranian translation from @Krezalis * Support for do_verp * Fix bug in CRAM-MD5 AUTH * Propagate Debugoutput option to SMTP class (@Reblutus) * Determine MIME type of attachments automatically * Add cross-platform, multibyte-safe pathinfo replacement (wi...
gpl-3.0
FEniCS/mshr
3rdparty/CGAL/include/CGAL/license.h
1205
// Copyright (c) 2016 GeometryFactory Sarl (France) // // This file is part of CGAL (www.cgal.org); 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 3 of the License, // or (at your option) any later ver...
gpl-3.0
chriskmanx/qmole
QMOLEDEV/xfe-1.34/src/FontDialog.h
3664
#ifndef FONTDIALOG_H #define FONTDIALOG_H #include "DialogBox.h" class FontSelector; // Font selection widget class FXAPI FontSelector : public FXPacker { FXDECLARE(FontSelector) protected: FXTextField *family; FXList *familylist; FXTextField *weight; FXList *weightlist; FXT...
gpl-3.0
Riverscapes/pyBRAT
docs/BRAT Help/known-bugs.md
3405
--- title: Reporting Bugs & Getting Help weight: 10 --- BRAT is under constant development and we are eager to resolve all known issues. However, please search [existing posts](https://github.com/Riverscapes/pyBRAT/issues) first and our help pages before [posting an issue](#Posting an Issue). # Questions or Help You...
gpl-3.0