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 |
|---|---|---|---|---|---|
package wad.config;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springfra... | eerolahdenpera/rltournament | src/main/java/wad/config/DefaultSecurityConfiguration.java | Java | gpl-3.0 | 6,931 |
package com.idega.block.finance.data;
public class AccountEntryHomeImpl extends com.idega.data.IDOFactory implements AccountEntryHome
{
protected Class getEntityInterfaceClass(){
return AccountEntry.class;
}
public AccountEntry create() throws javax.ejb.CreateException{
return (AccountEntry) super.createI... | idega/com.idega.block.finance | src/java/com/idega/block/finance/data/AccountEntryHomeImpl.java | Java | gpl-3.0 | 4,957 |
/*
Copyright (C) 2017-2022 Topological Manifold
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 is distributed in... | cppd/math | src/vulkan/surface.cpp | C++ | gpl-3.0 | 3,445 |
/*
* Copyright 2007 Sun Microsystems, Inc. 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 copyright
* notice, this list o... | andrewtikhonov/RCloud | rcloud-commons/src/main/java/uk/ac/ebi/rcloud/common/animation/transitions/Effect.java | Java | gpl-3.0 | 14,679 |
jsondtd
=======
JSON DTD allows you to validate JSON and NoSQL documents for a given structure and type.
| royallcompany/jsondtd | README.md | Markdown | gpl-3.0 | 106 |
-- Copyright (C) 2015 Tomoyuki Fujimori <moyu@dromozoa.com>
--
-- This file is part of dromozoa-commons.
--
-- dromozoa-commons 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... | ld-test/dromozoa-commons | dromozoa/commons/string_reader.lua | Lua | gpl-3.0 | 3,751 |
๏ปฟusing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
namespace MilkShakeFramework.Tools.Maths
{
public class RotatedRectangle
{
public Rectangle CollisionRectangle;
public float Rotation;
public Vector2 Origin;
pu... | lucas-jones/MilkShake-old | MilkShake/Tools/Maths/RotatedRectangle.cs | C# | gpl-3.0 | 9,486 |
<?php
/***************************************************************************\
* SPIP, Systeme de publication pour l'internet *
* *
* Copyright (c) 2001-2011 *
* ... | denisbz/SPIP | ecrire/inc/documents.php | PHP | gpl-3.0 | 6,683 |
<html>
<head>
<title>Docs for page Exception.php</title>
<link rel="stylesheet" type="text/css" href="../media/style.css">
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%">
<tr>
<td class="header_to... | Benni225/marvel | doc/Marvel/_core---Exception.php.html | HTML | gpl-3.0 | 5,644 |
/**
* Genji Scrum Tool and Issue Tracker
* Copyright (C) 2015 Steinbeis GmbH & Co. KG Task Management Solutions
* <a href="http://www.trackplus.com">Genji Scrum Tool</a>
*
* 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... | trackplus/Genji | src/main/java/com/aurel/track/fieldType/runtime/renderer/SelectRendererRT.java | Java | gpl-3.0 | 3,242 |
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance w... | sailfish-sdk/sailfish-qtcreator | src/plugins/qmldesigner/components/formeditor/toolbox.cpp | C++ | gpl-3.0 | 3,167 |
<?php
namespace TYPO3\Flow\Tests\Unit\Security\Authentication\Token;
/*
* This file is part of the TYPO3.Flow package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distribu... | MoritzVonWirth/Project-Eagle | Packages/Framework/TYPO3.Flow/Tests/Unit/Security/Authentication/Token/UsernamePasswordTest.php | PHP | gpl-3.0 | 5,867 |
/*
* Copyright 2011-2021 Fraunhofer ISE
*
* This file is part of OpenMUC.
* For more information visit http://www.openmuc.org
*
* OpenMUC 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 ... | isc-konstanz/OpenMUC | projects/lib/mqtt/src/main/java/org/openmuc/framework/lib/mqtt/MqttReader.java | Java | gpl-3.0 | 6,129 |
"""
WSGI config for mng_files project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/
"""
import os
import sys
path = os.path.abspath(__file__+'/../..')
if path not in sys.path:
sys.... | idjung96/mng_files | mng_files/wsgi.py | Python | gpl-3.0 | 498 |
package com.bluepowermod.network;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.network.NetworkRegistry;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
public abstract class LocatedPacketDouble<T extends LocatedPacket... | MoreThanHidden/BluePower | src/main/java/com/bluepowermod/network/LocatedPacketDouble.java | Java | gpl-3.0 | 1,346 |
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<link rel="canonical" href="https://www.rakuten.ne.jp/gold/shopjapan/cp/outlet/pc_b.html" />
<title>MAX60%OFF๏ผ๏ฝใทใงใใใธใฃใใณๆฅฝๅคฉๅธๅ ดๅบ</title>
... | tohshige/test | used12_1801_bak/sp.html | HTML | gpl-3.0 | 22,835 |
<?php include ($_SERVER["DOCUMENT_ROOT"]."/backend/blocks/metatags.php");
include ($_SERVER["DOCUMENT_ROOT"]."/src/common.blocks/navigation-mobile/navigation-mobile.html");
include($_SERVER["DOCUMENT_ROOT"] . "/src/common.blocks/header/top-header.php");
include ($_SERVER["DOCUMENT_ROOT"]."/src/common.blocks/header/head... | igoldyrev/autobagaz | guestbook.php | PHP | gpl-3.0 | 6,770 |
//////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2004-2011. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/interpr... | tianyang-li/de-novo-rna-seq-quant-1 | boost_1_51_0/libs/interprocess/test/mutex_test_template.hpp | C++ | gpl-3.0 | 10,762 |
# node-bing-wallpaper
Simple node script to retrieve latest daily bing wallpaper
| mihab/node-bing-wallpaper | README.md | Markdown | gpl-3.0 | 81 |
package org.kramerlab.seitan.api.services;
import org.apache.cxf.jaxrs.ext.multipart.Multipart;
import org.kramerlab.seitan.api.exceptions.SEITANException;
import org.springframework.beans.factory.annotation.Required;
import org.springframework.stereotype.Service;
import javax.ws.rs.*;
import javax.ws.rs.core.Context... | joergwicker/seitan | seitan-api/src/main/java/org/kramerlab/seitan/api/services/GroupIDService.java | Java | gpl-3.0 | 1,466 |
/**
* Created by tmanson on 03/05/2016.
*/
angular.module('redCrossQuestClient').factory('YearlyGoalsResource', function ($resource, $localStorage) {
return $resource('/rest/:roleId/ul/:ulId/yearlyGoals/:id',
{
roleId: function () { return $localStorage.currentUser.roleId},
ulId : function () { re... | dev-mansonthomas/RedCrossQuest | client/src/app/admin/yearlyGoals/yearlyGoals.resource.js | JavaScript | gpl-3.0 | 584 |
Source : https://bootswatch.com/
Themes : Flatly
| antonraharja/playSMS | web/plugin/themes/flatly/jscss/bootstrap/README.md | Markdown | gpl-3.0 | 49 |
package l2s.commons.data.xml.helpers;
import l2s.commons.data.xml.AbstractParser;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
/**
* Author: VISTALL
* Date: 20:43/30.11.2010
*/
public class ErrorHandlerImpl implements ErrorHandler
{
private AbstractPars... | pantelis60/L2Scripts_Underground | commons/src/main/java/l2s/commons/data/xml/helpers/ErrorHandlerImpl.java | Java | gpl-3.0 | 1,073 |
/*
BEGIN LICENSE BLOCK
Copyright 2010-2011, Heiko Mueller, Sam Lindley, James Cheney and
University of Edinburgh
This file is part of Database Wiki.
Database Wiki is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
t... | jamescheney/database-wiki | src/org/dbwiki/web/ui/printer/FileEditor.java | Java | gpl-3.0 | 3,343 |
package isms.api;
import java.util.concurrent.ExecutionException;
import javax.ws.rs.Consumes;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.core.MediaType;
import org.apache.kafka.clients.producer.RecordMetadata;
import isms.common.Constants;
import isms.models.SensorRecord;
import isms.serv... | aci2n/isms | Web/src/isms/api/RecordsApi.java | Java | gpl-3.0 | 877 |
#!/usr/bin/env python2.7
# coding=utf-8
# Author: Dustyn Gibson <miigotu@gmail.com>
# URL: http://github.com/SickRage/SickRage
#
# This file is part of SickRage.
#
# SickRage 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 Softwar... | hernandito/SickRage | tests/helpers_tests.py | Python | gpl-3.0 | 16,369 |
'''
Decomposition
-------------
The core of sector decomposition. This module implements
the actual decomposition routines.
Common
~~~~~~
This module collects routines that are used by
multiple decompition modules.
.. autoclass:: pySecDec.decomposition.Sector
.. autofunction:: pySecDec.decomposition.squash_symmetry... | mppmu/secdec | pySecDec/decomposition/__init__.py | Python | gpl-3.0 | 758 |
/*********************************************************
*********************************************************
** DO NOT EDIT **
** **
** THIS FILE AS BEEN GENERATED AUTOMATICALLY **
** BY UPA PORTABLE GEN... | thevpc/upa | upa-impl-core/src/main/csharp/Sources/Auto/DefaultEntityPrivateAddItemInterceptor.cs | C# | gpl-3.0 | 2,602 |
/*
Copyright (C) 2014 Sergey Lamzin, https://github.com/sergeylamzin/stark
This file is part of the StarK genome assembler.
StarK 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 versi... | sergeylamzin/stark | src/stark_status.h | C | gpl-3.0 | 3,770 |
while true
do
curl -s -u nova:$1 http://localhost:15672/api/queues/%2F/$2 | python -c 'import json,sys;obj=json.load(sys.stdin); print "%s %s" % (obj["message_stats"]["publish_details"]["rate"], obj["message_stats"]["deliver_get_details"]["rate"])' | sed "s/^/$(date '+%Y-%m-%d %H:%M:%S') /"
sleep 5
done
| f3flight/openstack-tools | rabbitmq/rabbitmq-metering-queue-details.sh | Shell | gpl-3.0 | 309 |
/*******************************************************************************
Copyright ยฉ 2010 Didier Corbiere
Distributable under the terms of the GNU Lesser General Public License,
as specified in the LICENSE file.
EntryTest.cpp
*************************************************************************... | marsender/atoll-digital-library | src/unittest/EntryTest.cpp | C++ | gpl-3.0 | 4,854 |
<?php if ( $posts->have_posts() ): extract($posts->info);
$size = (!$img_size)? 'pergo-400x--nocrop' : $img_size;
?>
<!-- PORTFOLIO IMAGES HOLDER -->
<div class="row">
<div class="col-md-12">
<div class="grid" id="portfolio-grid">
<?php
$count = 0;
while ( $posts->have_posts() ... | beeznest/web | portfolio/isotope.php | PHP | gpl-3.0 | 1,791 |
/*
* Pixel Dungeon
* Copyright (C) 2012-2015 Oleg Dolya
*
* Shattered Pixel Dungeon
* Copyright (C) 2014-2016 Evan Debenham
*
* Lovecraft Pixel Dungeon
* Copyright (C) 2016-2017 Leon Horn
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public L... | TypedScroll/Lovercraft.Pixel.Dungeon | core/src/main/java/com/shatteredpixel/lovecraftpixeldungeon/sprites/PoorThiefSprite.java | Java | gpl-3.0 | 1,462 |
#ifndef BUNKERBUILDER_SDL_H
#define BUNKERBUILDER_SDL_H
#include <string>
#include <functional>
#include <unordered_map>
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include <SDL_ttf.h>
#include <algorithm>
#include "game.h"
#include "utils.h"
namespace bb {
using namespace std;
struct Button {
SDL_Texture *... | mafik/bunker-builder | sdl.h | C | gpl-3.0 | 14,191 |
/*
* Copyright (c) 2010 The Jackson Laboratory
*
* This 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 software is d... | cgd/java-util | src/java/org/jax/util/gui/ListTreeNode.java | Java | gpl-3.0 | 2,388 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
Uses of Class com.google.gwt.editor.ui.client.ValueBoxEditorDecorator (Google Web Toolkit Javadoc)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../sty... | dandrocec/PaaSInterop | SemanticCloudClient/build/web/WEB-INF/lib/doc/javadoc/com/google/gwt/editor/ui/client/class-use/ValueBoxEditorDecorator.html | HTML | gpl-3.0 | 6,133 |
/*
*
* Copyright (C) 2009-2010 IPB Halle, Sebastian Wolf
*
* Contact: swolf@ipb-halle.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 version 3 of the License, or
* (at your option) ... | mgerlich/MetFusion | src/main/java/de/ipbhalle/metfusion/integration/Similarity/Similarity.java | Java | gpl-3.0 | 15,598 |
/*
* AbstractWindow.java
* Copyright 2008-2015 Gamegineer contributors and others.
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the ... | gamegineer/dev | main/common/org.gamegineer.common.ui/src/org/gamegineer/common/ui/window/AbstractWindow.java | Java | gpl-3.0 | 11,104 |
๏ปฟ'==============================================================================
'
' EveHQ - An Eve-Onlineโข character assistance application
' Copyright ยฉ 2005-2015 EveHQ Development Team
'
' This file is part of EveHQ.
'
' The source code for EveHQ is free and you may redistribute
' it and/or modify it under the ter... | schpidi2015/EveHQ | EveHQ/Controls/DBControls/DBCLastTransactions.vb | Visual Basic | gpl-3.0 | 9,358 |
/*
* XFireDB ruby database
* Copyright (C) 2015 Michel Megens <dev@michelmegens.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 3 of the License, or
* (at yo... | xfiredb/xfiredb | ext/xfiredb-serv/database.c | C | gpl-3.0 | 6,449 |
<?php
/**
* Piwik - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\SEO\Metric;
use Piwik\Http;
use Piwik\Metrics\Formatter;
use Psr\Log\LoggerInterface;
/**
* Fetches the domain age using archive.org, who... | piwik/piwik | plugins/SEO/Metric/DomainAge.php | PHP | gpl-3.0 | 3,718 |
## Types of data
1. Quantitative
* Continuous - numerical values with decimals like 1.2, 1.8, 20, 2.3.
* Discrete - numerical values without decimals (only integers) like 5, 80, 99, 556.
* Ratio - numerical values with order among them like height 5.9", 6.0".
* Interval - numerical values with known order and ... | vivekec/datascience | notes/data_types.md | Markdown | gpl-3.0 | 678 |
package com.avaliacao360zanco.config;
import com.avaliacao360zanco.async.ExceptionHandlingAsyncTaskExecutor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;
import org.springframework.aop.interceptor.SimpleAsyncUncaughtExceptionHandler... | Maiconfz/avaliacao360zanco | src/main/java/com/avaliacao360zanco/config/AsyncConfiguration.java | Java | gpl-3.0 | 1,645 |
๏ปฟusing System.ComponentModel;
namespace cmdr.TsiLib.Enums
{
public enum LoopRecorderSize
{
[Description("4")]
_4 = 0,
[Description("8")]
_8 = 1,
[Description("16")]
_16 = 2,
[Description("32")]
_32 = 3
}
}
| TakTraum/cmdr | cmdr/cmdr.TsiLib/Enums/LoopRecorderSize.cs | C# | gpl-3.0 | 307 |
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/coregui/Views/JobWidgets/ProjectionsEditorCanvas.cpp
//! @brief Implements class ProjectionsEditorCanvas
//!
//! @homepage http://w... | gpospelov/BornAgain | GUI/coregui/Views/JobWidgets/ProjectionsEditorCanvas.cpp | C++ | gpl-3.0 | 6,508 |
/*
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.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 3 of the License, or
* ... | ninja33/anki-dict-helper | ext/fg/js/popup.js | JavaScript | gpl-3.0 | 2,644 |
<?php
/**
* Unit test class for WordPress Coding Standard.
*
* @package WPCS\WordPressCodingStandards
* @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards
* @license https://opensource.org/licenses/MIT MIT
*/
namespace WordPressCS\WordPress\Tests\WP;
use PHP_CodeSniffer\Tests\Stan... | mkdo/kapow-skeleton | wpcs/WordPress/Tests/WP/DeprecatedParameterValuesUnitTest.php | PHP | gpl-3.0 | 1,098 |
package br.edu.curso.dubles.stub.exemplo.facebook;
import facebook4j.User;
public class MailerStub implements IMailer {
public static final String sendmsg =
"sending email stubber :) to %s";
public boolean sendMail(User user) {
System.out.println( String.format(sendmsg, user.getName()) );
return true;
}
... | rafarocha/ceshi | patterns/xunit/src/test/java/br/edu/curso/dubles/stub/exemplo/facebook/MailerStub.java | Java | gpl-3.0 | 321 |
/**
******************************************************************************
* @file stm32l1xx_flash.h
* @author MCD Application Team
* @version V1.1.0
* @date 24-January-2012
* @brief This file contains all the functions prototypes for the FLASH
* firmware library.
************... | jmahler/EECE344-Digital_System_Design | empty_project/Libraries/STM32L1xx_StdPeriph_Driver/inc/stm32l1xx_flash.h | C | gpl-3.0 | 23,131 |
#include <Sensoria.h>
#include <SensoriaCore/Communicator.h>
#include <SensoriaCore/common.h>
#include <SensoriaCore/utils.h>
#include <SensoriaCore/debug.h>
class ByteAddress: public SensoriaAddress {
public:
byte addr; // 0 = Broadcast, 1-255 = Valid client addresses
boolean inUse;
char* toString (char* buf, by... | SukkoPera/Arduino-Sensoria | arduino/src/SensoriaCommunicators/Serial.h | C | gpl-3.0 | 6,127 |
/////////////////////////////////////////////////////////////////////////////
// Name: pen.h
// Purpose: interface of wxPen* classes
// Author: wxWidgets team
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
The possible styles for ... | CarlosManuelRodr/wxChaos | libs/wxMSW-3.1.4/interface/wx/pen.h | C | gpl-3.0 | 16,804 |
<?php
class cronCumpleanoTask extends sfBaseTask
{
protected function configure()
{
// // add your own arguments here
// $this->addArguments(array(
// new sfCommandArgument('my_arg', sfCommandArgument::REQUIRED, 'My argument'),
// ));
$this->addOptions(array(
new sfCommandOption('appli... | mwveliz/siglas-mppp | lib/task/cronCumpleanoTask.class.php | PHP | gpl-3.0 | 9,924 |
## DamageType __enum__
>io.wolfscript.api.DamageType
---
### Enum Overview
DamageType enum
Item | Type
--- | :---
ANVIL: <br> _Damage cause by an anvil_ | DamageType
ARROW: <br> _Damage cause by an arrow_ | DamageType
CACTUS: <br> _Damage caused by cactus (1)_ | DamageType
ENCHANTMENT: <br> _Damage caused by a... | miningwolf/docs | docs/wolfcanary/io/wolfscript/api/DamageType.md | Markdown | gpl-3.0 | 2,300 |
// src_hydrology/post_change_longitude_latitude.js
// -----------------------------------------------
function post_change_longitude_latitude( element )
{
var degrees;
var minutes;
var seconds;
var seconds_integer;
var floating_point;
var string_array;
var seconds_array;
var delimiter;
var minus_sign;
var el... | timhriley/appaserver | src_hydrology/post_change_longitude_latitude.js | JavaScript | gpl-3.0 | 3,492 |
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2013 - Raw Material Software Ltd.
Permission is granted to use this software under the terms of either:
a) the GPL v2 (or any later version)
b) the Affero GPL... | alessandrostone/KlangFalter | JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h | C | gpl-3.0 | 16,529 |
package addonDread.models;
import net.minecraft.client.model.ModelRenderer;
import net.minecraft.client.model.ModelZombie;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLiving;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
@SideOnly(Side.CLIENT)
public class Mod... | ArtixAllMighty/rpginventory | addonDread/models/ModelDeath.java | Java | gpl-3.0 | 2,118 |
//
// HYCarouselViewCell.h
// iOSAppFrame
//
// Created by chyrain on 2017/7/1.
// Copyright ยฉ 2017ๅนด Chyrain. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface HYCarouselViewCell : UICollectionViewCell
@property (nonatomic, weak) UIImageView *iconView;
@end
| Chyrain/iOSAppFrame | iOSAppFrame/iOSAppFrame/Classes/Views/ViewPager/HYCarouselViewCell.h | C | gpl-3.0 | 276 |
package com.personal.xiri.only.utils;
import java.io.Closeable;
import java.io.IOException;
import java.net.Socket;
/**
* <pre>
* author: Blankj
* blog : http://blankj.com
* time : 2016/10/9
* desc : ๅ
ณ้ญ็ธๅ
ณๅทฅๅ
ท็ฑป
* </pre>
*/
public class CloseUtils {
private CloseUtils() {
throw new ... | gaojianyang/only | Only/app/src/main/java/com/personal/xiri/only/utils/CloseUtils.java | Java | gpl-3.0 | 1,287 |
# Simple Page/Notes system, will grow into a full Wiki once I get the time..
class PagesController < ApplicationController
def index
@pages = current_user.pages.all(:select => 'projects.name, pages.id, pages.name',
:order => 'projects.name, pages.position', :include => :project).group_by { |p| p.project.name ... | libeo/tiktak | app/controllers/pages_controller.rb | Ruby | gpl-3.0 | 1,541 |
'use strict';
//const Path = require('path');
import test from './test';
test('Babel is working!');
//import _ from 'lodash';
const Hapi = require('hapi');
const Hoek = require('hoek');
// Load Neo4j DB Driver
const neo4j = require('neo4j-driver').v1;
const server = new Hapi.Server();
server.connection({port: 3000, ... | agm1984/neo4j-chartist | app.js | JavaScript | gpl-3.0 | 2,340 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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>until... | belangeo/cecilia4csound | Resources/html/until.html | HTML | gpl-3.0 | 8,012 |
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
</head>
<body>
<h2>We have resetted your password</h2>
<div>
Your new password is: {{ $newPassword }}
</div>
</body>
</html> | rubenvanassche/Programming-Project-Databases | app/views/user/emails/passwordforgot.blade.php | PHP | gpl-3.0 | 206 |
---
name: Feature request
about: Suggest an idea for this project
title: "[Feature Request]"
labels: enhancement
assignees: GreaterFire
---
- [ ] I certify that I have read the contributing guidelines and I acknowledge if I don't follow the format below or I don't check this box, my issue will be closed immediately w... | GreaterFire/trojan | .github/ISSUE_TEMPLATE/feature_request.md | Markdown | gpl-3.0 | 1,016 |
/********************************************************************
** Copyright (c) 2018-2020 Guan Wenliang
** This file is part of the Berry default interpreter.
** skiars@qq.com, https://github.com/Skiars/berry
** See Copyright Notice in the LICENSE file or at
** https://github.com/Skiars/berry/blob/master/LICENSE... | stefanbode/Sonoff-Tasmota | lib/libesp32/Berry/src/be_map.h | C | gpl-3.0 | 1,826 |
#include <stdio.h>
/*
* Copied from include/linux/...
*/
#undef offsetof
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
/**
* container_of - cast a member of a structure out to the containing structure
* @ptr: the pointer to the member.
* @type: the type of the container struct this... | YuchengWang/linux-self-code | c/container_of.c | C | gpl-3.0 | 1,196 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_20) on Mon Nov 05 16:19:57 GMT 2012 -->
<TITLE>
ObjectField (db4o - database for objects - documentation)
</TITLE>
<META NAME="date" CONTEN... | potty-dzmeia/db4o | doc/api/com/db4o/config/ObjectField.html | HTML | gpl-3.0 | 15,627 |
/**
*
* Copyright (c) 2014, Openflexo
*
* This file is part of Gina-core, a component of the software infrastructure
* developed at Openflexo.
*
*
* Openflexo is dual-licensed under the European Union Public License (EUPL, either
* version 1.1 of the License, or any later version ), which is available at... | openflexo-team/gina | gina-api/src/main/java/org/openflexo/gina/model/widget/FIBReferencedComponent.java | Java | gpl-3.0 | 16,971 |
package org.obiba.magma.datasource.fs;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.io.Writer;
import javax.validation.constraints.NotNull;
import org.obiba.magma.Value;
import org.obiba.magma.ValueTableWriter;
import org.obiba.magma.Variable;
import org.obiba.magma.VariableEntity;
impo... | apruden/magma | magma-datasource-fs/src/main/java/org/obiba/magma/datasource/fs/FsValueTableWriter.java | Java | gpl-3.0 | 3,136 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta nam... | grvpanchal/bootstrap-essentials | docs/examples/containers.html | HTML | gpl-3.0 | 14,351 |
DROP TABLE IF EXISTS `powb_toc`;
CREATE TABLE `powb_toc` (
`id` bigint(20) NOT NULL AUTO_INCREMENT ,
`toc_overall` text NULL ,
`toc_file_id` bigint(20) NULL ,
`powb_synthesis_id` bigint(20) NOT NULL ,
`is_active` tinyint(1) NOT NULL ,
`created_by` bigint(20) NULL ,
`modified_by` bigint(20) NULL ,
`active_since` ... | CCAFS/MARLO | marlo-web/src/main/resources/database/migrations/V2_5_0_20180201_1500__PowbToC.sql | SQL | gpl-3.0 | 780 |
๏ปฟ// Copyright (c) Clickberry, Inc. All rights reserved.
// Licensed under the GNU GENERAL PUBLIC LICENSE Version 3. See License.txt in the project root for license information.
namespace Portal.DTO.Projects
{
/// <summary>
/// External video entity.
/// </summary>
public sealed class ExternalVideo
... | clickberry/video-portal | Source/Entities/Portal.DTO/Projects/ExternalVideo.cs | C# | gpl-3.0 | 750 |
<?php
/**
* TrcIMPLAN รndice Bรกsico de Colonias
*
* Copyright (C) 2016 Guillermo Valdes Lozano
*
* 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... | TRCIMPLAN/beta | lib/IBCTorreon/ElCampanario.php | PHP | gpl-3.0 | 2,701 |
/*
* Open Source Physics software is free software as described near the bottom of this code file.
*
* For additional information and documentation on Open Source Physics please see:
* <http://www.opensourcephysics.org/>
*/
package org.opensourcephysics.sip.ch16;
/**
* BoxEigenstate defines the eigenfuntions a... | OpenSourcePhysics/csm | src/org/opensourcephysics/sip/ch16/BoxEigenstate.java | Java | gpl-3.0 | 2,169 |
package net.thevpc.upa.impl.persistence.shared.marshallers;
import java.io.ByteArrayInputStream;
import net.thevpc.upa.exceptions.IllegalUPAArgumentException;
import net.thevpc.upa.impl.persistence.MarshallManager;
import net.thevpc.upa.impl.persistence.SimpleTypeMarshaller;
import java.sql.Types;
import net.thevpc.... | thevpc/upa | upa-impl-core/src/main/java/net/thevpc/upa/impl/persistence/shared/marshallers/ByteRefArrayToBlobMarshaller.java | Java | gpl-3.0 | 2,151 |
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unity - Scripting API: Light.intensity</title>
<meta name="descript... | rakuten/Uinty3D-Docs-zhcn | ScriptReference/Light-intensity.html | HTML | gpl-3.0 | 11,511 |
// +--------------------------------------------------------------------------+
// | Copyright 2016 Matthew D. Steele <mdsteele@alum.mit.edu> |
// | |
// | This file is part of System Syzygy. |
... | mdsteele/syzygy | src/modes/line/view.rs | Rust | gpl-3.0 | 13,630 |
<!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=iso-8859-1" />
<title>Golden T Studios - GTGE Tutorial 12</title>
<meta name="key... | idega/com.idega.games | docs/GTGE/tutorials/tutorial12.html | HTML | gpl-3.0 | 12,740 |
/*!
* \file
*
* Copyright (c) 2010 Johann A. Briffa
*
* This file is part of SimCommSys.
*
* SimCommSys 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 ... | jbresearch/simcommsys | Libraries/Libcomm/codec/repacc.h | C | gpl-3.0 | 5,275 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>main.cpp Example File | Qt Data Visualization 5.7</title>
<link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
<script type="text/javas... | angeloprudentino/QtNets | Doc/qtdatavisualization/qtdatavisualization-qmlscatter-main-cpp.html | HTML | gpl-3.0 | 7,071 |
#include <QUuid>
#include <QString>
#include "ientity.h"
SOFT_BEGIN_NAMESPACE
class IEntity::Private
{
friend class IEntity;
Private(std::string const &id)
: uuid(id.c_str())
{}
Private()
: uuid(QUuid::createUuid())
{}
QUuid uuid;
};
/*!
Constructs a new entity (A new \em uuid will generated... | NanoSim/Porto | core/src/kernel/ientity.cpp | C++ | gpl-3.0 | 1,192 |
<?php
/*
* Copyright 2014-2021 GPLv3, Open Crypto Portfolio Tracker by Mike Kilday: http://DragonFrugal.com
*/
error_reporting(0); // Turn off all error reporting (0), or enable (1)
$runtime_mode = 'download';
// Flag as CSV export BEFORE config.php (to run minimized logic from init.php)
if ( $_GET['csv_export']... | taoteh1221/DFD_Cryptocoin_Values | download.php | PHP | gpl-3.0 | 814 |
//
// DHHBannerView.h
// AntiqueCatalog
//
// Created by Cangmin on 16/1/4.
// Copyright ยฉ 2016ๅนด Cangmin. All rights reserved.
//
#import <UIKit/UIKit.h>
@class DHHBannerView;
@protocol DHHBannerViewDelegate <NSObject>
@optional
- (void)bannerView:(DHHBannerView *)bannerView didClickedImageIndex:(NSInteger)i... | xiaohe2014/AntiqueCatalog | AntiqueCatalog/AntiqueCatalog/First(้ฆ้กต)/View/DHHBannerView.h | C | gpl-3.0 | 4,301 |
package creOrthologs;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.util.List;
import parsers.FastaSequence;
public class ExtractOne
{
public static void main(String[] args) throws Exception
{
List<FastaSequence> list =
FastaSequence.readFastaFile(
... | afodor/clusterstuff | src/creOrthologs/ExtractOne.java | Java | gpl-3.0 | 933 |
# Copyright (C) 2005 - 2021 Settlers Freaks <sf-team at siedler25.org>
#
# SPDX-License-Identifier: GPL-2.0-or-later
option(RTTR_ENABLE_WERROR "Build with warnings turned into errors" ON)
function(enable_warnings target)
get_target_property(targetType ${target} TYPE)
if(targetType STREQUAL "INTERFACE_LIBRARY")
... | Return-To-The-Roots/libutil | cmake/EnableWarnings.cmake | CMake | gpl-3.0 | 4,455 |
#include <gtest/gtest.h>
#include <stdint.h>
#include <zmq.h>
#include <algorithm>
#include <array>
#include <atomic>
#include <chrono>
#include <cstddef>
#include <cstring>
#include <future>
#include <iterator>
#include <memory>
#include <thread>
#include <type_traits>
#include <utility>
#include <vector>
#include "Si... | Tondorf/gravioli | server/test/test_server.cpp | C++ | gpl-3.0 | 7,611 |
/* dsa-keygen.c
*
* Generation of DSA keypairs
*/
/* nettle, low-level cryptographics library
*
* Copyright (C) 2013, 2014 Red Hat
*
* The nettle 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 ... | attilamolnar/gnutls | lib/nettle/int/dsa-keygen-fips186.c | C | gpl-3.0 | 11,099 |
#include "contacts.h"
#include <malloc.h>
int main()
{
contPtr info = (contPtr)malloc(sizeof(struct contacts));
info->name = "1";
vertexPtr rear = initVertex(info);
rear = addVertexRelationOnName(rear, "1", "4");
rear = addVertexRelationOnName(rear, "4", "2");
rear = addVertexRelationOnName(rear, "2", ... | ScarlettCanaan/mylife | data_structure/hwFinal/testcase.c | C | gpl-3.0 | 607 |
start_proxy() {
# Accept one connection from mfsmount on the fake port
socat tcp-listen:$1,reuseaddr system:"
socat stdio tcp\:$(get_ip_addr)\:$2 | # connect to real server
{
dd bs=1k count=12k ; # forward 12MB
sleep 1d ; # and go catatonic
}" &
}
if ! is_program_in... | lizardfs/lizardfs | tests/test_suites/ShortSystemTests/test_cs_failure_during_xor_read.sh | Shell | gpl-3.0 | 1,211 |
<?php
/**************************************************
* PHP DEBUGGER
**************************************************/
/**************************************************
* @package phpDebugger
* @subpackage core
* @version 1.01
* @build 1042
**************************************************/
/********... | keil/phpDebugger | core/classes/debugger/DebuggerFactory.class.php | PHP | gpl-3.0 | 892 |
import { NgModule } from '@angular/core';
import {
MdAutocompleteModule,
MdButtonModule,
MdButtonToggleModule,
MdCardModule,
MdCheckboxModule,
MdChipsModule,
MdCoreModule,
MdDatepickerModule,
MdDialogModule,
MdExpansionModule,
MdGridListModule,
MdIconModule,
MdInputModule,
MdListModule,
... | timdavish/TopTraining2 | client/src/app/shared/material.module.ts | TypeScript | gpl-3.0 | 1,328 |
<?php
/**
* @since Created on 24 Jun 2012
* @package EveOnlineApi
* @author Thies Wandschneider <thies@wandschneider.de>
* @license GNU/LGPL, see COPYING
* @link http://themanwiththehat.wordpress.com
*
* This file is part of the EveOnlineApi Plugin for cakePHP 2.
*
* The project is free software: you can re... | TheManWithTheHat/EveOnlineApi | Model/MapSolarSystemJump.php | PHP | gpl-3.0 | 1,787 |
# mspa
M Single Page Application
๋จ์ผ ํ์ด์ง ์น ์ ํ๋ฆฌ์ผ์ด์
(SPA)์ "๋จ์ผ ํ์ด์ง ์น" ๊ธ์๋ง ๋นผ๋ฉด ๊ทธ๋ฅ ์ ํ๋ฆฌ์ผ์ด์
์
๋๋ค. ์๋์ฐ์ ์ค์นํด์ ์ฌ์ฉํ๋ .exe ์ ํ๋ฆฌ์ผ์ด์
๊ฐ๋ฐ ๋ฐฉ์๊ณผ ํ๋ฑ ์ฐจ์ด๊ฐ ์๊ณ ๋ณด์ฌ์ง๋ ๊ธฐ๋ฐ์ด ๋ธ๋ผ์ฐ์ ์์ด๋ผ๋ ๊ฒ ๋ฐ์ ์ฐจ์ด๊ฐ ์์ต๋๋ค. ๋ช๋
์ ๋ฆฌ์น ์ธํฐ๋ท ์ ํ๋ฆฌ์ผ์ด์
(RIA)๋ฅผ ์ด๋์๋ ํ๋์ค(Flex)๋ฅผ ๋ ์ฌ๋ ค๋ ์ข์ต๋๋ค. ํ์ง๋ง ์ง๊ธ์ ๋ชจ๋ฐ์ผ๊ณผ ์น์ ์๋์ด๋ HTML/CSS/JavaScript ๋ง์ผ๋ก๋ ์ถฉ๋ถํ ์ ํ๋ฆฌ์ผ์ด์
์ ๋ง๋ค ์ ์์ต๋๋ค.
MSPA ํ๋ ์์ํฌ๋ HTML์์ ๋ถ์กฑํ ๋ ์ด์์๊ธฐ๋ฅ์ ๋จ์ผํ์ด... | mukeunkim/mspa | README.md | Markdown | gpl-3.0 | 2,825 |
๏ปฟ/*
Post-Deployment Script Template
--------------------------------------------------------------------------------------
This file contains SQL statements that will be appended to the build script.
Use SQLCMD syntax to include a file in the post-deployment script.
Example: :r .\myfile.sql
... | synweb/rocms | News/RoCMS.News.Database/InitialData.sql | SQL | gpl-3.0 | 1,050 |
#include "moc_Uzytkownik.cpp"
#include "Settings.h"
/*!
* init function read settings
!*/
void Uzytkownik::init () {
QSettings settings("elinux", "user");
nameEdit->setText (settings.value ("name").toString());
placeEdit->setText (settings.value ("city").toString());
codeEdit->setText (settings.value ("zi... | rafalrusin/qfaktury | src/Uzytkownik.cpp | C++ | gpl-3.0 | 1,619 |
# -*- encoding: utf-8 -*-
from robottelo.constants import FILTER, FOREMAN_PROVIDERS
from nailgun import entities
from robottelo.ui.base import Base, UINoSuchElementError, UIError
from robottelo.ui.locators import common_locators, locators, tab_locators
from robottelo.ui.navigator import Navigator
class ResourceProfil... | sghai/robottelo | robottelo/ui/computeresource.py | Python | gpl-3.0 | 25,187 |
<!--
Mad-Advertisement
Copyright (C) 2011 Thorsten Marx <thmarx@gmx.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 3 of the License, or (at your option) any ... | codepilotde/AdServing | ad.manager/src/main/resources/net/mad/ads/manager/web/pages/manager/site/edit/EditSitePage.html | HTML | gpl-3.0 | 2,925 |
package org.arig.robot.system.encoders;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
import org.arig.robot.model.monitor.MonitorTimeSerie;
import org.arig.robot.monitoring.IMonitoringWrapper;
import org.springframework.beans.factory.annotation.Autowired;
/**
* The Class Abstract2WheelsEncoders.
*
* @aut... | ARIG-Robotique/robots | robot-system-lib-parent/robot-system-lib-core/src/main/java/org/arig/robot/system/encoders/Abstract2WheelsEncoders.java | Java | gpl-3.0 | 2,265 |
<?php
/*
* This file is part of the Moodle Plugin CI package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Copyright (c) 2018 Blackboard Inc. (http://www.blackboard.com)
* License http://www.gnu.org/copyleft/gpl.html GNU GPL v... | moodlerooms/moodle-plugin-ci | tests/PluginValidate/Requirements/BlockRequirementsTest.php | PHP | gpl-3.0 | 2,707 |
๏ปฟusing System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FF1Lib.Sanity
{
public struct SCDeferredAreaQueueEntry
{
public short Source { get; set; }
public short Target { get; set; }
public SCDeferredA... | Entroper/Randomizers | FF1Lib/Sanity/SCDeferredAreaQueueEntry.cs | C# | gpl-3.0 | 806 |
import scala.collection.JavaConversions._
// you can use println for debugging purposes, e.g.
// println("this is a debug message")
object Solution {
def solution(A: Array[Int]): Int = {
// write your code in Scala 2.10
val n = A.length
var k: Int = 1
var j: Int = 0
... | sfindeisen/prgctst | codility/lesson/Dominator.scala | Scala | gpl-3.0 | 661 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.