repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
antanta/MyApp
MyApp.Repository/Testing/Tests.cs
2757
using System; using NUnit.Framework; namespace MyApp.Repository.Testing { internal class InMemoryRepositoryTests { //================================================================================ [Test] public void Standard() { var repo...
mit
josephperrott/material2
src/material-experimental/mdc-checkbox/checkbox.spec.ts
43213
import {dispatchFakeEvent} from '../../cdk/testing/private'; import {ChangeDetectionStrategy, Component, DebugElement, Type} from '@angular/core'; import { ComponentFixture, fakeAsync, flush, flushMicrotasks, TestBed, } from '@angular/core/testing'; import {ThemePalette} from '@angular/material-experimental/m...
mit
ProfessionalCSharp/ProfessionalCSharp7
ASPNETCore/WebSampleApp/AngularWithDotnetCore/ClientApp/src/index.html
318
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>AngularWithDotnetCore</title> <base href="/"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="favicon.ico"> </head> <body> <app-root>Loading...</app-root> </body> </html>
mit
biow0lf/evemonk
app/importers/eve/all_regions_contracts_importer.rb
318
# frozen_string_literal: true module Eve class AllRegionsContractsImporter def import region_ids.each do |region_id| Eve::RegionContractsJob.perform_later(region_id) end end private def region_ids @region_ids ||= Eve::Region.pluck(:region_id).sort.uniq end end end
mit
gdh1995/vimium-plus
tests/unit/keyboard-layouts.js
2107
#!/usr/bin/env node let layouts = [ `# French &é"'(-è_çà)= azertyuiop^$* qsdfghjklmù wxcvbn,;:! `, `# German (German (IBM) is the same) 1234567890ß qwertzuiopü+# asdfghjklöä yxcvbnm,.- `, `# Spanish 1234567890'¡ qwertyuiop+ç asdfghjklñ zxcvbnm,.- ## ESV 1234567890- qwertyuiop÷ asdfghjklñç zxcvbnm,.= `, `# Port...
mit
epicoffee/epicoffee.github.io
archive.md
177
--- layout: page title: Archive --- ### Blog Posts {% for post in site.posts %} * {{ post.date | date_to_string }} &raquo; [ {{ post.title }} ]({{ post.url }}) {% endfor %}
mit
b37t1td/barapp-freecodecamp
client/app/components/user-following.js
389
import Ember from 'ember'; export default Ember.Component.extend({ tagName : '', item : null, isFollowing : false, isLoggedIn : false, init() { this.set('isLoggedIn', !!this.get('application.user.login')); if (this.get('application.places.length') > 0) { this.set('isFollowing', !!this.get('app...
mit
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.10.1-2.0.6/released/8.11.2/io/3.3.0.html
6313
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>io: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="s...
mit
contentbird/contentbird
app/services/cb/util/service_rescuer.rb
439
class CB::Util::ServiceRescuer def initialize instance @instance = instance end def method_missing method, *args, &block if @instance.respond_to? method begin @instance.public_send method, *args, &block rescue => e error_type = e.is_a?(ActiveRecord::RecordNotFound) ? :not_found...
mit
mox17/teensy-car-sensors
sensor-hub/telemetry.h
3304
#ifndef TELEMETRY_H #define TELEMETRY_H #include <Arduino.h> #include <HardwareSerial.h> #include "common.h" #include "queuelist.h" static const unsigned WHEEL_EVENT_MIN_INTERVAL = 5; class Telemetry { public: Telemetry(HardwareSerial port, unsigned speed); void serialPolling(); void wheelEvent(rot_one l...
mit
liwangadd/Coding
app/src/main/java/com/nicolas/coding/common/photopick/GridPhotoAdapter.java
3262
package com.nicolas.coding.common.photopick; import android.content.Context; import android.database.Cursor; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.CheckBox; import android.widget.CursorAdapter; import android.widget.ImageView; import com.nos...
mit
atizo/braindump
brainstorming/migrations/0005_auto__add_field_idea_color.py
4031
# -*- coding: utf-8 -*- from south.utils import datetime_utils as datetime from south.db import db from south.v2 import SchemaMigration from django.db import models class Migration(SchemaMigration): def forwards(self, orm): # Adding field 'Idea.color' db.add_column(u'brainstorming_idea', 'color',...
mit
eity0323/aimanager
app/src/main/java/com/sien/aimanager/MainApp.java
1651
package com.sien.aimanager; import android.content.Intent; import android.os.Handler; import com.sien.aimanager.services.MonitorServices; import com.sien.lib.baseapp.BaseApplication; import com.sien.lib.databmob.config.DatappConfig; import cn.bmob.v3.Bmob; import cn.bmob.v3.BmobConfig; /** * @author sien * @date ...
mit
robotics-at-maryland/qubo
src/vision/src/tuners/gate_tuner.cpp
6479
#include <opencv2/opencv.hpp> #include <iostream> using namespace cv; using namespace std; int ratio = 3; //per canny's suggestion int canny_thresh = 12; //starts at 12, this is what we will be changing though int hough_thresh = 27; int angle_tracker = 20; int max_thresh = 255;//max for both thresh variable doub...
mit
kfrancis/CSS.NLogExtensions
README.md
217
CSS.NLogExtensions ================== NLog extension ImageTarget, useful for saving screenshots. Download the latest release or from the NuGet "Package Manager Console", run ```Install-Package CSS.NLogExtensions```
mit
daGrevis/msks
backend/src/irc/connect.js
982
const ircFramework = require('irc-framework') const store = require('../store') const attachEvents = require('./attachEvents') const connect = connection => { const state = store.getState() let ircClient = state.ircClients[connection.id] if (!ircClient) { ircClient = new ircFramework.Client({ nick: ...
mit
BanManagement/BanManager-WebUI
server/test/playerKick.query.test.js
1807
const assert = require('assert') const { unparse } = require('uuid-parse') const supertest = require('supertest') const createApp = require('../app') const { createSetup, getAuthPassword } = require('./lib') const { createPlayer, createKick } = require('./fixtures') describe('Query player kick', () => { let setup ...
mit
chugas/symfony-without-vendors-2.1.9
src/Application/Success/CoreBundle/Twig/EventoExtension.php
1397
<?php namespace Application\Success\CoreBundle\Twig; //use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface; class EventoExtension extends \Twig_Extension { //private $container; private $repository_evento; private $templating; public function __construct($repository_evento, $templating) { //$...
mit
instapapas/instapapas
node_modules/sendgrid/test/test.js
187714
var assert = require('chai').assert var sendgrid = require('../lib/sendgrid'); describe('test_access_settings_activity_get', function () { this.timeout(30000); var API_KEY = 'SendGrid API Key' if(process.env.TRAVIS) { var TEST_HOST = process.env.MOCK_HOST } else { var TEST_HOST = 'localhost' } var...
mit
jjhelmus/conda_recipes_testing
gdal/gdal-data_1.10.1/build.sh
182
#!/bin/bash mkdir $PREFIX/share mkdir $PREFIX/share/gdal cp data/* $PREFIX/share/gdal cp LICENSE.TXT $PREFIX/share/gdal mkdir $PREFIX/bin # HACK to get post-link script to copy.
mit
vistorr/panel
app/cache/dev/jms_diextra/doctrine/EntityManager_5230d19111d8e.php
16022
<?php namespace EntityManager5230d19111d8e_546a8d27f194334ee012bfe64f629947b07e4919\__CG__\Doctrine\ORM; /** * CG library enhanced proxy class. * * This code was generated automatically by the CG library, manual changes to it * will be lost upon next generation. */ class EntityManager extends \Doctrine\ORM\Entit...
mit
Sina72/CourseWork
css/stylesl.css
3657
/*-----------*\ /* RESET \___________________________________________________ */ html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl...
mit
onejgordon/action-potential
actionpotential.py
1267
import os import webapp2 from actions import cronActions from views import views import secrets SECS_PER_WEEK = 60 * 60 * 24 * 7 # Enable ctypes -> Jinja2 tracebacks PRODUCTION_MODE = not os.environ.get( 'SERVER_SOFTWARE', 'Development').startswith('Development') ROOT_DIRECTORY = os.path.dirname(__file__) if no...
mit
rbaladron/rails-coursera
intro_rails/modulo2/Ejemplos/Lecture13-Scope/constants_scope.rb
371
module Test PI = 3.14 class Test2 def what_is_pi puts PI end end end Test::Test2.new.what_is_pi # => 3.14 module MyModule MyConstant = 'Outer Constant' class MyClass puts MyConstant # => Outer Constant MyConstant = 'Inner Constant' puts MyConstant # => Inner Constant ...
mit
L3K0V/fmi-data-structures
2014/homework_4/homework_4/parser.h
511
// // parser.h // homework_4 // // Created by Asen Lekov on 12/29/14. // Copyright (c) 2014 fmi. All rights reserved. // #ifndef __homework_4__parser__ #define __homework_4__parser__ #include <string> class XMLParser { public: //private: bool is_open_tag(const std::string& tag) const; bool is_close_tag(c...
mit
Xon/XenForo-WarningImprovements
upload/library/SV/WarningImprovements/XenForo/ControllerPublic/Member.php
7086
<?php class SV_WarningImprovements_XenForo_ControllerPublic_Member extends XFCP_SV_WarningImprovements_XenForo_ControllerPublic_Member { public function actionMember() { SV_WarningImprovements_Globals::$warning_user_id = $this->_input->filterSingle('user_id', XenForo_Input::UINT); $response = ...
mit
sdottaka/mruby-bin-scite-mruby
tools/scite/mrblib/mrblib_extman.c
89318
#include <stdint.h> const uint8_t #if defined __GNUC__ __attribute__((aligned(4))) #elif defined _MSC_VER __declspec(align(4)) #endif mrblib_extman_irep[] = { 0x45,0x54,0x49,0x52,0x30,0x30,0x30,0x33,0x5a,0x89,0x00,0x00,0x44,0xcb,0x4d,0x41, 0x54,0x5a,0x30,0x30,0x30,0x30,0x49,0x52,0x45,0x50,0x00,0x00,0x32,0x2d,0x30,0x30,...
mit
jdthorpe/archiver
__main__.py
13106
# this is the interface for `python archiver` import archiver import appdirs import os import sys import pickle import json from archiver.archiver import Archiver from archiver.parser import parseArgs args = parseArgs() from edit import edit # ============================================== print args # TODO: s...
mit
devnull-tools/boteco
main/boteco/src/test/java/tools/devnull/boteco/predicates/TargetPredicateTest.java
2605
/* * The MIT License * * Copyright (c) 2016 Marcelo "Ataxexe" Guimarães <ataxexe@devnull.tools> * * 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, includ...
mit
mattiamanzati/Icy
Icy/Database/Query/JoinClause.cs
8200
using System; using System.Collections.Generic; using System.Text; using Icy.Util; namespace Icy.Database.Query { public class JoinClauseOptions{ public object first; public string operator1; public object second; public string boolean; public bool where; public bo...
mit
php-yaoi/php-yaoi
tests/src/PHPUnit/Storage/TestStorageBasic.php
2450
<?php namespace YaoiTests\PHPUnit\Storage; use Yaoi\Storage; use Yaoi\Storage\Contract\Expire; use Yaoi\Storage\Contract\ExportImportArray; use Yaoi\Test\PHPUnit\TestCase; abstract class TestStorageBasic extends TestCase { /** * @var Storage */ protected $storage; public function testTtl() ...
mit
timwuu/PK3SP24
v2014_07_22/apps/usb/host/hid_bridgeHost/firmware/src/system_config/exp16/pic24fj64gb002_pim/system.c
6072
/******************************************************************** Software License Agreement: The software supplied herewith by Microchip Technology Incorporated (the "Company") for its PIC(R) Microcontroller is intended and supplied to you, the Company's customer, for use solely and exclusively on Microchip ...
mit
mathiasbynens/unicode-data
5.0.0/blocks/Khmer-Symbols-code-points.js
360
// All code points in the Khmer Symbols block as per Unicode v5.0.0: [ 0x19E0, 0x19E1, 0x19E2, 0x19E3, 0x19E4, 0x19E5, 0x19E6, 0x19E7, 0x19E8, 0x19E9, 0x19EA, 0x19EB, 0x19EC, 0x19ED, 0x19EE, 0x19EF, 0x19F0, 0x19F1, 0x19F2, 0x19F3, 0x19F4, 0x19F5, 0x19F6, 0x19F7, 0x19F8, 0x19F9, 0x19FA, 0x19F...
mit
scr-be/mantle-bundle
src/Resources/public/js/scribe/alert.js
337
jQuery(document).ready(function() { $('.alert-close').bind('click', function() { $(this).parent().fadeOut(100); }); function createAutoClosingAlert(selector, delay) { var alert = $(selector).alert(); window.setTimeout(function() { alert.alert('close') }, delay); } createAutoClosingAlert(".ale...
mit
akania/cucumberjs-browserRunner
tests/features/step_definitions/test3_steps.js
356
CucumberJsBrowserRunner.StepDefinitions.test3(function () { var And = Given = When = Then = this.defineStep, runner; Given(/^test3$/, function(callback) { callback(); }); When(/^test3$/, function(callback) { callback(); }); Then(/^test3$/, function(callback) ...
mit
datamade/elpc_bakken
ocr_extracted/W24890_text/style.css
6596
.styleSans721.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> { font-family: Sans; font-size: 721.0pt; font-weight: normal; font-style: normal; text-align: 0; letter-spacing: 0pt; line-height: 0pt; } .styleSans12000<enum PANGO_WEIGHT_NORMAL ...
mit
boneskull/mocha
test/integration/only.spec.js
1531
'use strict'; var run = require('./helpers').runMochaJSON; var assert = require('assert'); describe('.only()', function() { describe('bdd', function() { it('should run only tests that marked as `only`', function(done) { run('options/only/bdd.fixture.js', ['--ui', 'bdd'], function(err, res) { if (e...
mit
joeloliveira/embedded-linux
device-drivers/simple-module/README.md
279
# Linux Kernel Module This is simple kernel linux module: To compile this module: ***make -C /lib/modules/$(uname -r)/build M=$PWD*** Load module: ***insmod modulo.ko*** Unload module: ***rmmod modulo.ko*** You can run the follow command to see the log messages: ***dmesg***
mit
testing-angular-applications/contacts-app-starter
website/src/app/contacts/testing/do-classes-match.ts
504
import { ComponentRef, DebugElement } from '@angular/core'; import { ComponentFixture } from '@angular/core/testing'; export function doClassesMatch(resultClasses: DOMTokenList, expectedClasses: string[]): boolean { let classesMatch = true; let currentClass: string = null; for (let i = 0; i < expectedClasses.le...
mit
tiagoassissantos/amigo_secreto
src/main/webapp/static/sorteio.html
981
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Amigoo Secreto - Sorteio</title> <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="css/principal.css"> <script type="text/javascript" src="js/angular.js"></script> ...
mit
craigwmcclellan/craigwmcclellan.github.io
_site/2010/04/30/t13203775423.html
4845
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta content="Craig McClellan" name="author"> <title>Craig McClellan - T13203775423 </title> <link href=...
mit
Smolations/more-dash-docsets
docsets/Java 5.docset/Contents/Resources/Documents/java/awt/MenuComponent.html
28810
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <meta name="collection" content="api"> <!-- Generated by javadoc (build 1.5.0-rc) on Wed Aug 11 07:22:17 PDT 2004 --> <TITLE> MenuComponent (Java 2 Platform SE 5.0) </TITLE> <META NAME="k...
mit
auth0/docs
snippets/sso-integrations/dropbox/0.md
409
# Configure SSO Integration for Dropbox The Dropbox [Single Sign-on (SSO)](https://auth0.com/docs/sso) Integration creates a client application that uses Auth0 for authentication and provides SSO capabilities for Dropbox. Your users log in to Dropbox with Auth0 [identity providers](https://auth0.com/docs/identityprovi...
mit
fishcoin/fishcoin
doc/unit-tests.md
1081
Compiling/running fishcoind unit tests ------------------------------------ fishcoind unit tests are in the `src/test/` directory; they use the Boost::Test unit-testing framework. To compile and run the tests: cd src make -f makefile.unix test_fishcoin # Replace makefile.unix if you're not on unix ./test_fishcoi...
mit
rrajath/Orange
app/src/main/java/com/rrajath/orange/MainActivity.java
1118
package com.rrajath.orange; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; public class MainActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInst...
mit
larzconwell/moln
CHANGELOG.md
1937
### Oct 18, 2013 - Use the default Redis maxmemory policy, volatile-lru instead of volatile-ttl - Create user activity if failed password match occurs for Basic auth ### Oct 17, 2013 - Increment task ID using Redis incr command ### Oct 16, 2013 - Basic and Token authentication comply with rfc dealing with realm param...
mit
zezutom/schematic
src/test/java/org/zezutom/schematic/model/json/StringNodeTest.java
521
package org.zezutom.schematic.model.json; import org.zezutom.schematic.service.generator.json.StringGenerator; public class StringNodeTest extends NodeTestCase<String, StringGenerator, StringNode> { @Override StringNode newInstance(String name, StringGenerator generator) { return new StringNode(name,...
mit
salsify/ember-css-modules
test-packages/sass-app/app/index.html
692
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>SassApp</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> {{content-for "head"}} <link integrity="" rel="style...
mit
shakilkhan12/Rent_Room
application/views/admin/parts/book.php
5242
<div id="page-wrapper"> <div class="row"> <div class="col-lg-12"> <h1 class="page-header">Reservation's</h1> </div> <!-- /.col-lg-12 --> </div> <div class="row"> <div class="col-lg-12"> <?php if($this->s...
mit
edenjs/mysql
mysql/delete.js
1715
module.exports = require('eden-class').extend(function() { /* Require -------------------------------*/ /* Constants -------------------------------*/ /* Public.Properties -------------------------------*/ /* Protected Properties -------------------------------*/ this._table = null; this._where = []; /* ...
mit
thomaspeklak/nodejs-vienna-streams-presentation
presentation02.md
55
# A short history ## < v0.2 - node was event based
mit
xianjunzhengbackup/code
data science/machine_learning_for_the_web/chapter_4/movie/2932.html
5831
<HTML><HEAD> <TITLE>Review for Ed Wood (1994)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0109707">Ed Wood (1994)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Eric+Grossman">Eric Gro...
mit
romainneutron/PHPExiftool
lib/PHPExiftool/Driver/Tag/Olympus/WBGLevel.php
835
<?php /* * This file is part of PHPExifTool. * * (c) 2012 Romain Neutron <imprec@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPExiftool\Driver\Tag\Olympus; use JMS\Serializer\Annotation\ExclusionPolicy;...
mit
MichaelYusko/Bot-Chucky
docs/make.bat
808
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=python -msphinx ) set SOURCEDIR=. set BUILDDIR=_build set SPHINXPROJ=Bot-Chucky if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The Sphinx module was not ...
mit
AndreyBelym/testcafe
test/functional/fixtures/compiler-service/test.js
1948
const path = require('path'); const { expect } = require('chai'); const delay = require('../../../../lib/utils/delay'); describe('Compiler service', () => { it('Should execute a basic test', async () => { await runTests('testcafe-fixtures/basic-test.js', 'Basic test'); }); it('Should ha...
mit
mvmaasakkers/go-rd2wgs84
rd2wgs84_test.go
463
package rd2wgs84 import ( "testing" ) var parseTests = []struct { in RD out *WGS84 }{ {RD{163835.370083, 446830.763585}, &WGS84{52.00977421758342, 5.515894213047998}}, } func TestConvert(t *testing.T) { for i, tt := range parseTests { wgs := Convert(tt.in.X, tt.in.Y) if wgs.Latitude != tt.out.Latitude || w...
mit
JakeSiegers/JavascriptMusicVisualizer
css/style.css
344
body,html,p{ padding:0px; margin:0px; overflow:hidden; } a{ color:white; } .infoBox{ position:absolute; top: 10px; left: 10px; } .play,.stop{ margin:5px; color:black; width:100px; height:50px; background-color:white; } .title{ font-family:arial; color:white; } .debug{ font-family:arial; color:white; } ....
mit
jaybird19/FRTMProDesign
README.md
2589
FRTMProDesigner =============== 3D Surveillance Designer ======================== - 3D rendering developed with modern OpenGL including vertex & fragment shaders - Makes use of projective texture mapping - Developed software using OOP principles and design patterns - Doxygen documentation: http://jaybird19.github.io/...
mit
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.02.3-2.0.6/released/8.5.0/color/1.3.0.html
9196
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>color: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" ...
mit
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.05.0-2.0.6/released/8.7.1+2/lemma-overloading/8.11.0.html
7897
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>lemma-overloading: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap....
mit
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.05.0-2.0.6/released/8.10.2/ltac2/0.1.html
6591
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>ltac2: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel...
mit
cuckata23/wurfl-data
data/mot_v3i_ver1_sub080305r.php
129
<?php return array ( 'id' => 'mot_v3i_ver1_sub080305r', 'fallback' => 'mot_v3i_ver1', 'capabilities' => array ( ), );
mit
KlishGroup/prose-pogs
pogs/O/ONTNPHX/ODTC/index.md
1883
--- layout: page title: Orr Dart Tech Conference date: 2016-05-24 author: Jack Blankenship tags: weekly links, java status: published summary: Sed molestie molestie dignissim. Pellentesque hendrerit ac. banner: images/banner/meeting-01.jpg booking: startDate: 09/07/2016 endDate: 09/09/2016 ctyhocn: ONTNPHX grou...
mit
GoobyCoin/GoobyCoin
src/qt/locale/bitcoin_uk.ts
127958
<?xml version="1.0" ?><!DOCTYPE TS><TS language="uk" version="2.0"> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About GoobyCoin</source> <translation>Про GoobyCoin</translation> </message> <message> <locat...
mit
h2non/bimg
metadata_test.go
15803
package bimg import ( "io/ioutil" "os" "path" "testing" ) func TestSize(t *testing.T) { files := []struct { name string width int height int }{ {"test.jpg", 1680, 1050}, {"test.png", 400, 300}, {"test.webp", 550, 368}, } for _, file := range files { size, err := Size(readFile(file.name)) if...
mit
adolgert/hop-skip-bite
hopskip/src/semimarkov-0.1/partial_core_matrix.hpp
7601
// =========================================================================== // // PUBLIC DOMAIN NOTICE // Agricultural Research Service // United States Department of Agriculture // // This software/database is a "United States Government Work" unde...
mit
jxug/PrismAndMoqHansOn
before/TextSpeaker/TextSpeaker/TextSpeaker/Views/MainPage.xaml.cs
539
using System; using Xamarin.Forms; namespace TextSpeaker.Views { public partial class MainPage : ContentPage { public MainPage() { InitializeComponent(); } private async void Button_OnClicked(object sender, EventArgs e) { var result = await Disp...
mit
weijiafen/antBlog
src/main/server/controler/blog/fans.js
1918
var fans=require('../../modules/blog/fans'); var User=require('../../modules/resume/user'); var async = require('asyncawait/async'); var await = require('asyncawait/await'); module.exports=(async(function(method,req,res){ var result; if(method==='get'){ } else if(method==='post'){ var userId=req.session.uid; v...
mit
guardianphp/user
src/Caller/User.php
2639
<?php namespace Guardian\User\Caller; use Assert\Assertion; use Guardian\Caller\HasLoginToken; use Guardian\User\Caller; /** * Simple user caller * * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> */ class User implements Caller, HasLoginToken, \ArrayAccess { /** * @var string|integer */ pr...
mit
UKHomeOffice/platform-hub
platform-hub-api/app/lib/hash_rollup.rb
609
module HashRollup extend self def rollup data, into raise ArgumentError, "arguments must be Hashes" unless data.is_a?(Hash) && into.is_a?(Hash) into.merge(data) do |key, current_val, new_val| if current_val.class.name != new_val.class.name raise "Mismatch in types detected! Key = #{key}, cur...
mit
JinkiJung/PAUT
VRAT/vrat/Assets/Plugins/NoesisGUI/Scripts/Proxies/Sizei.cs
3144
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 2.0.4 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ------------------------------...
mit
evenmarbles/mlpy
mlpy/auxiliary/datastructs.py
10818
""" .. module:: mlpy.auxiliary.datastructs :platform: Unix, Windows :synopsis: Provides data structure implementations. .. moduleauthor:: Astrid Jackson <ajackson@eecs.ucf.edu> """ from __future__ import division, print_function, absolute_import import heapq import numpy as np from abc import ABCMeta, abstract...
mit
ctgk/BayesianNetwork
test/image/test_util.py
1753
import unittest import numpy as np from bayesnet.image.util import img2patch, patch2img class TestImg2Patch(unittest.TestCase): def test_img2patch(self): img = np.arange(16).reshape(1, 4, 4, 1) patch = img2patch(img, size=3, step=1) expected = np.asarray([ [img[0, 0:3, 0:3, 0]...
mit
npakai/enhavo
src/Enhavo/Bundle/FormBundle/Form/Type/EntityTreeType.php
1622
<?php /** * Created by PhpStorm. * User: gseidel * Date: 16.10.18 * Time: 23:45 */ namespace Enhavo\Bundle\FormBundle\Form\Type; use Enhavo\Bundle\FormBundle\Form\Helper\EntityTreeChoiceBuilder; use Symfony\Bridge\Doctrine\Form\Type\EntityType; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\...
mit
fweber1/Annies-Ancestors
PhpGedView/modules/punbb/style/Radium.css
8041
/****************************************************************/ /* 1. IMPORTED STYLESHEETS */ /****************************************************************/ /* Import the basic setup styles */ @import url(imports/base.css); /* Import the colour scheme */ @import url(imports/Radium_cs.css); /**********...
mit
jossmac/react-images
docs/pages/CustomComponents/index.js
4414
// @flow import React, { Component } from 'react' import { Helmet } from 'react-helmet' import AlternativeMedia from './AlternativeMedia' import ImageViewer from './ImageViewer' import { Code, CodeBlock, Title } from '../components' const propFn = k => { const style = { display: 'inline-block', marginBottom: 4, ma...
mit
jmenter/JAMAccurateSlider
README.md
1057
JAMAccurateSlider =========== A UISlider subclass that enables much more accurate value selection. ![example image](https://raw.githubusercontent.com/jmenter/JAMAccurateSlider/master/example.png "JAMAccurateSlider Example Image") JAMAccurateSlider is a drop-in replacement for UISlider. It behaves exactly the same as...
mit
Kbman99/NetSecShare
app/logger_setup.py
2739
''' logger_setup.py customizes the app's logging module. Each time an event is logged the logger checks the level of the event (eg. debug, warning, info...). If the event is above the approved threshold then it goes through. The handlers do the same thing; they output to a file/shell if the event level is above their t...
mit
turbolinks/turbolinks
src/tests/visit_tests.ts
2975
import { TurbolinksTestCase } from "./helpers/turbolinks_test_case" import { get } from "http" export class VisitTests extends TurbolinksTestCase { async setup() { this.goToLocation("/fixtures/visit.html") } async "test programmatically visiting a same-origin location"() { const urlBeforeVisit = await t...
mit
GeertvanHorrik/libgit2sharp
LibGit2Sharp/Core/Ensure.cs
10346
using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.Linq; namespace LibGit2Sharp.Core { /// <summary> /// Ensure input parameters /// </summary> [DebuggerStepThrough] internal static class Ensure { /// <summary> ///...
mit
naoey/osu
osu.Game/Rulesets/Mods/ModPerfect.cs
664
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Graphics; using osu.Game.Rulesets.Scoring; namespace osu.Game.Rulesets.Mods { public abstract class ModPerfect : ModSuddenDeath { public o...
mit
felixcriv/react_scheduler_component
gulpfile.js
1039
var gulp = require('gulp'); var browserify = require('browserify'); //transform jsx to js var reactify = require('reactify'); //convert to stream var source = require('vinyl-source-stream'); var nodemon = require('gulp-nodemon'); gulp.task('browserify', function() { //source browserify('./src/js/main.js') ...
mit
Green92/gcTodoList
src/TodoListBundle/Repository/GTaskApiTodoRepository.php
2671
<?php namespace TodoListBundle\Repository; use TodoListBundle\Entity\Todo; use TodoListBundle\Google\Client; use Google_Service_Tasks; use Google_Service_Tasks_Task; class GTaskApiTodoRepository implements ITodoRepository { /** * @var Google_Service_Tasks */ private $taskService; private $todoRepository; p...
mit
npruehs/slash-framework
Ext/log4net-1.2.11/doc/release/sdk/log4net.Core.ExceptionEvaluator.IsTriggeringEvent.html
3288
<html dir="LTR"> <head> <meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" /> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" /> <title>ExceptionEvaluator.IsTriggeringEvent Method</title> <xml> </xml> <link rel="stylesheet" type="text...
mit
Jonic/Diaphanous
public/styles/master.min.css
4125
/*! * Diaphanous * https://github.com/Jonic/Diaphanous * @author Jonic Linley <jonic@100yen.co.uk> * @version 0.0.1 * Copyright 2013 Jonic Linley MIT licensed. */ address:before, article:before, aside:before, blockquote:before, body:before, div:before, dl:before, fieldset:before, figcaption:before, figure:before...
mit
ginach/msgraph-sdk-dotnet
src/Microsoft.Graph/Requests/Generated/WorkbookFunctionsNetworkDaysRequestBuilder.cs
3138
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ /...
mit
tomasr/winterdom.com
_posts/2006-08-22-100tospendonwf.html
3228
--- layout: post status: publish published: true title: "$100 to spend on WF" author: display_name: Tomas Restrepo login: tomasr email: tomas@winterdom.com url: http://winterdom.com/ author_login: tomasr author_email: tomas@winterdom.com author_url: http://winterdom.com/ wordpress_id: 137 wordpress_url: http://...
mit
swantara/si-administrasi-kependudukan
application/views/template.php
9733
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Tell the browser to be responsive to screen width --> <title>SI Administrasi Desa</ti...
mit
mustafaneguib/tag-augmented-reality-android
gen/com/google/android/gms/R.java
13382
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.google.android.gms; public final class R { public static final class attr { public static final int adSize = 0x7f01006a; ...
mit
USAO/ansible-role-moodle3
files/moodle3_migrate.sh
2116
#!/usr/bin/env bash PATH=/opt/usao/moodle3/bin:/usr/local/bin:/usr/bin:/bin:/sbin:$PATH ## Require arguments if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ] ; then cat <<USAGE moodle3_migrate.sh migrates a site between hosts. Usage: moodle3_migrate.sh \$dest_moodledir \$src_moodlehost \$src_cfgdir \$dest_moodledir ...
mit
mk-prg-net/mk-prg-net.lib
mko/Properties/AssemblyInfo.cs
1762
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Resources; using System.Security; // Allgemeine Informationen über eine Assembly werden über die folgenden // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, // die...
mit
DFIRnotes/dfirnotes.github.io
_posts/2015-10-11-home_lab_2016.md
6952
--- layout: post title: Home Lab 2016 (2015) category: homework tag: imported author: adricnet --- *draft post, no images, end notes, links yet* Revamped and reconfigured post-SEC511 and SOC Augusta 2015, with some input from GSE studies Google group, plus some good stuff for file analysis that I'm currently neglectin...
mit
robsix/3ditor
test/unit/karma.conf.js
1463
module.exports = function(config) { config.set({ basePath: '../../', frameworks: ['jasmine', 'requirejs'], files: [ {pattern: 'test/unit/require.conf.js', included: true}, {pattern: 'test/unit/tests/global.js', included: true}, {pattern: 'src/client/**/...
mit
kolinkrewinkel/Multiplex
Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEProvisioningSigningIdentityPrototype.h
1110
// // Generated by class-dump 3.5 (64 bit). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. // #import "CDStructures.h" #import "IDEProvisioningSigningIdentity-Protocol.h" @class NSDate, NSString; @interface IDEProvisioningSigningIdentityPrototype : NSObject <IDEProvisioni...
mit
Jand42/FSharp.Compiler.Service
docs/reference/microsoft-fsharp-compiler-sourcecodeservices-fsharpdeclarationlistitem.html
16236
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>FSharpDeclarationListItem - F# Compiler Services</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content="Microsoft Corporation, Dave Thomas...
mit
v8-dox/v8-dox.github.io
5ce4f3e/html/classv8_1_1_boolean.html
33388
<!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...
mit
MkNiz/Love2Crawl
tables/roles.lua
3340
ROLES = { -- WORRIER: Close-combat specialist worrier = { name = "Worrier", description = "A powerful fighter who might be\na bit too kind for their own good.", level_cap = 20, hp = 24, hp_growth = 0.52, mp = 11, mp_growth = 0....
mit
ryangies/lsn-javascript
src/lib/ecma/http/http.js
3860
/** * @namespace http * * The C<http> namespace groups functions and classes used while making * HTTP Requests. * */ ECMAScript.Extend('http', function (ecma) { // Intentionally private var _documentLocation = null function _getDocumentLocation () { if (!_documentLocation) _documentLocation = new ecm...
mit
mauro-belgiovine/belgiovi-clmagma
Makefile
2211
#////////////////////////////////////////////////////////////////////////////// # -- clMAGMA (version 1.0.0) -- # Univ. of Tennessee, Knoxville # Univ. of California, Berkeley # Univ. of Colorado, Denver # April 2012 #////////////////////////////////////////////////////////////////////////////// ...
mit
sebastianjonasson/phpmvcprojekt
app/src/Question/QuestionsController.php
4081
<?php namespace Anax\Questions; /** * A controller for question-related pages * */ class QuestionsController implements \Anax\DI\IInjectionAware { use \Anax\DI\TInjectable; public function initialize() { $this->questions = new \Anax\Questions\Question(); $this->questions->setDI($this->di); ...
mit