repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
nwjs/chromium.src
third_party/blink/web_tests/external/wpt/service-workers/service-worker/webvtt-cross-origin.https.html
7155
<!DOCTYPE html> <meta charset="utf-8"> <title>cross-origin webvtt returned by service worker is detected</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/get-host-info.sub.js"></script> <script src="resources/test-helpers.sub.js?pipe=...
bsd-3-clause
heroes9898/libtheoraplayer
theoraplayer/src/YUV/libyuv/yuv_libyuv.h
676
/************************************************************************************ This source file is part of the Theora Video Playback Library For latest info, see http://libtheoraplayer.googlecode.com ************************************************************************************* Copyright (c) 2008-2014 Kre...
bsd-3-clause
js0701/chromium-crosswalk
third_party/WebKit/LayoutTests/storage/indexeddb/removed.html
185
<html> <head> <script src="../../resources/js-test.js"></script> <script src="resources/shared.js"></script> </head> <body> <script src="resources/removed.js"></script> </body> </html>
bsd-3-clause
maxdjohnson/node-re2
vendor/re2/re2/testing/regexp_test.cc
2165
// Copyright 2006 The RE2 Authors. All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Test parse.cc, dump.cc, and tostring.cc. #include <string> #include <vector> #include "util/test.h" #include "re2/regexp.h" namespace re2 { // Test that...
mit
groundcall/jobeet
vendor/Zend/Log/Filter/Priority.php
2942
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
mit
ccclayton/DataWar
static/js/threejs.r70/src/loaders/XHRLoader.js
1408
/** * @author mrdoob / http://mrdoob.com/ */ THREE.XHRLoader = function ( manager ) { this.cache = new THREE.Cache(); this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager; }; THREE.XHRLoader.prototype = { constructor: THREE.XHRLoader, load: function ( url, onLoad, onProgress, onE...
mit
cdnjs/cdnjs
ajax/libs/tsparticles/1.16.0-alpha.5/Options/Interfaces/Particles/Noise/INoise.d.ts
289
import type { INoiseFactor } from "./INoiseFactor"; import type { IOptionLoader } from "../../IOptionLoader"; import type { INoiseDelay } from "./INoiseDelay"; export interface INoise extends IOptionLoader<INoise> { delay: INoiseDelay; enable: boolean; factor: INoiseFactor; }
mit
MetSystem/fastsocket
kernel/drivers/ata/pata_marvell.c
4476
/* * Marvell PATA driver. * * For the moment we drive the PATA port in legacy mode. That * isn't making full use of the device functionality but it is * easy to get working. * * (c) 2006 Red Hat */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/pci.h> #include <linux/init.h> #include <linu...
gpl-2.0
SVoxel/R7800
git_home/samba.git/buildtools/scripts/abi_gen.sh
491
#!/bin/sh # generate a set of ABI signatures from a shared library SHAREDLIB="$1" GDBSCRIPT="gdb_syms.$$" ( cat <<EOF set height 0 set width 0 EOF nm "$SHAREDLIB" | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | egrep -v ' (__bss_start|_edata|_init|_fini|_end)' | cut -c3- | sort | while read s; do echo "echo...
gpl-2.0
SanDisk-Open-Source/SSD_Dashboard
uefi/gcc/gcc-4.6.3/libstdc++-v3/testsuite/22_locale/money_put/requirements/base_classes.cc
1155
// { dg-do compile } // 2001-08-27 Benjamin Kosnik <bkoz@redhat.com> // Copyright (C) 2001, 2003, 2009 Free Software Foundation // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as publi...
gpl-2.0
ystk/linux-poky-debian
drivers/media/v4l2-core/v4l2-common.c
30460
/* * Video for Linux Two * * A generic video device interface for the LINUX operating system * using a set of device structures/vectors for low level operations. * * This file replaces the videodev.c file that comes with the * regular kernel distribution. * * This program is free software; you can redistribute...
gpl-2.0
BROcart/2.7.8
www/admin/language/english/localisation/return_status.php
726
<?php // Heading $_['heading_title'] = 'Return Status'; // Text $_['text_success'] = 'Success: You have modified return statuses!'; // Column $_['column_name'] = 'Return Status Name'; $_['column_action'] = 'Action'; // Entry $_['entry_name'] = 'Return Status Name:'; // Error $_['error_permissio...
gpl-3.0
deenjohn/TimelineJS
website/core/settings/loc.py
279
"""Local settings and globals.""" import sys from os.path import normpath, join from .base import * # Import secrets -- not needed #sys.path.append( # abspath(join(PROJECT_ROOT, '../secrets/TimelineJS/stg')) #) #from secrets import * # Set static URL STATIC_URL = '/static'
mpl-2.0
smuzaffar/root
math/matrix/inc/TMatrixFBase.h
1312
// @(#)root/matrix:$Id$ // Authors: Fons Rademakers, Eddy Offermann Nov 2003 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * ...
lgpl-2.1
dantuffery/elasticsearch
src/test/java/org/elasticsearch/action/RejectionActionTests.java
4951
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
apache-2.0
BigBoss424/portfolio
v8/development/node_modules/@types/lodash/common/common.d.ts
14825
import _ = require("../index"); // tslint:disable-next-line:strict-export-declare-modifiers type GlobalPartial<T> = Partial<T>; declare module "../index" { type PartialObject<T> = GlobalPartial<T>; type Many<T> = T | ReadonlyArray<T>; interface LoDashStatic { /** * Creates a lodash object wh...
apache-2.0
mtustin-handy/airflow
airflow/contrib/plugins/metastore_browser/templates/metastore_browser/base.html
1279
{% extends 'airflow/master.html' %} {% block body %} <div> <h3 style="float: left"> {% block page_header %}Hive Metastore Browser{% endblock%} </h3> <div id="object" class="select2-drop-mask" style="margin-top: 25px; width: 400px;float: right"></div> <div style="clear: both"></div> </div> {% b...
apache-2.0
837468220/python-for-android
python3-alpha/openssl/crypto/evp/evp_enc.c
16714
/* crypto/evp/evp_enc.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non...
apache-2.0
rokn/Count_Words_2015
fetched_code/ruby/orientdb.rb
1560
class Orientdb < Formula desc "Graph database" homepage "https://orientdb.com" url "https://orientdb.com/download.php?email=unknown@unknown.com&file=orientdb-community-2.1.6.tar.gz&os=mac" version "2.1.6" sha256 "c5aa4791b965812362e8faf50ff03e1970de1c81c707b9d0220cdadf8e61d0c1" bottle do cellar :any_sk...
mit
lshain-android-source/external-libffi
testsuite/libffi.call/cls_align_uint16.c
2592
/* Area: ffi_call, closure_call Purpose: Check structure alignment of uint16. Limitations: none. PR: none. Originator: <hos@tamanegi.org> 20031203 */ /* { dg-do run } */ #include "ffitest.h" typedef struct cls_struct_align { unsigned char a; unsigned short b; unsigned char c; } cls_struct_align; ...
mit
bticino/openembedded
recipes/initrdscripts/files/80-ext3.sh
383
ext3_mount () { modprobe -q ext3 mkdir -p $2 mount -t ext3 -onoatime,data=journal,errors=continue $1 $2 } for arg in $CMDLINE; do optarg=`expr "x$arg" : 'x[^=]*=\(.*\)'` echo $arg xxx $optarg case $arg in ext3=*) dev=`expr "$optarg" : '\([^:]*\).*'` path=`expr "$optarg" : '[^:]...
mit
ralzate/Aerosanidad-Correciones
vendor/bundle/ruby/2.2.0/gems/fog-1.35.0/lib/fog/openstack/models/compute/flavor.rb
1492
require 'fog/openstack/models/model' module Fog module Compute class OpenStack class Flavor < Fog::OpenStack::Model identity :id attribute :name attribute :ram attribute :disk attribute :vcpus attribute :links attribute :swap attribute :rxtx_...
mit
ystk/linux-poky-debian
arch/powerpc/include/asm/ppc-opcode.h
10038
/* * Copyright 2009 Freescale Semicondutor, Inc. * * 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. * * provides ...
gpl-2.0
jigpu/input
fs/quota/quota.c
24683
/* * Quota code necessary even when VFS quota support is not compiled * into the kernel. The interesting stuff is over in dquot.c, here * we have symbols for initial quotactl(2) handling, the sysctl(2) * variables, etc - things needed even when quota support disabled. */ #include <linux/fs.h> #include <linux/nam...
gpl-2.0
appuio/ansible-role-openshift-zabbix-monitoring
vendor/openshift-tools/ansible/roles/ansible_tower_cli/README.md
1063
ansible_tower_cli ============== Install ansible-tower-cli rpm. Requirements ------------ None Role Variables -------------- None Dependencies ------------ None Example Playbook ---------------- Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice f...
apache-2.0
axinging/chromium-crosswalk
third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-color-recalc.html
407
<!doctype html> <style> div { font-size: 50px; text-decoration: underline solid red; } </style> <script> onload = function() { target.style.textDecorationColor = "green"; }; </script> <p>Test that changes in text-decoration-color are recalculated correctly. PASS if the text below...
bsd-3-clause
7anner/grpc
tools/run_tests/sanity/check_cache_mk.sh
1626
#!/bin/sh # Copyright 2015, Google 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 of condition...
bsd-3-clause
guorendong/iridium-browser-ubuntu
ui/resources/resource_check/resource_scale_factors.py
4859
# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Presubmit script for Chromium browser resources. See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for more details about t...
bsd-3-clause
xixizhang96/Example
例子example/jQuery+html5圆形进度条倒计时动画特效/改动版/js/kinetic-v5.1.0.js
514339
/* * KineticJS JavaScript Framework v5.1.0 * http://www.kineticjs.com/ * Copyright 2013, Eric Rowell * Licensed under the MIT or GPL Version 2 licenses. * Date: 2014-03-27 * * Copyright (C) 2011 - 2013 by Eric Rowell * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this s...
mit
sashberd/cdnjs
ajax/libs/inferno/0.7.3/inferno.js
6896
/*! * inferno v0.7.3 * (c) 2016 Dominic Gannaway * Released under the MPL-2.0 License. */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.Inferno = factory()); }(this, ...
mit
mwernimont/sparrow-ui
src/main/webapp/js/vendor/ol3-layerswitcher/1.0.2/ol3-layerswitcher.js
6635
/** * OpenLayers 3 Layer Switcher Control. * See [the examples](./examples) for usage. * @constructor * @extends {ol.control.Control} * @param {Object} opt_options Control options, extends olx.control.ControlOptions adding: * **`tipLabel`** `String` - the button tooltip. */ ol.contro...
cc0-1.0
monzie9000/rory
workspace/EclipsePapa/src/sw/airborne/peripherals/ads1114.h
5076
/* * Copyright (C) 2010 ENAC * * This file is part of paparazzi. * * paparazzi 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. * * paparazzi...
gpl-2.0
ernestovi/ups
moodle/mod/data/field/number/version.php
1176
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle ...
gpl-3.0
marsorp/blog
presto166/presto-parser/src/main/java/com/facebook/presto/sql/tree/NotExpression.java
1998
/* * 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 applicable law or agreed to in writing, software * distribut...
apache-2.0
kdwink/intellij-community
java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/GuessTypeParameters.java
10162
/* * Copyright 2000-2013 JetBrains s.r.o. * * 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 applicable law or agre...
apache-2.0
js0701/chromium-crosswalk
third_party/WebKit/LayoutTests/animations/pseudo-element-animation-with-rems.html
345
<html> <head> <script> if (window.testRunner) { testRunner.dumpAsText(); } </script> <style> @-webkit-keyframes anim { 42% { -webkit-border-horizontal-spacing: 42rem; } } body::first-letter { -webkit-animation-name: anim; } </style> </head> <body> This test passes if it does no...
bsd-3-clause
endlessm/chromium-browser
third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
3553
//===-- PPCPredicates.cpp - PPC Branch Predicate Information --------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
bsd-3-clause
tspycher/python-raspberry-bugcontrol
static-web/node_modules/@angular/platform-browser/src/private_import_core.d.ts
1859
/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { __core_private__ as r } from '@angular/core'; export declare type RenderDebugInfo = typeof r._RenderDebugInf...
mit
rlugojr/cdnjs
ajax/libs/x-tag/1.5.10/x-tag-no-polyfills.js
30690
(function () { /*** Variables ***/ var win = window, doc = document, attrProto = { setAttribute: Element.prototype.setAttribute, removeAttribute: Element.prototype.removeAttribute }, hasShadow = Element.prototype.createShadowRoot, container = doc.createElement('div'), ...
mit
droidzone/Supernova-Kernel
kernel/kernel/irq/chip.c
18719
/* * linux/kernel/irq/chip.c * * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar * Copyright (C) 2005-2006, Thomas Gleixner, Russell King * * This file contains the core interrupt handling code, for irq-chip * based architectures. * * Detailed information is available in Documentation/DocBook/generic...
gpl-2.0
madpilot78/ntopng
third-party/zeromq-4.1.7/tests/test_spec_dealer.cpp
7543
/* Copyright (c) 2007-2015 Contributors as noted in the AUTHORS file This file is part of libzmq, the ZeroMQ core engine in C++. libzmq 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 Found...
gpl-3.0
s20121035/rk3288_android5.1_repo
external/chromium_org/chrome/browser/resources/ntp4/new_tab.js
23568
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /** * @fileoverview New tab page * This is the main code for the new tab page used by touch-enabled Chrome * browsers. For now this is still a pro...
gpl-3.0
Stevenwork/Innov_code
v0.9/innovApp/libboost_1_49_0/include/boost/icl/interval_base_map.hpp
56535
/*-----------------------------------------------------------------------------+ Copyright (c) 2007-2012: Joachim Faulhaber Copyright (c) 1999-2006: Cortex Software GmbH, Kantstrasse 57, Berlin +------------------------------------------------------------------------------+ Distributed under the Boost Software Licen...
lgpl-3.0
pauloricardomg/cassandra
test/unit/org/apache/cassandra/repair/consistent/AbstractConsistentSessionTest.java
3628
/* * 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"); you ...
apache-2.0
MSchantz/Parse-SDK-Android
Parse/src/main/java/com/parse/ParseRemoveOperation.java
3725
/* * Copyright (c) 2015-present, Parse, LLC. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ package com.par...
bsd-3-clause
ozshel/theseus
web_service/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Loader/PhpFileLoader.php
1576
<?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\DependencyInjection\Loader; use Symfony\Component\Con...
bsd-3-clause
LeoLombardi/tos-laimas-compass
tos-laimas-compass-win32-x64/resources/app/node_modules/closure-util/.deps/library/b06c979ecae7d78dd1ac4f7b09adec643baac308/closure/goog/dom/nodeoffset_test.html
574
<!DOCTYPE html> <html> <!-- Copyright 2008 The Closure Library Authors. All Rights Reserved. Use of this source code is governed by the Apache License, Version 2.0. See the COPYING file for details. --> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="UTF-8" /> <title>goog.dom.NodeOffset Tes...
mit
dhenson02/cdnjs
ajax/libs/ng-wig/1.1.3/ng-wig.js
6452
/** * version: 1.1.3 */ angular.module('ngWig', ['ngwig-app-templates']); angular.module('ngWig').directive('ngWig', function () { return { scope: { content: '=ngWig' }, restrict: 'A', replace: true, templateUrl: 'ng-wig/views/ng-wig.html', link: funct...
mit
BPI-SINOVOIP/BPI-Mainline-kernel
linux-4.14/arch/powerpc/include/asm/local.h
3886
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ARCH_POWERPC_LOCAL_H #define _ARCH_POWERPC_LOCAL_H #include <linux/percpu.h> #include <linux/atomic.h> typedef struct { atomic_long_t a; } local_t; #define LOCAL_INIT(i) { ATOMIC_LONG_INIT(i) } #define local_read(l) atomic_long_read(&(l)->a) #define local_set(l,i) at...
gpl-2.0
BPI-SINOVOIP/BPI-Mainline-kernel
linux-4.14/drivers/gpu/drm/arm/malidp_crtc.c
16219
/* * (C) COPYRIGHT 2016 ARM Limited. All rights reserved. * Author: Liviu Dudau <Liviu.Dudau@arm.com> * * This program is free software and is provided to you under the terms of the * GNU General Public License version 2 as published by the Free Software * Foundation, and any use by you of this program is subject...
gpl-2.0
zjh171/gcc
libstdc++-v3/testsuite/performance/23_containers/insert_from_sorted/set.cc
2129
// Copyright (C) 2003-2015 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library 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, or (at your op...
gpl-2.0
iwinoto/v4l-media_build-devel
media/kernel/kthread.c
18999
/* Kernel thread helper functions. * Copyright (C) 2004 IBM Corporation, Rusty Russell. * * Creation is done via kthreadd, so that we get a clean environment * even if we're invoked from userspace (think modprobe, hotplug cpu, * etc.). */ #include <linux/sched.h> #include <linux/kthread.h> #include <linux/compl...
gpl-2.0
crystax/android-toolchain-gcc-5
libstdc++-v3/testsuite/23_containers/list/cons/1.cc
855
// Copyright (C) 2001-2015 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library 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, or (at your op...
gpl-2.0
poranmeloge/test-github
stm32_rtt_wifi/bsp/efm32/Libraries/emlib/inc/em_cmu.h
32251
/***************************************************************************//** * @file * @brief Clock management unit (CMU) API * @author Energy Micro AS * @version 3.0.0 ******************************************************************************* * @section License * <b>(C) Copyright 2012 Energy Micro AS, ...
gpl-2.0
evaautomation/gcc-linaro
libgfortran/generated/maxloc0_16_r10.c
9168
/* Implementation of the MAXLOC intrinsic Copyright (C) 2002-2015 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). Libgfortran is free software; you can redistribute it and/or modify it under the terms of the GNU Gene...
gpl-2.0
codebam/linux
drivers/gpu/drm/amd/powerplay/smumgr/tonga_smumgr.c
22886
/* * Copyright 2015 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, m...
gpl-2.0
mjg59/grub
include/grub/command.h
3666
/* * GRUB -- GRand Unified Bootloader * Copyright (C) 2009 Free Software Foundation, Inc. * * GRUB 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...
gpl-3.0
jackche0214/wechatpaltform
weixinmenu/Content/easyui/jquery-easyui-1.3.5/demo/datebox/validate.html
1148
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Validate DateBox - jQuery EasyUI Demo</title> <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css"> <link rel="stylesheet" type="text/css" href="../../themes/icon.css"> <link rel="stylesheet" type="text/css" href="../demo.css"> <...
unlicense
leighpauls/k2cro4
third_party/cygwin/lib/perl5/5.10/i686-cygwin/Encode/Unicode/UTF7.pm
3618
# # $Id: UTF7.pm,v 2.4 2006/06/03 20:28:48 dankogai Exp $ # package Encode::Unicode::UTF7; use strict; use warnings; no warnings 'redefine'; use base qw(Encode::Encoding); __PACKAGE__->Define('UTF-7'); our $VERSION = do { my @r = ( q$Revision: 2.4 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; use MIME::Base64; use...
bsd-3-clause
JosefMeixner/opentoonz
thirdparty/lzo/2.03/asm/i386/src_masm/lzo1y_s2.asm
4388
; lzo1y_s2.asm -- lzo1y_decompress_asm_safe ; ; This file is part of the LZO real-time data compression library. ; ; Copyright (C) 2008 Markus Franz Xaver Johannes Oberhumer ; Copyright (C) 2007 Markus Franz Xaver Johannes Oberhumer ; Copyright (C) 2006 Markus Franz Xaver Johannes Oberhumer ; Copyright (C) 2005 M...
bsd-3-clause
rodzewich/playground
types/jquery-galleria/jquery-galleria.d.ts
1084
// Type definitions for galleria.js v1.4.2 // Project: https://github.com/aino/galleria // Definitions by: Robert Imig <https://github.com/rimig> // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module GalleriaJS { interface GalleriaOptions { dataSource: GalleriaEntry[]; autopla...
mit
tokenly/tokenly-cms
www/themes/tokentalk/js/i18n/elfinder.ar.js
14935
/** * Arabic translation (Syrian Localization, it may differ if you aren't from Syria or any Country in Middle East) * @author Tawfek Daghistani <tawfekov@gmail.com> * @version 2011-07-09 */ if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object') { elFinder.prototype.i18.ar = { translat...
gpl-2.0
Nicholas-Westby/Umbraco-CMS
src/Umbraco.Web/Models/ContentEditing/Relation.cs
1181
using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace Umbraco.Web.Models.ContentEditing { [DataContract(Name = "relation", Namespace = "")] public class Relation { public Relation() { ...
mit
basicthinker/libptm
gcc/gcc/config/vms/vms-opts.h
921
/* Definitions for option handling for OpenVMS. Copyright (C) 2012-2015 Free Software Foundation, Inc. This file is part of GCC. GCC 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 ...
gpl-3.0
Kiddinglife/kidding-engine
python/Modules/cjkcodecs/multibytecodec.h
4288
/* * multibytecodec.h: Common Multibyte Codec Implementation * * Written by Hye-Shik Chang <perky@FreeBSD.org> */ #ifndef _PYTHON_MULTIBYTECODEC_H_ #define _PYTHON_MULTIBYTECODEC_H_ #ifdef __cplusplus extern "C" { #endif #ifdef uint16_t typedef uint16_t ucs2_t, DBCHAR; #else typedef unsigned short ucs2_t, DBCHAR;...
lgpl-3.0
angieshates/LyonSoftProject
zResources/CodeIgniter/user_guide/installation/upgrade_200.html
6543
<!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" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Upgrading from 1.7.2 to 2.0.0 : CodeIgniter U...
apache-2.0
puyanLiu/LPYFramework
前端练习/autoFramework/webpack-demo3/node_modules/url-loader/README.md
3239
[![npm][npm]][npm-url] [![node][node]][node-url] [![deps][deps]][deps-url] [![tests][tests]][tests-url] [![coverage][cover]][cover-url] [![chat][chat]][chat-url] <div align="center"> <a href="https://github.com/webpack/webpack"> <img width="200" height="200" src="https://cdn.rawgit.com/webpack/me...
apache-2.0
7kbird/chrome
sync/internal_api/test/fake_sync_manager.cc
7968
// Copyright (c) 2012 The Chromium 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 "sync/internal_api/public/test/fake_sync_manager.h" #include <cstddef> #include "base/bind.h" #include "base/bind_helpers.h" #include "base...
bsd-3-clause
GeyerA/android_external_chromium_org
net/data/ssl/scripts/generate-cross-signed-certs.sh
2586
#!/bin/sh # Copyright 2013 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # This script generates a two roots - one legacy one signed with MD5, and # another (newer) one signed with SHA1 - and has a leaf certificate sign...
bsd-3-clause
WhiteBearSolutions/WBSAirback
packages/wbsairback-kernel-image/wbsairback-kernel-image-3.2.43/arch/sh/kernel/cpu/sh4a/clock-sh7723.c
11054
/* * arch/sh/kernel/cpu/sh4a/clock-sh7723.c * * SH7723 clock framework support * * Copyright (C) 2009 Magnus Damm * * 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 t...
apache-2.0
Eurofunk/ag-grid
dist/lib/selectionRendererFactory.js
2720
/** * ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components * @version v4.1.5 * @link http://www.ag-grid.com/ * @license MIT */ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : ...
mit
viskin/cdnjs
ajax/libs/spellbook/0.0.28/spellbook.js
9757
/* Spellbook Class Extension */ if (!Array.prototype.remove) { Array.prototype.remove = function (obj) { var self = this; if (typeof obj !== "object" && !obj instanceof Array) { obj = [obj]; } return self.filter(function(e){ if(obj.indexOf(e)<0) { return e } }); }; } if (!Array.prototype.c...
mit
wy7980/Cpp-Primer
ch14/ex14_49_TEST.cpp
138
#include "ex14_49.h" int main() { Date date(12, 4, 2015); if (static_cast<bool>(date)) std::cout << date << std::endl; }
cc0-1.0
stain/jdk8u
test/sun/tools/jstat/jstatLineCounts2.sh
1365
# # Copyright (c) 2004, 2012, 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 Softwar...
gpl-2.0
thaJeztah/cli
vendor/google.golang.org/grpc/version.go
683
/* * * Copyright 2018 gRPC 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 applicable law or agree...
apache-2.0
aroegies/trecrts-tools
trecrts-mobile-app/plugins/cordova-plugin-inappbrowser/src/windows/InAppBrowserProxy.js
13645
/* * * 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"); ...
apache-2.0
elnappo/homebrew-cask
Casks/mplayer-osx-extended.rb
624
cask 'mplayer-osx-extended' do version 'rev15' sha256 '7979f2369730d389ceb4ec3082c65ffa3ec70f812f0699a2ef8acbae958a5c93' # github.com is the official download host per the vendor homepage url "https://github.com/sttz/MPlayer-OSX-Extended/releases/download/#{version}/MPlayer-OSX-Extended_#{version}.zip" appca...
bsd-2-clause
impedimentToProgress/UCI-BlueChip
snapgear_linux/linux-2.6.21.1/drivers/message/fusion/lsi/mpi_ioc.h
58797
/* * Copyright (c) 2000-2006 LSI Logic Corporation. * * * Name: mpi_ioc.h * Title: MPI IOC, Port, Event, FW Download, and FW Upload messages * Creation Date: August 11, 2000 * * mpi_ioc.h Version: 01.05.12 * * Version History * --------------- * * Date Version Descript...
mit
ghosthawkone/project-kompress
lzma1600/CPP/7zip/UI/FileManager/BrowseDialog.h
796
// BrowseDialog.h #ifndef __BROWSE_DIALOG_H #define __BROWSE_DIALOG_H #include "../../../Common/MyString.h" bool MyBrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR path, UString &resultPath); bool MyBrowseForFile(HWND owner, LPCWSTR title, LPCWSTR path, LPCWSTR filterDescription, LPCWSTR filter, UString &resultPat...
mit
shirishpargaonkar/cifsclient
virt/kvm/irq_comm.c
10324
/* * irq_comm.c: Common API for in kernel interrupt controller * Copyright (c) 2007, Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * T...
gpl-2.0
danialbehzadi/Nokia-RM-1013-2.0.0.11
webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/expression-014.js
966
/** File Name: expression-014.js Corresponds To: ecma/Expressions/11.2.2-9-n.js ECMA Section: 11.2.2. The new operator Description: Author: christine@netscape.com Date: 12 november 1997 */ var SECTION = "expression-014.js"; var VERSION = "ECM...
gpl-3.0
mericon/Xp_Kernel_LGH850
virt/arch/arm/plat-samsung/include/plat/dma-s3c24xx.h
1928
/* linux/arch/arm/plat-samsung/include/plat/dma-s3c24xx.h * * Copyright (C) 2006 Simtec Electronics * Ben Dooks <ben@simtec.co.uk> * * Samsung S3C24XX DMA support - per SoC functions * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License v...
gpl-2.0
dios-game/dios-cocos
src/oslibs/cocos/cocos-src/cocos/base/CCEventListenerCustom.h
3164
/**************************************************************************** Copyright (c) 2013-2014 Chukong Technologies Inc. http://www.cocos2d-x.org Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in ...
mit
diegojromerolopez/djanban
src/djanban/static/angularapps/taskboard/node_modules/rxjs/scheduler/VirtualTimeScheduler.js
3914
"use strict"; var __extends = (this && this.__extends) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; var AsyncAction_1 = require('./AsyncAction'); va...
mit
overtherain/scriptfile
tool-kit/git-2.1.2/t/t3200-branch.sh
30713
#!/bin/sh # # Copyright (c) 2005 Amos Waterland # test_description='git branch assorted tests' . ./test-lib.sh test_expect_success 'prepare a trivial repository' ' echo Hello >A && git update-index --add A && git commit -m "Initial commit." && echo World >>A && git update-index --add A && git commit -m "Second...
mit
DmitryADP/diff_qc750
kernel/drivers/misc/tegra-baseband/bb-power.c
8209
/* * drivers/misc/tegra-baseband/bb-power.c * * Copyright (C) 2011 NVIDIA Corporation * * This software is licensed under the terms of the GNU General Public * License version 2, as published by the Free Software Foundation, and * may be copied, distributed, and modified under those terms. * * This program is ...
gpl-2.0
rperier/linux
drivers/gpu/drm/i915/gem/selftests/i915_gem_mman.c
34178
/* * SPDX-License-Identifier: MIT * * Copyright © 2016 Intel Corporation */ #include <linux/prime_numbers.h> #include "gt/intel_engine_pm.h" #include "gt/intel_gpu_commands.h" #include "gt/intel_gt.h" #include "gt/intel_gt_pm.h" #include "gem/i915_gem_region.h" #include "huge_gem_object.h" #include "i915_selftest...
gpl-2.0
wkritzinger/asuswrt-merlin
release/src-rt-7.x.main/src/linux/linux-2.6.36/drivers/Makefile
3388
# # Makefile for the Linux kernel device drivers. # # 15 Sep 2000, Christoph Hellwig <hch@infradead.org> # Rewritten to use lists instead of if-statements. # obj-y += gpio/ obj-$(CONFIG_PCI) += pci/ obj-$(CONFIG_PARISC) += parisc/ obj-$(CONFIG_RAPIDIO) += rapidio/ obj-y += video/ obj-y += idle/ obj-$(CONFI...
gpl-2.0
iohannez/gnuradio
gr-filter/include/gnuradio/filter/hilbert_fc.h
1990
/* -*- c++ -*- */ /* * Copyright 2004,2012 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio 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, or (at your o...
gpl-3.0
s20121035/rk3288_android5.1_repo
external/chromium_org/chrome/browser/extensions/menu_manager_factory.cc
2014
// Copyright 2013 The Chromium 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 "chrome/browser/extensions/menu_manager_factory.h" #include "chrome/browser/extensions/menu_manager.h" #include "chrome/browser/profiles/profile...
gpl-3.0
irudyak/ignite
modules/core/src/test/java/org/apache/ignite/internal/processors/cache/binary/GridCacheBinaryTransactionalEntryProcessorDeploymentSelfTest.java
1284
/* * 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"); you...
apache-2.0
CSE3320/kernel-code
linux-5.8/drivers/platform/x86/intel_ips.c
42748
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2009-2010 Intel Corporation * * Authors: * Jesse Barnes <jbarnes@virtuousgeek.org> */ /* * Some Intel Ibex Peak based platforms support so-called "intelligent * power sharing", which allows the CPU and GPU to cooperate to maximize * performance within a gi...
gpl-2.0
jeffery9/mixprint_addons
stock_location/procurement_pull.py
6951
############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public L...
agpl-3.0
Maqsood137/service.selfhealthnetwork.com
www/saml2/sp/SingleLogoutService.php
2618
<?php require_once('../../_include.php'); $config = SimpleSAML_Configuration::getInstance(); $metadata = SimpleSAML_Metadata_MetaDataStorageHandler::getMetadataHandler(); // Get the local session $session = SimpleSAML_Session::getInstance(); SimpleSAML_Logger::info('SAML2.0 - SP.SingleLogoutService: Accessing SAML...
lgpl-2.1
nwjs/chromium.src
third_party/blink/web_tests/svg/custom/use-dynamic-attribute-setting-expected.html
365
<!DOCTYPE HTML> <html> <body> This test passes if there are two green squares below:<br> <svg width="300" height="300"> <svg id="svg" width="100" height="100"> <rect width="100%" height="100%" fill="green"/> </svg> <svg id="svg" x="100" y="100" width="100" height="100"> <rect width="100%" height="100%" fi...
bsd-3-clause
js0701/chromium-crosswalk
third_party/WebKit/LayoutTests/http/tests/appcache/abort-cache-onprogress.html
1351
<html manifest="resources/abort-cache-onprogress.manifest"> <script> if (window.testRunner) { testRunner.dumpAsText() testRunner.waitUntilDone(); } function log(message) { document.getElementById("result").innerHTML += message + "\n"; } function onprogress(event) { log("loading resource: " + event.loa...
bsd-3-clause
AMoo-Miki/cdnjs
ajax/libs/forerunnerdb/1.3.505/fdb-core.js
240356
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.ex...
mit
riddya85/rentail_upwrk
wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/functions.php
8400
<?php /** * Minileven functions and definitions * * Sets up the theme and provides some helper functions. Some helper functions * are used in the theme as custom template tags. Others are attached to action and * filter hooks in WordPress to change core functionality. * * The first function, minileven_setup(), s...
gpl-2.0
2014c2g12/c2g12
wsgi/wsgi/static/weblink/doc/api/t-pfcBase-Point3D.html
2542
<html> <head> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title> CIP JavaScript documentation for sequence " pfcPoint3D" </title> <link href="cipdoc_default.css" type="text/css" rel="stylesheet"> <script language="JAVASCRIPT"> function findProperNode () { top.fram...
gpl-2.0
ixaxaar/sdcc
support/sdbinutils/bfd/som.h
8726
/* HP PA-RISC SOM object file format: definitions internal to BFD. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2012 Free Software Foundation, Inc. Contributed by the Center for Software Science at the University of Utah (pa-gdb-bugs@cs.utah.edu...
gpl-2.0