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 |
|---|---|---|---|---|---|
/*
IGraph library.
Copyright (C) 2021 The igraph development team <igraph@igraph.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your o... | igraph/igraph | tests/unit/igraph_neighborhood_size.c | C | gpl-2.0 | 3,528 |
/*
* linux/mm/vmscan.c
*
* Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
*
* Swap reorganised 29.12.95, Stephen Tweedie.
* kswapd added: 7.1.96 sct
* Removed kswapd_ctl limits, and swap out as many pages as needed
* to bring the system back to freepages.high: 2.4.97, Rik van Riel.
* Zone aware k... | philenotfound/belkin-wemo-linux-2.6.21.x | mm/vmscan.c | C | gpl-2.0 | 48,319 |
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2017 - ROLI Ltd.
JUCE is an open source library subject to commercial or open-source
licensing.
The code included in this file is provided under the terms o... | liamlacey/Shuttertone | JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp | C++ | gpl-2.0 | 7,049 |
/* Install given floating-point environment and raise exceptions.
Copyright (C) 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by David Huggins-Daines <dhd@debian.org>, 2000
The GNU C Library is free software; you can redistribute it and/or
modify it under the te... | ystk/debian-eglibc | ports/sysdeps/hppa/fpu/feupdateenv.c | C | gpl-2.0 | 1,504 |
# (c) 2017 - Copyright Red Hat Inc
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; with... | release-monitoring/anitya | anitya/tests/test_alembic.py | Python | gpl-2.0 | 1,640 |
import pybedtools
import os
testdir = os.path.dirname(__file__)
test_tempdir = os.path.join(os.path.abspath(testdir), 'tmp')
unwriteable = os.path.join(os.path.abspath(testdir), 'unwriteable')
def setup():
if not os.path.exists(test_tempdir):
os.system('mkdir -p %s' % test_tempdir)
pybedtools.set_temp... | jos4uke/getSeqFlankBlatHit | lib/python2.7/site-packages/pybedtools/test/tfuncs.py | Python | gpl-2.0 | 462 |
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000-2006 Donald N. Allingham
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at you... | Forage/Gramps | gramps/gui/widgets/linkbox.py | Python | gpl-2.0 | 1,754 |
/*
Copyright_License {
Top Hat Soaring Glide Computer - http://www.tophatsoaring.org/
Copyright (C) 2000-2016 The Top Hat Soaring Project
A detailed list of copyright holders can be found in the file "AUTHORS".
This program is free software; you can redistribute it and/or
modify it under the terms of the GN... | rdunning0823/tophat | src/Computer/ConditionMonitor/ConditionMonitors.cpp | C++ | gpl-2.0 | 1,954 |
/*
* Automatically generated C config: don't edit
* Linux/arm 3.0.36 Kernel Configuration
*/
#define CONFIG_RING_BUFFER 1
#define CONFIG_NF_CONNTRACK_H323 1
#define CONFIG_SCSI_DMA 1
#define CONFIG_SND_RK29_SOC_I2S 1
#define CONFIG_RTC_DRV_WM831X 1
#define CONFIG_INPUT_KEYBOARD 1
#define CONFIG_RFS_ACCEL 1
#define C... | EPDCenter/android_kernel_archos_80_titan | include/generated/autoconf.h | C | gpl-2.0 | 29,490 |
/*
* AAC decoder data
* Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
* Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov gmail com )
*
* This file is part of Libav.
*
* Libav is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* ... | heiher/gst-ffmpeg | gst-libs/ext/libav/libavcodec/aacdectab.h | C | gpl-2.0 | 3,227 |
template <typename Item>
void mergesort(Item a[], int l, int r)
{
if (r <= 1) return ;
int m = (r+1)/2;
mergesort(a, l, m);
mergesort(a, m+1, r);
merge(a, l, m, r);
}
| flow-J/Exercise | garbage/Algorithm_in_c++/test8.3.cpp | C++ | gpl-2.0 | 187 |
/* This file is part of the KDE project
Copyright (C) 2002 Carsten Pfeiffer <pfeiffer@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation, version 2.
This program is distributed i... | iegor/kdegraphics | kmrml/kmrml/lib/mrml_utils.cpp | C++ | gpl-2.0 | 2,481 |
# -*- coding: utf-8 -*-
## This file is part of Invenio.
## Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010, 2011 CERN.
##
## Invenio 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... | labordoc/labordoc-next | modules/bibrank/lib/bibrank_tag_based_indexer_unit_tests.py | Python | gpl-2.0 | 1,743 |
<?php
/*
+--------------------------------------------------------------------+
| CiviCRM version 4.7 |
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC (c) 2004-2015 |
+---------------------... | alfonsom/ccdrupal | sites/all/modules/civicrm/CRM/Event/Import/Controller.php | PHP | gpl-2.0 | 2,507 |
---
layout: post
title: For Rusty - 1988 - 2004
author: Chris Metcalf
date: 2004/04/21
slug: for-rusty-1988-2004
category:
tags: [ dogs, family, me ]
---
Today we had to say goodbye to a loyal friend.
<img src="/images/posts/rusty.jpg" alt="an old friend" />
Today we had to put one of our family's favorite pets to... | chrismetcalf/chrismetcalf.net | _posts/2004-04-21-for-rusty-1988-2004.md | Markdown | gpl-2.0 | 622 |
/*
protocol_subnet.c -- handle the meta-protocol, subnets
Copyright (C) 1999-2005 Ivo Timmermans,
2000-2012 Guus Sliepen <guus@tinc-vpn.org>
2009 Michael Tokarev <mjt@tls.msk.ru>
This program is free software; you can redistribute it and/or modify
it under the t... | jed1/tinc | src/protocol_subnet.c | C | gpl-2.0 | 6,984 |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <assert.h>
#include <exception>
// System.Reflection.Emit.ModuleBuilder
struct ModuleBuilder_t973;
// System.Object
struct Object_t;
// System.Type[]
struct TypeU5BU5D_t194;
... | Soufien/unityIntoIOSSample | SampleProject/il2cpp_output/mscorlib_System_Reflection_Emit_ModuleBuilderMethodDeclarations.h | C | gpl-2.0 | 2,210 |
<?php
/**
* LICENSE: Anahita is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyr... | pah861/hawkconnect2 | components/com_base/templates/helpers/module.php | PHP | gpl-2.0 | 3,737 |
<?php
/**
* @version $Id: legacy.php 10066 2008-02-26 04:20:57Z ian $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public Lice... | google-code/administradora-beraca | plugins/system/legacy.php | PHP | gpl-2.0 | 13,245 |
def spaceship_building(cans):
total_cans = 0
for week in range(1,53):
total_cans = total_cans + cans
print('Week %s = %s cans' % (week, total_cans))
spaceship_building(2)
spaceship_building(13) | erikdejonge/python_for_kids | chapter07/spaceship_building.py | Python | gpl-2.0 | 227 |
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2015-12-24 15:28
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('emailer', '0007_auto_20150509_1922'),
]
operations = [
migrations.AlterField(
... | JustinWingChungHui/okKindred | emailer/migrations/0008_auto_20151224_1528.py | Python | gpl-2.0 | 467 |
<html>
<head>
<title>Stożek</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="../books.css" />
</head>
<body align="left">
<h1>Stożek</h1>
<center><img src="../images/cone.png" /></center>
<br />
<div align="left">
... | biluna/biluna | thrd/speedcrunch-0.10.1/src/books/pl/cone.html | HTML | gpl-2.0 | 638 |
/*
* rev-parse.c
*
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"
#include "commit.h"
#include "refs.h"
#include "quote.h"
#include "builtin.h"
#include "parse-options.h"
#include "diff.h"
#include "revision.h"
#include "split-index.h"
#define DO_REVS 1
#define DO_NOREV 2
#define DO_FLAGS 4
#define DO... | sunny256/git | builtin/rev-parse.c | C | gpl-2.0 | 20,118 |
/*
* Copyright (C) 2011 Peter Grasch <peter.grasch@bedahr.org>
* Copyright (C) 2012 Vladislav Sitalo <root@stvad.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* or (at your option) any later version, as pub... | photom/simon | simonlib/simonrecognizer/juliusrecognizer.h | C | gpl-2.0 | 1,542 |
#pragma once
#include <OpenEXR/ImathVec.h>
#include <string>
struct RenderSettings
{
// maximum path length allowed in the path tracer (1 = direct
// illumination only).
int m_pathtracerMaxNumBounces;
// Max number of accumulated samples before the render finishes
int m_pathtracerMaxSamples;
// rendere... | joesfer/voxelToy | src/renderer/renderSettings.h | C | gpl-2.0 | 752 |
/* $Id: VBoxGuest-win.cpp $ */
/** @file
* VBoxGuest - Windows specifics.
*/
/*
* Copyright (C) 2010-2015 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under ... | sobomax/virtualbox_64bit_edd | src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.cpp | C++ | gpl-2.0 | 52,418 |
#Credits for the Assets Used.
Please give credit to the respected authors for any assets used or redistributed. If you see any incorrect Copyright information below please file an [issue report](https://github.com/tsteinholz/SpaceShooter/issues) and any problems will be resolved as quickly as possible.
##Fonts
| Font ... | tsteinholz/SpaceShooter | core/assets/README.md | Markdown | gpl-2.0 | 1,574 |
#ifndef DATTO_CLIENT_DEVICE_SYNCHRONIZER_DEVICE_SYNCHRONIZER_INTERFACE_H_
#define DATTO_CLIENT_DEVICE_SYNCHRONIZER_DEVICE_SYNCHRONIZER_INTERFACE_H_
#include <memory>
#include "backup/backup_coordinator.h"
#include "backup_status_tracker/sync_count_handler.h"
#include "block_device/block_device.h"
#include "block_devi... | fuhry/linux-agent | device_synchronizer/device_synchronizer_interface.h | C | gpl-2.0 | 1,404 |
/*
* INET An implementation of the TCP/IP protocol suite for the LINUX
* operating system. INET is implemented using the BSD Socket
* interface as the means of communication with the user level.
*
* Definitions for the AF_INET socket handler.
*
* Version: @(#)sock.h 1.0.4 05/13/93
*
* Authors: Ross Biro
... | waterice/Test-Git | include/net/sock.h | C | gpl-2.0 | 37,810 |
/***********************************************************************************
* Smooth Tasks
* Copyright (C) 2009 Mathias Panzenböck <grosser.meister.morti@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 th... | Nuk9/smooth-task-next | applet/SmoothTasks/FixedItemCountTaskbarLayout.cpp | C++ | gpl-2.0 | 3,155 |
#ifndef _HEAD_HACK_CLIENT
#define _HEAD_HACK_CLIENT
#define SOCKET_SEND_MAXLEN 1024
int init_client_connect();
int handle_send(int sock_fd, const char *msg);
#endif
| rexrock/HackShell | include/hack_client.h | C | gpl-2.0 | 167 |
'use strict';
var env = process.env.NODE_ENV || 'development',
config = require('./config'),
B = require('bluebird'),
_ = require('underscore'),
L = require('./logger'),
S = require('underscore.string'),
nodemailer = require('nodemailer'),
smtpTransport = require('nodemailer-smtp-pool');
va... | zamamohammed/health-check | mailer.js | JavaScript | gpl-2.0 | 643 |
/* Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the ho... | gdyuldin/huawei_u8850_kernel_ics | arch/arm/mach-msm/board-msm7x30.c | C | gpl-2.0 | 281,833 |
import MySQLdb
class DatabaseHandler:
def __init__(self):
pass
def is_delete(self, tableName):
reservedTableNameList = ["mantis_user_table", "mantis_tokens_table", "mantis_config_table"]
isDeleteFlag = 1
for name in reservedTableNameList:
isIdentical = cmp(tab... | ezScrum/ezScrum | robotTesting/keywords/lib/DatabaseHandler.py | Python | gpl-2.0 | 1,547 |
#!/usr/bin/ruby
require File.expand_path(ENV['MOSYNCDIR']+'/rules/mosync_exe.rb')
work = PipeExeWork.new
work.instance_eval do
@SOURCES = ["."]
@LIBRARIES = ["mautil"]
@NAME = "Stylus"
end
work.invoke
| tybor/MoSync | examples/cpp/Moblet/Stylus/workfile.rb | Ruby | gpl-2.0 | 207 |
/***********************************************************************************
* *
* Voreen - The Volume Rendering Engine *
* ... | bilgili/Voreen | modules/itk_generated/processors/itk_RegionGrowing/isolatedconnectedimagefilter.cpp | C++ | gpl-2.0 | 8,330 |
<!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.4.2_06) on Wed Dec 28 15:03:50 CET 2005 -->
<TITLE>
SimpleTextGUI01
</TITLE>
<META NAME="keywords" CONTENT="jmatlink.ui.SimpleTextGUI01 class">... | Olshansk/PLSNPAIRS-Thesis | extern/jMatLink/doc/javadoc/jmatlink/ui/SimpleTextGUI01.html | HTML | gpl-2.0 | 9,738 |
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
systemd 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... | freedesktop-unofficial-mirror/systemd__systemd-stable | src/core/namespace.c | C | gpl-2.0 | 7,610 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Function template operator++</title>
<link rel="stylesheet" href="boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="index.html" title="ODTONE 0.6">
<link rel... | phra/802_21 | myODTONE/doc/html/operator__.html | HTML | gpl-2.0 | 3,929 |
/*
* Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | netroby/hotspot9 | test/compiler/codecache/jmx/BeanTypeTest.java | Java | gpl-2.0 | 1,948 |
#include "EOSProjectData.h"
EOSProjectData::EOSProjectData()
{
}
EOSProjectData::~EOSProjectData()
{
}
| eranif/codelite | EOSWiki/EOSProjectData.cpp | C++ | gpl-2.0 | 106 |
/**
* TODO: legal stuff
*
* purple
*
* Purple is the legal property of its developers, whose names are too numerous
* to list here. Please refer to the COPYRIGHT file distributed with this
* source distribution.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of ... | dmoonfire/prpltwtr-old | src/prpltwtr/prpltwtr_auth.c | C | gpl-2.0 | 18,305 |
/*
* Definitions for akm8975 compass chip.
*/
#ifndef AKM8975_H
#define AKM8975_H
#include <linux/ioctl.h>
#define AKM8975_I2C_NAME "akm8975"
/*! \name AK8975 operation mode
\anchor AK8975_Mode
Defines an operation mode of the AK8975.*/
/*! @{*/
#define AK8975_MODE_SNG_MEASURE 0x01
#define AK8975_MODE_SELF_TEST ... | rcunningham12/L38C-Dynamic-Kernel | include/linux/akm8975.h | C | gpl-2.0 | 3,667 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Swift Kanban Webinar Series</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="robots" content="noindex,nofollow"/>
</head>
<... | xenten/swift-kanban | emailer/masa_kanban_beyond_IT_and_software/invitation_email.html | HTML | gpl-2.0 | 9,227 |
/*
* Copyright 2002-2011 the original author or authors.
*
* 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 ap... | deathspeeder/class-guard | spring-framework-3.2.x/spring-context/src/main/java/org/springframework/cache/interceptor/CacheInterceptor.java | Java | gpl-2.0 | 2,142 |
/*******************************************************************************
* This file is part of OpenNMS(R).
*
* Copyright (C) 2006-2011 The OpenNMS Group, Inc.
* OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc.
*
* OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.
*
* OpenNMS(... | tharindum/opennms_dashboard | opennms-services/src/main/java/org/opennms/protocols/jmx/connectors/ConnectionWrapper.java | Java | gpl-2.0 | 1,879 |
/* $Id: UIMachineDefs.h $ */
/** @file
* VBox Qt GUI - Defines for Virtual Machine classes.
*/
/*
* Copyright (C) 2010-2012 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/o... | sobomax/virtualbox_64bit_edd | src/VBox/Frontends/VirtualBox/src/runtime/UIMachineDefs.h | C | gpl-2.0 | 2,072 |
/*
* net/dccp/ipv4.c
*
* An implementation of the DCCP protocol
* Arnaldo Carvalho de Melo <acme@conectiva.com.br>
*
* 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
* ... | xiandaicxsj/copyKvm | net/dccp/ipv4.c | C | gpl-2.0 | 28,989 |
#ifndef __TYPES_V7__
#define __TYPES_V7__
#if defined(_WIN32) && defined(_MSC_VER)
# define ALIGN_PREFIX(bytes) __declspec(align(bytes))
# define ALIGN_POSTFIX(bytes)
# define FUNC_DEF_INLINE __inline
# define FUNC_DEF_EXTERN_INLINE extern __inline
#elif defined(__GNUC__)
# define ALIGN_PREFIX(bytes)
# define ALIG... | riffmasterv7/Projects | UberTest/src/types_v7.h | C | gpl-2.0 | 1,456 |
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 1999 - 2008, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the... | Evangileon/asterisk | main/pbx.c | C | gpl-2.0 | 337,861 |
/*jshint strict: false */
/*global chrome */
var merge = require('./merge');
exports.extend = require('pouchdb-extend');
exports.ajax = require('./deps/ajax');
exports.createBlob = require('./deps/blob');
exports.uuid = require('./deps/uuid');
exports.getArguments = require('argsarray');
var buffer = require('./deps/bu... | mrded/wikijob | www/lib/pouchdb/lib/utils.js | JavaScript | gpl-2.0 | 16,505 |
/**
* OWASP Benchmark Project v1.2beta
*
* This file is part of the Open Web Application Security Project (OWASP)
* Benchmark Project. For details, please see
* <a href="https://www.owasp.org/index.php/Benchmark">https://www.owasp.org/index.php/Benchmark</a>.
*
* The OWASP Benchmark is free software: you can redistribu... | marylinh/Benchmark | src/main/java/org/owasp/benchmark/testcode/BenchmarkTest01168.java | Java | gpl-2.0 | 4,339 |
# axios
[](https://www.npmjs.org/package/axios)
[](https://travis-ci.org/mzabriskie/axios)
[ 2016-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C 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 t... | ctyler/spo600-glibc | malloc/tst-interpose-aux.c | C | gpl-2.0 | 6,803 |
/*
Copyright (C) SYSTAP, LLC 2006-2015. All rights reserved.
Contact:
SYSTAP, LLC
2501 Calvert ST NW #106
Washington, DC 20008
licenses@systap.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
... | smalyshev/blazegraph | bigdata/src/test/com/bigdata/relation/accesspath/TestUnsynchronizedUnboundedChunkBuffer.java | Java | gpl-2.0 | 4,863 |
/*******************************************************************************
* Copyright (C) 2011 - 2015 Yoav Artzi, All rights reserved.
* <p>
* 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
* Found... | ayuzhanin/cornell-spf-scala | src/main/java/edu/cornell/cs/nlp/spf/parser/ccg/rules/coordination/C2Rule.java | Java | gpl-2.0 | 3,328 |
<?php
// https://raw.github.com/facebook/php-sdk/master/src/facebook.php
// modified
// Facebook PHP SDK (v.3.1.1)
/**
* Copyright 2011 Facebook, Inc.
*
* 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 ... | rijojoy/MyIceBerg | mod/elgg_social_login/vendors/hybridauth/Hybrid_plugin/thirdparty/Facebook/facebook.php | PHP | gpl-2.0 | 2,964 |
/*
* linux/fs/ext4/super.c
*
* Copyright (C) 1992, 1993, 1994, 1995
* Remy Card (card@masi.ibp.fr)
* Laboratoire MASI - Institut Blaise Pascal
* Universite Pierre et Marie Curie (Paris VI)
*
* from
*
* linux/fs/minix/inode.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*
* Big-endian to little-endian... | rkharwar/ubuntu-saucy-powerpc | fs/ext4/super.c | C | gpl-2.0 | 158,220 |
/* 32-bit ELF support for S+core.
Copyright (C) 2006-2017 Free Software Foundation, Inc.
Contributed by
Brain.lin (brain.lin@sunplusct.com)
Mei Ligang (ligang@sunnorth.com.cn)
Pei-Lin Tsai (pltsai@sunplus.com)
This file is part of BFD, the Binary File Descriptor library.
This program is free soft... | totalspectrum/binutils-propeller | bfd/elf32-score.c | C | gpl-2.0 | 157,881 |
/****************************************************************************************************************
Default styles for the WYSIWYG editor
Adding style-editor.css to a child theme's root will over-write these styles.
************************************************************************************... | WebDevStudios/StartBox | includes/styles/editor.css | CSS | gpl-2.0 | 2,312 |
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#pragma once
#if !defined(RXCPP_OPERATORS_RX_SEQUENCE_EQUAL_HPP)
#define RXCPP_OPERATORS_RX_SEQUENCE_EQUAL_HPP
#include "../rx-includes.hpp"
namespace rxcpp {
namespace operators {
... | drazenzadravec/nequeo | Tools/Linq/cpp/RX/v2/rxcpp/operators/rx-sequence_equal.hpp | C++ | gpl-2.0 | 8,921 |
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy... | tonio-44/tikflak | shop/js/mage/adminhtml/tabs.js | JavaScript | gpl-2.0 | 9,985 |
/*
* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2011-2015 ArkCORE <http://www.arkania.net/>
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public Licens... | sunshitwowsucks/ArkCORE-NG | src/server/shared/Database/QueryResult.cpp | C++ | gpl-2.0 | 6,901 |
/* gsm_map_summary.c
* Routines for GSM MAP Statictics summary window
*
* Copyright 2004, Michael Lum <mlum [AT] telostech.com>
* In association with Telos Technology Inc.
*
* Modified from summary_dlg.c
*
* $Id: gsm_map_summary.c 48448 2013-03-21 02:58:59Z wmeier $
*
* Wireshark - Network traffic analyzer
*... | P1sec/LTE_monitor_c2xx | wireshark/ui/gtk/gsm_map_summary.c | C | gpl-2.0 | 12,651 |
#include <linux/types.h>
#include <linux/proc_fs.h>
#include <asm/setup.h>
#include <linux/pagemap.h>
struct st_read_proc {
char *name;
int (*read_proc)(char *, char **, off_t, int, int *, void *);
};
extern unsigned int get_pd_charge_flag(void);
extern unsigned int get_boot_into_recovery_flag(void);
extern unsigne... | Wonfee/huawei_u9508_kernel | fs/proc/app_info.c | C | gpl-2.0 | 1,527 |
obj-y := version_balong.o
obj-y += sysfs_version.o
| gabry3795/android_kernel_huawei_mt7_l09 | drivers/hisi/modem_hi3xxx/drv/version/Makefile | Makefile | gpl-2.0 | 60 |
Template.reassign_modal.helpers({
fields: function() {
var userOptions = null;
var showOrg = true;
var instance = WorkflowManager.getInstance();
var space = db.spaces.findOne(instance.space);
var flow = db.flows.findOne({
'_id': instance.flow
});
var curSpaceUser = db.space_users.findOne({
s... | steedos/apps | packages/steedos-workflow/client/views/instance/reassign_modal.js | JavaScript | gpl-2.0 | 2,218 |
<html lang="en">
<head>
<title>Meta Options - Using as</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Using as">
<meta name="generator" content="makeinfo 4.8">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Meta_002dDependent.html#Meta_002dDepen... | jocelynmass/nrf51 | toolchain/deprecated/arm_cm0_4.9/share/doc/gcc-arm-none-eabi/html/as.html/Meta-Options.html | HTML | gpl-2.0 | 2,767 |
#ifndef _PLOT_H_
#define _PLOT_H_ 1
#include <qwt_plot.h>
class RectItem;
class QwtInterval;
class Plot: public QwtPlot
{
Q_OBJECT
public:
Plot( QWidget *parent, const QwtInterval & );
virtual void updateLayout();
void setRectOfInterest( const QRectF & );
Q_SIGNALS:
void res... | iclosure/jdataanalyse | source/core/3rdpart/qwt/playground/rescaler/plot.h | C | gpl-2.0 | 422 |
#pragma checksum "C:\Users\INDIA\Desktop\SpeechKit-WP7-1.4.0\SampleVoiceApp\hotel.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "06F22895AB29E6AF87DE067810A1DD2E"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// R... | chahalarora/R.S.C-WindowsPhone | Speak My Voice/obj/Debug/hotel.g.i.cs | C# | gpl-2.0 | 5,165 |
<?php
namespace Kbize\Sdk\Response;
class ProjectAndBoards
{
/**
*
* {
* "projects":[
* {"name":"Project","id":"1","boards":[
* {"name":"Service\/Merchant Integrations","id":"4"},
* {"name":"Tech Operations","id":"3"},
* {"name":"Main development","id":"2"... | silvadanilo/kbize | test/unit/Kbize/Sdk/Response/ProjectAndBoards.php | PHP | gpl-2.0 | 1,183 |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); yo... | skyHALud/codenameone | Ports/iOSPort/xmlvm/apache-harmony-6.0-src-r991881/classlib/modules/sql/src/main/java/java/sql/SQLTransactionRollbackException.java | Java | gpl-2.0 | 5,553 |
#!/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. See http://www.gnu.org/copyleft/gpl.html for
# ... | abn/python-bugzilla | examples/query.py | Python | gpl-2.0 | 3,441 |
/* Initialize
*/
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: fun... | BellarmineBTDesigns/mashariki | wp-content/themes/pinnacle/assets/js/kt_main.js | JavaScript | gpl-2.0 | 9,445 |
<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta charset="US-ASCII">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ASN.1 JavaScript decoder</title>
<link rel="stylesheet" href="ASN.1%20JavaScript%20decoder_files/index.css" type... | vjeantet/goldap | doc/asn1js/ASN.1 JavaScript decoder.html | HTML | gpl-2.0 | 5,603 |
<?php
/**
* sh404SEF - SEO extension for Joomla!
*
* @author Yannick Gaultier
* @copyright (c) Yannick Gaultier 2014
* @package sh404SEF
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @version 4.4.0.1725
* @date 2014-04-09
*/
// Security check to ensure this file is ... | LarsMog/elesbjerg.dk | administrator/components/com_sh404sef/views/analytics/tmpl/default_j2_sources.php | PHP | gpl-2.0 | 1,165 |
using System.IO;
using Nequeo.Cryptography.Key.Utilities.IO;
namespace Nequeo.Cryptography.Key.Asn1
{
public class BerGenerator
: Asn1Generator
{
private bool _tagged = false;
private bool _isExplicit;
private int _tagNo;
protected BerGe... | drazenzadravec/nequeo | Source/Components/Cryptography/Nequeo.Cryptography/Nequeo.Cryptography.Key/asn1/BERGenerator.cs | C# | gpl-2.0 | 2,356 |
/* GStreamer
* Copyright (C) <2009> Руслан Ижбулатов <lrn1986 _at_ gmail _dot_ com>
*
* 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 you... | freedesktop-unofficial-mirror/gstreamer-sdk__gst-plugins-bad | gst/videomeasure/gstvideomeasure.c | C | gpl-2.0 | 2,378 |
<div class="wrap shopp">
<div class="icon32"></div>
<?php
shopp_admin_screen_tabs();
do_action('shopp_admin_notices');
?>
<?php if (count(shopp_setting('target_markets')) == 0) echo '<div class="error"><p>'.__('No target markets have been selected in your store setup.','Shopp').'</p></div>'; ?>
<?php $thi... | sharpmachine/greaterworkshealing.com | wp-content/plugins/shopp/core/ui/settings/taxrates.php | PHP | gpl-2.0 | 10,968 |
/******************************************************************************/
/* Mednafen Fast SNES Emulation Module */
/******************************************************************************/
/* input.cpp:
** Copyright (C) 2015-2019 Mednafen Team
**
** This program is... | libretro-mirrors/mednafen-git | src/snes_faust/input.cpp | C++ | gpl-2.0 | 11,450 |
/*
* CDE - Common Desktop Environment
*
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; ei... | sTeeLM/MINIME | toolkit/srpm/SOURCES/cde-2.2.4/lib/DtWidget/EditAreaData.c | C | gpl-2.0 | 49,947 |
#pragma once
/*
* Copyright (C) 2005-2015 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*... | hackthis02/xbmc | xbmc/messaging/ThreadMessage.h | C | gpl-2.0 | 3,352 |
<!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... | helloiloveit/VkxPhoneProject | submodules/build-i386-apple-darwin/linphone/oRTP/doc/html/dir_12068a0eb9ea07e5ea5c12c7c6d7e94f.html | HTML | gpl-2.0 | 11,345 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title></title>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta name="generator" content="Doxygen 1.8.3.1">
<link rel="stylesheet" type="text/css" href="search... | vertexclique/travertine | qwt/doc/html/search/enumvalues_6a.html | HTML | gpl-2.0 | 1,021 |
<?php
class woocsvImport
{
public $importLog;
public $options;
public $header;
public $message;
public $options_default = array (
'seperator'=>',',
'skipfirstline'=>1,
'upload_dir' => '/csvimport/',
'blocksize' => 1,
'language' => 'EN',
'add_to_gallery' => 1,
'merge_products'=>1,
'add_to_ca... | ilfungo/bts | wp-content/plugins/woocommerce-csvimport/include/class-woocsv-csvimport.php | PHP | gpl-2.0 | 3,360 |
########################## NOTES ###############################################
# This files goal is to take CMake options found in kokkos_options.cmake but
# possibly set from elsewhere
# (see: trilinos/cmake/ProjectCOmpilerPostConfig.cmake)
# using CMake idioms and map them onto the KOKKOS_SETTINGS variables th... | aurix/lammps-induced-dipole-polarization-pair-style | lib/kokkos/cmake/kokkos_settings.cmake | CMake | gpl-2.0 | 8,373 |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Form\Tests\Extension\Core\Type;
use Symfony\Component... | kikutou/rentalmotor | vendor/symfony/form/Tests/Extension/Core/Type/DateTypeTest.php | PHP | gpl-2.0 | 29,797 |
/*
* CCITT Fax Group 3 and 4 decompression
* Copyright (c) 2008 Konstantin Shishkov
*
* This file is part of Libav.
*
* Libav 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.... | heiher/gst-ffmpeg | gst-libs/ext/libav/libavcodec/faxcompr.h | C | gpl-2.0 | 1,416 |
module Katello
module UINotifications
module Subscriptions
class SCADisableSuccess < UINotifications::AbstractNotification
private
def blueprint
@blueprint ||= NotificationBlueprint.find_by(name: 'sca_disable_success')
end
end
end
end
end
| snagoor/katello | app/services/katello/ui_notifications/subscriptions/sca_disable_success.rb | Ruby | gpl-2.0 | 298 |
<?php
namespace TYPO3\CMS\Workspaces\Controller;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license... | liayn/TYPO3.CMS | typo3/sysext/workspaces/Classes/Controller/ReviewController.php | PHP | gpl-2.0 | 15,544 |
/* Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the... | DC07/android_kernel_lge_dory | drivers/video/msm/mdss/mdss_dsi.h | C | gpl-2.0 | 11,076 |
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.Diagnostics;
using System.Windows.Forms;
using System.ComponentModel;
namespace Lcc.Entrada.Articulos
{
public partial class DetalleComprobante : ControlSeleccionElemento
{
protected bo... | lazarogestion/lazaro | Lcc/Entrada/Articulos/DetalleComprobante.cs | C# | gpl-2.0 | 47,695 |
#myGallery, #myGallerySet, #flickrGallery
{
width: 520px;
height: 300px;
z-index:5;
margin-bottom: 20px;
}
.jdGallery a
{
outline:0;
}
#flickrGallery
{
width: 500px;
height: 334px;
}
#myGallery img.thumbnail, #myGallerySet img.thumbnail
{
display: none;
}
.jdGallery
{
overflow: ... | Quartermain/viettrungtravel_wordpress | wp-content/themes/Innox/jdgallery/jd.gallery.css | CSS | gpl-2.0 | 6,296 |
#include <stdio.h>
#include <l4/sys/kdebug.h>
void fork_to_background(void);
void fork_to_background(void)
{
printf("unimplemented: %s\n", __func__);
enter_kdebug();
}
| MicroTrustRepos/microkernel | src/l4/pkg/ankh/examples/wget/l4re_helpers.c | C | gpl-2.0 | 171 |
{{tpl:extends parent="__layout.html"}}
<tpl:Block name="head-title">
<title>{{tpl:lang Categories Page}} - {{tpl:BlogName encode_html="1"}}</title>
</tpl:Block>
<tpl:Block name="meta-robots">
<meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
</tpl:Block>
<tpl:Block name="dc-entry">
<meta name="dc.title" ... | nikrou/related | default-templates/dotty/external.html | HTML | gpl-2.0 | 1,649 |
/*
* mm/page-writeback.c
*
* Copyright (C) 2002, Linus Torvalds.
* Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
*
* Contains functions related to writing back dirty pages at the
* address_space level.
*
* 10Apr2002 Andrew Morton
* Initial version
*/
#include <linux/kernel.h>
#incl... | andrewwrightt/kernel_moto_shamu | mm/page-writeback.c | C | gpl-2.0 | 76,843 |
<?php
/**
* Чистый Шаблон для разработки
* Шаблон вывода поста
* http://dontforget.pro
* @package WordPress
* @subpackage clean
*/
get_header(); // Подключаем хедер?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); // Начало цикла ?>
<h1><?php the_title(); // Заголовок ?></h1>
<?php the_content();... | lexus65/yummy.loc | wp-content/themes/yummy-theme/single.php | PHP | gpl-2.0 | 1,240 |
/*
* This file is part of wl1271
*
* Copyright (C) 2008-2010 Nokia Corporation
*
* Contact: Luciano Coelho <luciano.coelho@nokia.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Fo... | TouchpadCM/compat-wireless-3.4-rc3-1 | drivers/net/wireless/wl12xx/main.c | C | gpl-2.0 | 147,286 |
/*
* CDE - Common Desktop Environment
*
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; ei... | sTeeLM/MINIME | toolkit/srpm/SOURCES/cde-2.2.4/lib/DtSvc/DtEncap/Symbolic.c | C | gpl-2.0 | 14,105 |
/*
* Copyright (C) 2011-2014 MediaTek Inc.
*
* This program is free software: you can redistribute it and/or modify it under the terms of the
* GNU General Public License version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;... | bq/aquaris-M4.5 | drivers/misc/mediatek/connectivity/wlan/gen2/os/linux/gl_init.c | C | gpl-2.0 | 114,508 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.