code
stringlengths
4
1.01M
using System; using NUnit.Framework; namespace MyApp.Repository.Testing { internal class InMemoryRepositoryTests { //================================================================================ [Test] public void Standard() { var repo...
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...
<!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>
# 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
#!/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...
--- layout: page title: Archive --- ### Blog Posts {% for post in site.posts %} * {{ post.date | date_to_string }} &raquo; [ {{ post.title }} ]({{ post.url }}) {% endfor %}
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...
<!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...
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...
#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...
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...
# -*- 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',...
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 ...
#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...
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```
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: ...
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 ...
<?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) { //$...
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...
#!/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.
<?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...
/*-----------*\ /* 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...
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...
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 ...
// // 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...
<?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 = ...
#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,...
# 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...
/* * 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...
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...
<?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() ...
/******************************************************************** 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 ...
// 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...
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...
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) ...
.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 ...
'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...
# 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***
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...
<!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> ...
<!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=...
<!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...
# 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...
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...
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...
### 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...
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,...
<!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...
<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...
module.exports = require('eden-class').extend(function() { /* Require -------------------------------*/ /* Constants -------------------------------*/ /* Public.Properties -------------------------------*/ /* Protected Properties -------------------------------*/ this._table = null; this._where = []; /* ...
# A short history ## < v0.2 - node was event based
<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...
<?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;...
@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 ...
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...
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...
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; } ....
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/...
<!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" ...
<!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....
<!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...
<?php return array ( 'id' => 'mot_v3i_ver1_sub080305r', 'fallback' => 'mot_v3i_ver1', 'capabilities' => array ( ), );
--- 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...
<?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...
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...
// =========================================================================== // // PUBLIC DOMAIN NOTICE // Agricultural Research Service // United States Department of Agriculture // // This software/database is a "United States Government Work" unde...
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...
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...
<?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...
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...
/* ---------------------------------------------------------------------------- * 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. * ------------------------------...
""" .. 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...
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]...
<?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\...
/****************************************************************/ /* 1. IMPORTED STYLESHEETS */ /****************************************************************/ /* Import the basic setup styles */ @import url(imports/base.css); /* Import the colour scheme */ @import url(imports/Radium_cs.css); /**********...
// @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...
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...
''' 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...
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...
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> ///...
// 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...
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') ...
<?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...
<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...
/*! * 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...
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ /...
--- 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://...
<!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...
/* 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; ...
#!/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 ...
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...
--- 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...
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/**/...
// // 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...
<!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...
<!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...
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....
/** * @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...
#////////////////////////////////////////////////////////////////////////////// # -- clMAGMA (version 1.0.0) -- # Univ. of Tennessee, Knoxville # Univ. of California, Berkeley # Univ. of Colorado, Denver # April 2012 #////////////////////////////////////////////////////////////////////////////// ...
<?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); ...