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 |
|---|---|---|---|---|---|
//////////////////////////////////////////////////////////////////////////
// //
// This is a generated file. You can view the original //
// source in your browser if your browser supports source maps. //
// Source maps are s... | clinical-meteor/meteor-on-fhir | cordova-build-release/www/application/packages/clinical_accounts-oauth.js | JavaScript | agpl-3.0 | 10,784 |
# frozen_string_literal: true
# This migration comes from decidim (originally 20210310120640)
class AddFollowableCounterCacheToUsers < ActiveRecord::Migration[5.2]
def change
add_column :decidim_users, :follows_count, :integer, null: false, default: 0, index: true
reversible do |dir|
dir.up do
... | diputacioBCN/decidim-diba | db/migrate/20220203073236_add_followable_counter_cache_to_users.decidim.rb | Ruby | agpl-3.0 | 503 |
//#############################################################################
//# #
//# Copyright (C) <2015> <IMS MAXIMS> #
//# ... | FreudianNM/openMAXIMS | Source Library/openmaxims_workspace/RefMan/src/ims/RefMan/forms/booktheatreslot/BaseLogic.java | Java | agpl-3.0 | 9,878 |
/*File: tagsService.js
*
* Copyright (c) 2013-2016
* Centre National d’Enseignement à Distance (Cned), Boulevard Nicephore Niepce, 86360 CHASSENEUIL-DU-POITOU, France
* (direction-innovation@cned.fr)
*
* GNU Affero General Public License (AGPL) version 3.0 or later version
*
* This file is part of a program whi... | cnedDI/AccessiDys | app/scripts/services/tagsService.js | JavaScript | agpl-3.0 | 1,918 |
/*
* Copyright 2011 Witoslaw Koczewsi <wi@koczewski.de>, Artjom Kochtchi
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero
* General Public License as published by the Free Software Foundation, either version 3 of the License, or
* (at your option) any l... | JavierPeris/kunagi | src/main/java/scrum/server/css/CssServlet.java | Java | agpl-3.0 | 2,099 |
#include "InformationParser.h"
InformationParser::InformationParser()
{
}
bool InformationParser::readJSON()
{
//Place Function Code Here
return true;
}
| UCSolarCarTeam/Recruit-Resources | Recruit-Training/Advanced-Recruit-Training/Viscomm-Teaser/Viscomm-Teaser-Training/src/InformationParser.cpp | C++ | agpl-3.0 | 164 |
/*
* 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 qa.qcri.aidr.dbmanager.ejb.remote.facade.imp;
import static org.junit.Assert.assertEquals;
import static org.junit.Ass... | qcri-social/Crisis-Computing | aidr-db-manager/src/test/java/qa/qcri/aidr/dbmanager/ejb/remote/facade/imp/TestDocumentNominalLabelResourceFacadeImp.java | Java | agpl-3.0 | 15,577 |
#!/usr/bin/env python
import argparse
import os
import sys
from loomengine import server
from loomengine import verify_has_connection_settings, \
get_server_url, verify_server_is_running, get_token
from loomengine_utils.connection import Connection
from loomengine_utils.exceptions import LoomengineUtilsError
cla... | StanfordBioinformatics/loom | client/loomengine/run_label.py | Python | agpl-3.0 | 7,876 |
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Addons modules by CLEARCORP S.A.
# Copyright (C) 2009-TODAY CLEARCORP S.A. (<http://clearcorp.co.cr>).
#
# This program is free software: you can redistribute... | ClearCorp/odoo-clearcorp | TODO-9.0/budget/stock.py | Python | agpl-3.0 | 3,050 |
// Copyright 2013 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
package constraints_test
import (
"encoding/json"
"fmt"
"strings"
jc "github.com/juju/testing/checkers"
gc "gopkg.in/check.v1"
goyaml "gopkg.in/yaml.v2"
"github.com/juju/juju/core/constraints"
"github.com/juju/juju/... | jameinel/juju | core/constraints/constraints_test.go | GO | agpl-3.0 | 29,572 |
#include <stdio.h>
#include <stdlib.h>
enum { PARAMNUM = 4 };
int
main(int argc, char *argv[])
{
if (argc < PARAMNUM) {
return 1;
}
double sum = strtod(argv[1], NULL);
double dep = strtod(argv[2], NULL) / 100 + 1;
double cred = strtod(argv[3], NULL) / 100 + 1;
for (int i = PARAMNUM; ... | FourthRome/fourtherescue | Workbench/up03/1/1/test.c | C | agpl-3.0 | 464 |
<?php
/**
* @file classes/file/wrappers/HTTPFileWrapper.inc.php
*
* Copyright (c) 2000-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @package file.wrappers
* @ingroup file_wrappers
*
* Class providing a wrapper for the HTTP protocol.
* (for when allow_u... | ingmarschuster/MindResearchRepository | ojs-2.3.8/lib/pkp/classes/file/wrappers/HTTPFileWrapper.inc.php | PHP | agpl-3.0 | 4,336 |
describe('Markdown plugin', function() {
const Vue = require('vue');
Vue.use(require('plugins/markdown'));
Vue.config.async = false;
afterEach(function() {
fixture.cleanup();
});
/**
* Remove invisible nodes generated by Vue.js
*/
function strip(el) {
[...el.chil... | opendatateam/udata | specs/plugins/markdown.specs.js | JavaScript | agpl-3.0 | 6,254 |
// Copyright 2016 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for info.
package machine_test
import (
"github.com/juju/cmd"
"github.com/juju/cmd/cmdtesting"
jc "github.com/juju/testing/checkers"
gc "gopkg.in/check.v1"
"github.com/juju/juju/cmd/juju/machine"
"github.com/juju/juju/testing"
)
t... | freyes/juju | cmd/juju/machine/show_test.go | GO | agpl-3.0 | 7,282 |
# -*- encoding : utf-8 -*-
module GrabName
protected
def self.grab_name(id)
e = self.find(id,:select => 'name')
e = e.nil? ? '' : e.name
end
end
| codeforeurope/samenspel | lib/grab_name.rb | Ruby | agpl-3.0 | 167 |
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2011, 2013 Oracle and/or its affiliates. All rights reserved.
*/
#include <pthread.h>
#include <db.h>
/* Maximum number of db handles that init/close_xa_server will handle. */
#define MAX_NUMDB 4
/* Names for the databases. */
static c... | hyc/BerkeleyDB | test/xa/utilities/bdb_xa_util.h | C | agpl-3.0 | 1,624 |
//#############################################################################
//# #
//# Copyright (C) <2015> <IMS MAXIMS> #
//# ... | FreudianNM/openMAXIMS | Source Library/openmaxims_workspace/Core/src/ims/core/forms/nokdetails/BaseAccessLogic.java | Java | agpl-3.0 | 4,011 |
require "uri"
module Noosfero
module API
class Session < Grape::API
# Login to get token
#
# Parameters:
# login (*required) - user login or email
# password (required) - user password
#
# Example Request:
# POST http://localhost:3000/api/v1/login?login=admin... | tallysmartins/noosfero | lib/noosfero/api/session.rb | Ruby | agpl-3.0 | 5,667 |
using System;
using System.Collections.Generic;
using System.Text;
namespace Hybrasyl.Plugins
{
// TODO: interface
public class Message
{
public string Sender = string.Empty;
public string Recipient = string.Empty;
public Xml.MessageType Type { get; set; }
public string Tex... | hybrasyl/server | hybrasyl/Plugins/Message.cs | C# | agpl-3.0 | 697 |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from datetime import datetime
from django.utils import timezone
from mock import patch
import pytz
from ureport.contacts.models import ContactField, Contact, ReportersCounter
from ureport.contacts.tasks import fetch_contacts_task
from ureport.locations.m... | eHealthAfrica/ureport | ureport/contacts/tests.py | Python | agpl-3.0 | 15,406 |
package objective.taskboard.sizingImport.cost;
import static java.lang.String.format;
import static java.util.Arrays.asList;
import static java.util.Collections.emptyList;
import static objective.taskboard.sizingImport.SizingImportConfig.SHEET_COST;
import static objective.taskboard.sizingImport.SizingImportConfig.SHE... | herbert-venancio/taskboard | sizing-importer/src/test/java/objective/taskboard/sizingImport/cost/CostValidatorTest.java | Java | agpl-3.0 | 16,733 |
/* This file is part of VoltDB.
* Copyright (C) 2008-2014 VoltDB Inc.
*
* This file contains original code and/or modifications of original code.
* Any modifications made by VoltDB Inc. are licensed under the following
* terms and conditions:
*
* This program is free software: you can redistribute it and/or modi... | zheguang/voltdb | src/ee/expressions/parametervalueexpression.cpp | C++ | agpl-3.0 | 2,859 |
{% extends "enhydris/station_list/common.html" %}
{% load i18n %}
{% block body_classes %}
page page-map-full
{% endblock %}
{% block title %}
{% trans 'Stations' %} — {{ block.super }}
{% endblock %}
{% block content %}
{% include "enhydris/station_list/map.html" %}
<div class="page-main-content">
<d... | openmeteo/enhydris | enhydris/templates/enhydris/station_list/main-default.html | HTML | agpl-3.0 | 1,029 |
<?php
$TRANSLATIONS = array(
"Unable to load list from App Store" => "앱 스토어에서 목록을 가져올 수 없습니다",
"Authentication error" => "인증 오류",
"Group already exists" => "그룹이 이미 존재함",
"Unable to add group" => "그룹을 추가할 수 없음",
"Email saved" => "이메일 저장됨",
"Invalid email" => "잘못된 이메일 주소",
"Unable to delete group" => "그룹을 삭제할 수 없음",
"Una... | ipit-international/learning-environment | owncloud/settings/l10n/ko.php | PHP | agpl-3.0 | 7,680 |
package io.scrollback.neighborhoods.bundle;
import android.support.annotation.NonNull;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public cl... | wesley1001/io.scrollback.neighborhoods | android/app/src/main/java/io/scrollback/neighborhoods/bundle/Checksum.java | Java | agpl-3.0 | 1,065 |
/*!
* CanJS - 2.2.9
* http://canjs.com/
* Copyright (c) 2015 Bitovi
* Fri, 11 Sep 2015 23:12:43 GMT
* Licensed MIT
*/
/*can@2.2.9#util/hashchange*/
define(['can/util/can'], function (can) {
(function () {
var addEvent = function (el, ev, fn) {
if (el.addEventListener) {
... | et304383/passbolt_api | app/webroot/js/lib/can/dist/amd/can/hashchange.js | JavaScript | agpl-3.0 | 719 |
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
*
* This ... | shahrooz33ce/sugarcrm | include/database/MssqlManager.php | PHP | agpl-3.0 | 51,509 |
# -*- coding: utf-8; -*-
#
# This file is part of Superdesk.
#
# Copyright 2013, 2014 Sourcefabric z.u. and contributors.
#
# For the full copyright and license information, please see the
# AUTHORS and LICENSE files distributed with this source code, or
# at https://www.sourcefabric.org/superdesk/license
from bson i... | sivakuna-aap/superdesk | server/apps/archive/archive_test.py | Python | agpl-3.0 | 14,852 |
require File.expand_path(File.dirname(__FILE__) + '/../../qti_helper')
if Qti.migration_executable
describe "QTI 1.2 zip with id prepender value" do
before(:all) do
@archive_file_path = File.join(BASE_FIXTURE_DIR, 'qti', 'plain_qti.zip')
unzipped_file_path = File.join(File.dirname(@archive_file_path),... | arrivu/hoodemo | vendor/plugins/qti_exporter/spec_canvas/lib/qti/qti_1_2_zip_spec.rb | Ruby | agpl-3.0 | 8,059 |
package CPANPLUS::Internals::Source;
use strict;
use CPANPLUS::Error;
use CPANPLUS::Module;
use CPANPLUS::Module::Fake;
use CPANPLUS::Module::Author;
use CPANPLUS::Internals::Constants;
use File::Fetch;
use Archive::Extract;
use IPC::Cmd qw[can_run];
use File::Temp qw[tempdir];
u... | jondo/paperpile | plack/perl5/win32/lib/CPANPLUS/Internals/Source.pm | Perl | agpl-3.0 | 42,163 |
{% extends "visualization.html" %}
{% load markdown_deux_tags %}
{% load text_filters %}
{% load humanize %}
{% block title %}Embedded Network Graph of {{ viz.title }} –
CourtListener.com{% endblock %}
{# Disable a number of blocks #}
{% block description %}{% endblock %}
{% block meta %}{% endblock %}
{% block i... | Andr3iC/courtlistener | cl/visualizations/templates/visualization_embedded.html | HTML | agpl-3.0 | 1,485 |
<?php
/**
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either ... | annando/friendica | src/Module/Magic.php | PHP | agpl-3.0 | 4,902 |
<?php
/*********************************************************************************
* Zurmo is a customer relationship management program developed by
* Zurmo, Inc. Copyright (C) 2015 Zurmo Inc.
*
* Zurmo is free software; you can redistribute it and/or modify it under
* the terms of t... | ralphkretzschmar/zurmohuf | app/protected/modules/accounts/tests/unit/walkthrough/AccountsDesignerSuperUserWalkthroughTest.php | PHP | agpl-3.0 | 94,738 |
go-Simap
========
A simple Imap client which
--Fetches,Copies,Moves emails from mailboxes.
--Creates,Deletes Mboxes/Folders on the Server.
--Marks,Unmarks Imap Flags from the mails.
--Can Skip Certificate Verification of the IMAP Server. (Good for IMAP servers using SelfSigned Cerificates.)
Also outputs JSON of emai... | pruthvirajsinh/prlpks | build/src/github.com/pruthvirajsinh/go-Simap/README.md | Markdown | agpl-3.0 | 3,422 |
define([
'collections/catalog_collection',
'test/mock_data/catalogs'
],
function(CatalogCollection,
MockCatalogs) {
'use strict';
var collection,
response = MockCatalogs;
beforeEach(function() {
collection = new CatalogCollection();
});
... | eduNEXT/edunext-ecommerce | ecommerce/static/js/test/specs/collections/catalog_collection_spec.js | JavaScript | agpl-3.0 | 924 |
<?php
/**
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either ... | annando/friendica | tests/src/Module/Api/Friendica/Photoalbum/UpdateTest.php | PHP | agpl-3.0 | 2,675 |
.opencps-theme.ux .opencps-accountinfo-wrapper {
margin: 25px auto 0;
width: 100%;
background-color: white;
border-radius: 8px;
-webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
padding: 15px 0 0
}
.opencps-theme.ux .opencps-accountinfo-wrapper .header {
bo... | hltn/opencps | themes/opencps-ux-theme/docroot/css/portlets/portlet_6.css | CSS | agpl-3.0 | 5,594 |
// Copyright Aleksey Gurtovoy 2000-2004
//
// 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)
//
// Preprocessed version of "boost/mpl/quote.hpp" header
// -- DO NOT modify by hand!
namespace abt_boost{} namesp... | jbruestle/aggregate_btree | tiny_boost/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp | C++ | agpl-3.0 | 2,290 |
@extends('layouts/default')
@section('title0')
@if ((Input::get('company_id')) && ($company))
{{ $company->name }}
@endif
@if (Input::get('status'))
@if (Input::get('status')=='Pending')
{{ trans('general.pending') }}
@elseif (Input::get('status')=='RTD')
{{ trans('general.ready_to_deploy') }}
... | madd15/snipe-it | resources/views/hardware/index.blade.php | PHP | agpl-3.0 | 3,507 |
Contributing
============
Thank you for considering contributing to Mastodon 🐘
You can contribute in the following ways:
- Finding and reporting bugs
- Translating the Mastodon interface into various languages
- Contributing code to Mastodon by fixing bugs or implementing features
- Improving the documentation
If ... | KnzkDev/mastodon | CONTRIBUTING.md | Markdown | agpl-3.0 | 1,688 |
<?php
$module_name = 'OfficeReportsHistory';
$metafiles[$module_name] = array(
'detailviewdefs' => 'modules/' . $module_name . '/metadata/detailviewdefs.php',
'editviewdefs' => 'modules/' . $module_name . '/metadata/editviewdefs.php',
'listviewdefs' => 'modules/' . $module_name . '/metadata/listviewdef... | MarStan/sugar_work | modules/OfficeReportsHistory/metadata/metafiles.php | PHP | agpl-3.0 | 581 |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
import django.contrib.gis.db.models.fields
class Migration(migrations.Migration):
dependencies = [
('core', '0001_initial'),
]
operations = [
migrations.CreateModel(
name... | ibamacsr/casv | casv/core/migrations/0002_areasoltura.py | Python | agpl-3.0 | 2,089 |
// This file may be edited manually or auto-generated using IfcKit at www.buildingsmart-tech.org.
// IFC content is copyright (C) 1996-2018 BuildingSMART International Ltd.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentMo... | pipauwel/IfcDoc | IfcKit/schemas/IfcKernel/IfcRelConnects.cs | C# | agpl-3.0 | 866 |
#include "mupdf/fitz.h"
#include <string.h>
#include <limits.h>
static const unsigned char web_palette[] = {
0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x66, 0x00, 0x00, 0x99, 0x00, 0x00, 0xCC, 0x00, 0x00, 0xFF, 0x00, 0x00,
0x00, 0x00, 0x33, 0x33, 0x00, 0x33, 0x66, 0x00, 0x33, 0x99, 0x00, 0x33, 0xCC, 0x00, 0x33, 0xFF, 0x0... | fluks/mupdf-x11-bookmarks | source/fitz/load-bmp.c | C | agpl-3.0 | 28,370 |
#!/bin/sh
# generates dbdriver.h
tmp=mk_dbdriver_h.tmp.$$
cat <<'EOT'> dbdriver.h
/* this file was automatically generated by ../mk_dbdriver_h.sh */
#ifndef DBDRIVER_H
#define DBDRIVER_H
#include <grass/dbstubs.h>
EOT
grep -h '^\( *int *\)\?db__driver' *.c | sed \
-e 's/^\( *int *\)*/int /' \
-e 's/ *(.*$/();/' >... | AsherBond/MondocosmOS | grass_trunk/db/drivers/mk_dbdriver_h.sh | Shell | agpl-3.0 | 541 |
//
// FakeEnvironment.cs
//
// Author:
// Giacomo Tesio <giacomo@tesio.it>
//
// Copyright (c) 2010-2013 Giacomo Tesio
//
// This file is part of Epic.NET.
//
// Epic.NET is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as publishe... | Shamar/Epic.NET | Code/UnitTests/Epic.Core.UnitTests/Fakes/FakeEnvironment.cs | C# | agpl-3.0 | 1,300 |
(function (plugin, core, scene) {
var plug = new plugin.GlobalRendering({
name: "Axes",
tooltip: "Show world space axes",
icon: "img/icons/axis.png",
toggle: true,
on: false
});
var DEFAULTS = {
planeSize: 10,
gridSpacing: 10,
gridColor:... | cignoni/meshlabjs | js/mlj/plugins/rendering/Axes.js | JavaScript | agpl-3.0 | 16,533 |
import Ember from 'ember';
export default Ember.Controller.extend({
canCreateTask: Ember.computed('model.isAdmin', function() {
return this.get('model.isAdmin');
}),
});
| singularities/circular-works | frontend/app/controllers/organizations/show.js | JavaScript | agpl-3.0 | 180 |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('activities', '0004_manytomany_not_null'),
]
operations = [
migrations.AddField(
model_name='activity',
... | enjaz/enjaz | activities/migrations/0005_activity_is_approved.py | Python | agpl-3.0 | 587 |
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | xin3liang/platform_external_arduino-ide | hardware/arduino/sam/system/AndroidAccessory/AndroidAccessory.cpp | C++ | lgpl-2.1 | 9,423 |
/****************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtXmlPatterns module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:L... | igor-sfdc/qt-wk | src/xmlpatterns/expr/qvaluecomparison.cpp | C++ | lgpl-2.1 | 4,779 |
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the tools applications of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Lice... | nonrational/qt-everywhere-opensource-src-4.8.6 | src/tools/uic/utils.h | C | lgpl-2.1 | 4,079 |
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Less... | kaltsi/qt-mobility | src/location/landmarks/qlandmarknamefilter.cpp | C++ | lgpl-2.1 | 4,339 |
package org.skyve.domain;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This is an annotation used for indicating that the associated metadata document that generated the domain class
* has at l... | skyvers/wildcat | skyve-core/src/main/java/org/skyve/domain/PolymorphicPersistentBean.java | Java | lgpl-2.1 | 752 |
//
// libavg - Media Playback Engine.
// Copyright (C) 2003-2011 Ulrich von Zadow
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at y... | pararthshah/libavg-vaapi | src/player/ImageNode.h | C | lgpl-2.1 | 2,260 |
-------------------------------------------------------------------------------
-- mob_environments Mod by Sapier
--
--
--! @file init.lua
--! @brief main init file for environment definitions
--! @copyright Sapier
--! @author Sapier
--! @date 2014-08-11
--
-- Contact sapier a t gmx net
--------------------------------... | openwayne/chaos_theory | mods/animalmaterials/mob_environments/init.lua | Lua | lgpl-2.1 | 944 |
/*
* ParallelJ, framework for parallel computing
*
* Copyright (C) 2010, 2011, 2012 Atos Worldline or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors.
*
* This library is free software; you can redistribute it an... | awltech/org.parallelj | parallelj-core-parent/parallelj-core-api/src/main/java/org/parallelj/internal/kernel/join/package-info.java | Java | lgpl-2.1 | 1,144 |
#include <config.h>
#ifdef WITH_VMX
# include <stdio.h>
# include <string.h>
# include <unistd.h>
# include "internal.h"
# include "memory.h"
# include "testutils.h"
# include "vmx/vmx.h"
static virCapsPtr caps;
static virVMXContext ctx;
static int testDefaultConsoleType(const char *ostype ATTRIBUTE_UNUSED)
{
... | danwent/libvirt-ovs | tests/vmx2xmltest.c | C | lgpl-2.1 | 8,078 |
/***************************************************************************
**
** Copyright (C) 2010, 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (directui@nokia.com)
**
** This file is part of libmeegotouch.
**
** If you have questions regarding the use of... | arcean/libmeegotouch-framework | src/include/mlabelmodel.h | C | lgpl-2.1 | 789 |
package net.minecraft.inventory;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.ChatComponentTranslation;
import net.minecraft.util.IChatComponent;
import ne... | trixmot/mod1 | build/tmp/recompileMc/sources/net/minecraft/inventory/InventoryLargeChest.java | Java | lgpl-2.1 | 6,532 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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" co... | cdmdotnet/CQRS | wiki/docs/4.1/html/classCqrs_1_1MongoDB_1_1DataStores_1_1MongoDbDataStore_af86a3df56e2df92fb9ef880ff4fa5f16.html | HTML | lgpl-2.1 | 6,039 |
set (PLIBSYS_THREAD_MODEL posix)
set (PLIBSYS_IPC_MODEL sysv)
set (PLIBSYS_TIME_PROFILER_MODEL posix)
set (PLIBSYS_DIR_MODEL posix)
set (PLIBSYS_LIBRARYLOADER_MODEL posix)
set (PLIBSYS_PLATFORM_LINK_LIBRARIES socket nsl -pthread)
set (PLIBSYS_PLATFORM_DEFINES
-D_REENTRANT
)
| saprykin/plib | platforms/unixware-gcc/platform.cmake | CMake | lgpl-2.1 | 285 |
<?php
// (c) Copyright 2002-2016 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id: phpunit.php 57962 2016-03-17 20:02:39Z jonnybradley $... | lorddavy/TikiWiki-Improvement-Project | lib/test/phpunit.php | PHP | lgpl-2.1 | 752 |
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Designer of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees h... | eric100lin/Qt-4.8.6 | tools/designer/src/lib/shared/shared_settings_p.h | C | lgpl-2.1 | 4,567 |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool
// Changes to this file will be lost if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
... | Chinchilla-Software-Com/CQRS | NorthwindDemo/step-3/aspnet-mvc/Northwind.Domain/Northwind/Domain/Orders/Repositories/Queries/Strategies/IInvoicesQueryStrategyBuilder.generated.cs | C# | lgpl-2.1 | 991 |
// IFC SDK : IFC2X3 C++ Early Classes
// Copyright (C) 2009 CSTB
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any late... | cstb/ifc2x3-SDK | include/ifc2x3/IfcAxis1Placement.h | C | lgpl-2.1 | 3,911 |
v0.21 + 1
------
* File unlocks are atomic again via rename. Read-only files on Windows are
made read-write if necessary.
* Share open packfiles across repositories to share descriptors and mmaps.
* Use a map for the treebuilder, making insertion O(1)
* LF -> CRLF filter refuses to handle mixed-EOL files
* LF ->... | chescock/libgit2 | CHANGELOG.md | Markdown | lgpl-2.1 | 1,845 |
#ifndef __MOSAIC_UTIL_H__
#define __MOSAIC_UTIL_H__
#include "log.h"
int scan_mounts(char *path, char *device);
int remove_rec(int dir_fd);
int rmdirat_r(int basefd, const char *base, const char *dirs);
int get_subdir_size(int fd, unsigned long *sizep);
int copy_file(int src_dirfd, const char *src_dir,
int dst_dirf... | kolyshkin/mosaic | include/util.h | C | lgpl-2.1 | 1,751 |
/*
Copyright (C) 2009 William Hart
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) a... | dsroche/flint2 | fmpz_poly/test/t-scalar_fdiv_mpz.c | C | lgpl-2.1 | 2,119 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LCOV - doc-coverage.info - Azure/Cqrs.Azure.ServiceBus.Tests.Unit</title>
<link rel="stylesheet" type="text/css" href="../../gcov.css">
</head>
<bod... | cdmdotnet/CQRS | wiki/docs/2.1/coverage-report/Azure/Cqrs.Azure.ServiceBus.Tests.Unit/index-sort-l.html | HTML | lgpl-2.1 | 4,144 |
#ifndef PFEIGENSTRAINBASEMATERIAL_H
#define PFEIGENSTRAINBASEMATERIAL_H
#include "LinearElasticMaterial.h"
#include "DerivativeMaterialInterface.h"
/**
* EigenStrainBaseMaterial is a base to construct material kernels that represent
* different eigenstrain - concentration relationships.
* It provides place holders... | SudiptaBiswas/Crow | include/materials/PFEigenStrainBaseMaterial.h | C | lgpl-2.1 | 1,655 |
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2006 Artem Pavlenko
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as ... | carlos-lopez-garces/mapnik-trunk | plugins/input/osm/osm_datasource.cpp | C++ | lgpl-2.1 | 5,406 |
<?php
// (c) Copyright 2002-2016 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id: MasterSlaveDispatch.php 57968 2016-03-17 20:06:57Z jon... | lorddavy/TikiWiki-Improvement-Project | lib/core/TikiDb/MasterSlaveDispatch.php | PHP | lgpl-2.1 | 3,672 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LCOV - doc-coverage.info - Cqrs/Domain/Exceptions/DuplicateEventException.cs</title>
<link rel="stylesheet" type="text/css" href="../../../gcov.css">... | Chinchilla-Software-Com/CQRS | wiki/docs/2.3/coverage-report/Cqrs/Domain/Exceptions/DuplicateEventException.cs.gcov.html | HTML | lgpl-2.1 | 8,507 |
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#include <BALL/CONCEPT/classTest.h>
#include <BALLTestConfig.h>
///////////////////////////
#include <BALL/VIEW/KERNEL/representationManager.h>
#include <BALL/VIEW/KERNEL/mainControl.h>
#include <BALL/VIEW/KERNEL/clippingPlane.h>
#include <BALL/VIEW/DIALOGS/disp... | tkemmer/ball | test/RepresentationManager_test.C | C++ | lgpl-2.1 | 7,798 |
/*
Copyright (C) 2008 Torsten Rahn <rahn@kde.org>
This file is part of the KDE project
This library is free software you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation either
version 2 of the License, ... | oberluz/marble | src/lib/geodata/scene/GeoSceneItem.h | C | lgpl-2.1 | 1,856 |
// -*- c++ -*-
//=======================================================================
// Copyright 1997, 1998, 1999, 2000 University of Notre Dame.
// Copyright 2010 Thomas Claveirole
// Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek, Thomas Claveirole
//
// Distributed under the Boost Software License, Ver... | flow123d/dealii | bundled/boost-1.56.0/include/boost/graph/detail/adjacency_list.hpp | C++ | lgpl-2.1 | 108,267 |
var searchData=
[
['narrowing_5ferror',['narrowing_error',['../structgsl_1_1narrowing__error.html',1,'gsl']]],
['not_5fnull',['not_null',['../classgsl_1_1not__null.html',1,'gsl']]],
['null_5fspin_5fpolicy',['null_spin_policy',['../structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1null__spin__policy.html',1,... | FSMaxB/molch | outcome/include/outcome/quickcpplib/doc/html/search/classes_9.js | JavaScript | lgpl-2.1 | 369 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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" co... | cdmdotnet/CQRS | wiki/docs/4.2/html/namespaceCqrs_1_1Ninject_1_1InProcess.html | HTML | lgpl-2.1 | 6,151 |
// ---------------------------------------------------------------------
//
// Copyright (C) 2000 - 2017 by the deal.II authors
//
// This file is part of the deal.II library.
//
// The deal.II library is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Pu... | sairajat/dealii | include/deal.II/lac/solver_minres.h | C | lgpl-2.1 | 10,018 |
/*
Copyright (C) 2009 William Hart
Copyright (C) 2010 Sebastian Pancratz
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1... | fredrik-johansson/flint2 | fmpq_poly/test/t-scalar_div_si.c | C | lgpl-2.1 | 4,124 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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" co... | cdmdotnet/CQRS | wiki/docs/4.1/html/classCqrs_1_1Ninject_1_1Akka_1_1AkkaNinjectDependencyResolver_a08c93ce2f3f66affd8753eb3d3de1211.html | HTML | lgpl-2.1 | 5,749 |
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding ... | enthought/qt-mobility | plugins/multimedia/symbian/mmf/s60mediaserviceplugin.h | C | lgpl-2.1 | 2,686 |
//
// Copyright (C) 2006 SIPez LLC.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$... | sipXtapi/sipXtapi | sipXportLib/include/os/OsServerSocket.h | C | lgpl-2.1 | 3,775 |
package StevenDimDoors.mod_pocketDim.blocks;
import java.util.Random;
import net.minecraft.block.BlockDoor;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.IconFlipped;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.item.Item;
import net.minecraft.u... | CannibalVox/DimDoors | src/main/java/StevenDimDoors/mod_pocketDim/blocks/BlockDoorGold.java | Java | lgpl-2.1 | 1,123 |
package org.skyve.impl.domain.messages;
import org.skyve.domain.messages.DomainException;
public class SecurityException extends DomainException {
/**
* For Serialization
*/
private static final long serialVersionUID = 2941808458696267548L;
public SecurityException(String resource, String userName) {
super(... | skyvers/wildcat | skyve-ext/src/main/java/org/skyve/impl/domain/messages/SecurityException.java | Java | lgpl-2.1 | 377 |
<?php
// (c) Copyright 2002-2012 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id: flagnames.php 39469 2012-01-12 21:13:48Z changi67 $
... | railfuture/tiki-website | img/flags/flagnames.php | PHP | lgpl-2.1 | 7,500 |
/*BHEADER**********************************************************************
* Copyright (c) 2008, Lawrence Livermore National Security, LLC.
* Produced at the Lawrence Livermore National Laboratory.
* This file is part of HYPRE. See file COPYRIGHT for details.
*
* HYPRE is free software; you can redistribute... | jbakosi/HYPRE | src/struct_mv/box.c | C | lgpl-2.1 | 23,750 |
////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2018 the original author or authors.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU ... | jonmbake/checkstyle | src/test/java/com/puppycrawl/tools/checkstyle/checks/design/OneTopLevelClassCheckTest.java | Java | lgpl-2.1 | 7,614 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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" co... | cdmdotnet/CQRS | wiki/docs/4.0/html/classCqrs_1_1Azure_1_1ServiceBus_1_1MessageSerialiser_a9207c867f358e352eee5d3727fe620e4.html | HTML | lgpl-2.1 | 6,442 |
/*
* Copyright (C) 2016 Michael Andersen <m.andersen@cs.berkeley.edu>
*
* This file was based on SEGGER's reference implementation
* which can be found here: https://www.segger.com/jlink-rtt.html
* (c) 2014-2016 SEGGER Microcontroller GmbH & Co. KG
* This implementation bore the following license notes:
********... | MichelRottleuthner/RIOT | sys/rtt_stdio/rtt_stdio.c | C | lgpl-2.1 | 14,455 |
#!/usr/bin/env python
# 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 version.
#
# This program is distributed in the hope that i... | ld3300/ola | python/examples/ola_artnet_params.py | Python | lgpl-2.1 | 1,591 |
<html lang="en">
<head>
<title>H8/300-Addressing - Using as</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Using as">
<meta name="generator" content="makeinfo 4.11">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="H8_002f300-Syntax.html#H8_002f30... | dcuartielles/SmartWatch | build/linux/work/hardware/tools/arm/share/doc/gcc-arm-none-eabi/html/as.html/H8_002f300_002dAddressing.html | HTML | lgpl-2.1 | 4,108 |
/*
* osx-x86-cntsockcode.c
* Copyright 2006 Ramon de Carvalho Valle <ramon@risesecurity.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the Lic... | risesecurity/unixasm | osx-x86-cntsockcode.c | C | lgpl-2.1 | 3,185 |
// This file was generated by qlalr - DO NOT EDIT!
/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Linguist of the Qt Toolkit.
**
** $QT_BEGIN_LICEN... | RLovelett/qt | tools/linguist/shared/qscript.cpp | C++ | lgpl-2.1 | 84,936 |
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that can
// be found in the LICENSE file.
#include "libcef/common/scheme_registrar_impl.h"
#include <string>
#include "libcef/common/content_client.h"
#include "base/bind... | desura/desura-cef3-full | libcef/common/scheme_registrar_impl.cc | C++ | lgpl-2.1 | 1,711 |
<!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... | Chinchilla-Software-Com/CQRS | wiki/docs/2.1/html/classCqrs_1_1WebApi_1_1SignalR_1_1Hubs_1_1NotificationHub.html | HTML | lgpl-2.1 | 18,233 |
#include "archive.hh"
#include "binary-cache-store.hh"
#include "compression.hh"
#include "derivations.hh"
#include "fs-accessor.hh"
#include "globals.hh"
#include "nar-info.hh"
#include "sync.hh"
#include "remote-fs-accessor.hh"
#include "nar-info-disk-cache.hh"
#include "nar-accessor.hh"
#include "json.hh"
#include "... | ehmry/nix | src/libstore/binary-cache-store.cc | C++ | lgpl-2.1 | 13,452 |
/*
Copyright (C) 2013 Mike Hansen
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) an... | dsroche/flint2 | fq_nmod_poly/scalar_mul_fq.c | C | lgpl-2.1 | 538 |
/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees ... | RLovelett/qt | src/gui/graphicsview/qgraphicslayout_p.h | C | lgpl-2.1 | 3,523 |