answer
stringlengths
15
1.25M
using System.ComponentModel; namespace EncompassRest.Loans.Enums { <summary> <API key> </summary> public enum <API key> { <summary> Automated Valuation Model </summary> [Description("Automated Valuation Model")] <API key> = 0, <summary> Desktop...
'use strict'; var RESOLVED = 0; var REJECTED = 1; var PENDING = 2; function Promise$1(executor) { this.state = PENDING; this.value = undefined; this.deferred = []; var promise = this; try { executor(function (x) { promise.resolve(x); }, function (r) { promise.reject(r); }); } catch (...
console.log('argv[0]: '+process.argv[0]); console.log('argv[1]: '+process.argv[1]);
// <auto-generated> // :2.0.50727.8806 // </auto-generated> namespace HtmlButton_ { <summary> _Default </summary> <remarks> </remarks> public partial class _Default { <summary> form1 </summary> <remarks> </remarks> protected global::System.Web...
require 'rss/2.0' class Feed::RssRenderer < ParagraphRenderer paragraph :feed paragraph :view_rss paragraph :rss_auto_discovery, :cache => true def feed paragraph_data = (paragraph.data || {}).symbolize_keys @handler_info = get_handler_info(:feed,:rss,paragraph_data[:feed_type]) if ! @handler_info ...
'use strict'; var Crawler = require('../lib/crawler'); var expect = require('chai').expect; var jsdom = require('jsdom'); var httpbinHost = 'localhost:8000'; describe('Errors', function() { describe('timeout', function() { var c = new Crawler({ timeout : 1500, retryTimeout : 1000, ...
using System; using Xamarin.Forms; using System.Collections.ObjectModel; using System.Threading.Tasks; using System.Linq; namespace MyShop { public class StoresViewModel : BaseViewModel { readonly IDataStore dataStore; public <API key><Store> Stores { get; set;} public <API key><Grouping...
"use strict"; var <API key> = require("@babel/runtime/helpers/<API key>"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _createSvgIcon = <API key>(require("./utils/createSvgIcon")); var _jsxRuntime = require("react/jsx-runtime"); var _default = (0, _createSvgIcon.defaul...
{% extends "layout.html" %} {% block page_title %} Personal details {% endblock %} {% block content %} <main id="content" role="main"> {% include "../includes/phase_banner_alpha.html" %} <form action="contact-details" method="#" class="form"> <div class="grid-row"> <div class="column-two-thi...
#!/usr/bin/python # convert LLVM GenAsmWriter.inc for Capstone disassembler. # by Nguyen Anh Quynh, 2019 import sys if len(sys.argv) == 1: print("Syntax: %s <GenAsmWriter.inc> <Output-GenAsmWriter.inc> <<API key>.inc> <arch>" %sys.argv[0]) sys.exit(1) arch = sys.argv[4] f = open(sys.argv[1]) lines = f.readlines...
#!/usr/bin/env perl use strict; use warnings; # This script is literally translated from the C version. It has two funtionalities: # a) compute the length of the reference sequence contained in an alignment; # b) collapse backward overlaps and generate consensus sequence and quality # During the consensus construction,...
const PlotCard = require('../../plotcard.js'); class RiseOfTheKraken extends PlotCard { setupCardAbilities() { this.interrupt({ when: { onUnopposedWin: event => event.challenge.winner === this.controller }, handler: () => { this.game.addMes...
using System.Drawing; using System.Drawing.Drawing2D; static class DrawHelper { public static GraphicsPath CreateRoundRect(float x, float y, float width, float height, float radius) { GraphicsPath gp = new GraphicsPath(); gp.AddLine(x + radius, y, x + width - (radius * 2), y); gp.AddArc(...
namespace Perspex.Controls { using Layout; public class RightDocker : Docker { public RightDocker(Size availableSize) : base(availableSize) { } public Rect GetDockingRect(Size sizeToDock, Margins margins, Alignments alignments) { var marginsCutout = margin...
class <API key> < ActiveRecord::Migration def change create_table :collect_salaries do |t| t.belongs_to :user t.decimal :money, :precision => 10, :scale => 2 t.date :collect_date t.string :notes t.timestamps null: false end end end
<?php Autoloader::add_core_namespace('Amon'); Autoloader::add_classes(array( 'Amon\\Error' => __DIR__ . '/classes/error.php', 'Amon\\Log' => __DIR__ . '/classes/log.php', 'Amon\\Amon_Data' => __DIR__ . '/classes/amon/data.php', 'Amon\\Amon_Request' => ...
#! /usr/bin/env ruby # <script name> # DESCRIPTION: # Get time series values from Graphite and create events based on values # OUTPUT: # plain text # PLATFORMS: # Linux # DEPENDENCIES: # gem: sensu-plugin # gem: array_stats # USAGE: # #YELLOW # NOTES: # Modifications by Chris Jansen to support wildcard ...
#include "machineoperand.h" #include "basicblock.h" #include <cassert> #include <iostream> #include <new> using namespace TosLang::BackEnd; MachineOperand::MachineOperand() : mKind{ OperandKind::UNKNOWN } { } MachineOperand::MachineOperand(const unsigned op, const OperandKind kind) { assert((kind == OperandKind::IM...
/* This file contains the sigma-delta driver implementation. */ #include "platform.h" #include "hw_timer.h" #include "task/task.h" #include "c_stdlib.h" #include "pcm.h" static const os_param_t <API key> = 0x70636D; // "pcm" static void ICACHE_RAM_ATTR drv_sd_timer_isr( os_param_t arg ) { cfg_t *cfg = (cfg_t *)ar...
module Packet class Reactor include Core #<API key>(20) attr_accessor :fd_writers, :msg_writers,:msg_reader attr_accessor :result_hash attr_accessor :live_workers #after_connection :provide_workers def self.server_logger= (log_file_name) @@server_logger = log_file_name end de...
<h3 class="title">How to Use</h3> <h5 class="htu-content"> <ul class="list-blank text-center"> <li class="list-item-header first"><h3>1</h3></li> <li>Add the AngularJS <a href="https://code.angularjs.org/1.2.16/angular-animate.min.js" target="_blank">ngAnimate</a> script to your project</li> <li class="...
#!/bin/sh tar -xf $INPUT_CODE && mv ping /ping cd /ping && npm install
#ifndef <API key> #define <API key> #include <QHostAddress> #include <QIODevice> #include <QMultiMap> #include <qhttpengine/ibytearray.h> #include "qhttpengine_export.h" class QJsonDocument; class QTcpSocket; namespace QHttpEngine { class QHTTPENGINE_EXPORT SocketPrivate; /** * @brief Implementation of the HTTP protoc...
// Reflect.cs: Creates Element classes from an instance // Miguel de Icaza (miguel@gnome.org) using System; using System.Collections; using System.Collections.Generic; using System.Reflection; using System.Text; using MonoTouch.UIKit; using System.Drawing; using MonoTouch.Foundation; namespace MonoTouch.Dialog { ...
using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.EntityFramework; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Security.Claims; using System.Threading.Tasks; using System.Web; namespace Blog.Models { public class Applica...
<!DOCTYPE HTML> <html lang="en-US" > <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=11; IE=10; IE=9; IE=8; IE=7; IE=EDGE" /> <title> | EMP</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta name="description" conten...
Retrieves the original email in a thread, including headers and attachments, when the reporting user forwarded the original email not as an attachment. You must have the necessary permissions in your email service to execute global search. - EWS: eDiscovery - Gmail: Google Apps Domain-Wide Delegation of Authority ## De...
import createSvgIcon from './utils/createSvgIcon'; import { jsx as _jsx } from "react/jsx-runtime"; export default createSvgIcon( /*#__PURE__*/_jsx("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0...
html { font-family: sans-serif; -<API key>: 100%; -ms-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baselin...
#ifndef ASF_H #define ASF_H /* * This file includes all API header files for the selected drivers from ASF. * Note: There might be duplicate includes required by more than one driver. * * The file is automatically generated and will be re-written when * running the ASF driver selector tool. Any changes will be dis...
import createSvgIcon from './utils/createSvgIcon'; import { jsx as _jsx } from "react/jsx-runtime"; export default createSvgIcon([/*#__PURE__*/_jsx("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m.06 9.34v2.14c-.92.02-1.84-.31-2.54-1.01-1.12-1.12-1.3-2.8-.59-4.13l-1.1-1.1c-1.28 1.94-1.07 4.59....
#!/usr/bin/env python # -*- coding: utf-8 -*- import logging, os logging.basicConfig(level=logging.INFO) from deepy.networks import <API key> from deepy.trainers import SGDTrainer, <API key> from util import get_data, VECTOR_SIZE model_path = os.path.join(os.path.dirname(__file__), "models", "rae1.gz") if __name__ == '...
namespace StringExtensions { using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Reflection; using System.Security.Cryptography; using System.Text; using System.Text.RegularExpressions; <summary> Static class providing vario...
<?php declare(strict_types=1); namespace WyriMaps\Tests\BattleNet\Resource\Async\WorldOfWarcraft; use ApiClients\Tools\<API key>\<API key>; use WyriMaps\BattleNet\Resource\Async\WorldOfWarcraft\EmptyQuest; final class EmptyQuestTest extends <API key> { public function getSyncAsync(): string { return 'As...
# Gsp [![Build Status](https: [![Dependecies Status](https: ## Intro Gsp encourages to use multiple git repositories for development and one subversion repository for production to make code clean, it will be in charge of the synchronous work. Use multiple repositories is very suitable for frontend development, it enco...
module.exports={A:{A:{"2":"K C G E B A WB"},B:{"2":"D u Y I M H"},C:{"1":"6 7","2":"0 1 2 3 UB z F J K C G E B A D u Y I M H N O P Q R S T U V W X w Z a b c d e f L h i j k l m n o p q r s t y SB RB","132":"v","578":"5 g"},D:{"1":"0 1 2 3 5 6 7 t y v g GB BB DB VB EB","2":"F J K C G E B A D u Y I M H N O P Q R S T U V ...
SVG.G = SVG.invent({ // Initialize node create: 'g' // Inherit from , inherit: SVG.Container // Add class methods , extend: { // Move over x-axis x: function(x) { return x == null ? this.transform('x') : this.transform({ x: x - this.x() }, true) } // Move over y-axis , y: function(y) { ...
using System; using System.Collections.Generic; using System.Drawing; using System.Globalization; using System.IO; using System.Windows; using System.Windows.Data; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Runtime.InteropServices; namespace Wox { public class ImagePathConverter : ...
--TEST /** test \n*/ --SKIPIF <?php if (!@include_once('PhpDocumentor/phpDocumentor/DocBlock/Lexer.inc')) { echo 'skip needs <API key> class'; } ?> --FILE <?php require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'setup.php.inc'; $result = $lexer->lex("/** test \n*/"); $phpt->assertEquals(array( array(<API k...
using System.Data.Entity.Migrations; namespace Cake.EntityFramework.TestProject.Postgres.Migrations { public partial class V7 : DbMigration { public override void Up() { } public override void Down() { } } }
using System; using System.Collections.Generic; using System.IO; #if !WINDOWS_UWP using System.Net; using System.Net.Http; #endif // !WINDOWS_UWP using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; #if WINDOWS_UWP using Windows.Foundation; using Windows.Security.Credentials; using Windo...
'use strict'; module.exports = function generate_format(it, $keyword) { var out = ' '; var $lvl = it.level; var $dataLvl = it.dataLevel; var $schema = it.schema[$keyword]; var $schemaPath = it.schemaPath + it.util.getProperty($keyword); var $errSchemaPath = it.errSchemaPath + '/' + $keyword; var $breakOnE...
package org.luban.common.plugin; import org.luban.common.network.URL; /** * * * @author hexiaofeng * @version 1.0.0 * @since 12-12-12 8:47 */ public interface ServicePlugin { /** * * * @return */ String getType(); /** * URL * * @param url */ void setUrl(URL ...
#!/usr/bin/env python2 import ee # Initialize the Earth Engine ee.Initialize() # Small rectangle used to generate the image, over the Amazonian forest. # The location is above the Rondonia (West of Bresil). rectangle = ee.Geometry.Rectangle(-68, -7, -65, -8) # Get the MODIS dataset. collection = ee.ImageCollection('MOD...
require File.expand_path("../../../test_helper", __FILE__) describe Flipflop::Strategies::DefaultStrategy do before do Flipflop::FeatureSet.current.replace do Flipflop.configure do feature :one, default: true feature :two end end end describe "with defaults" do subject do ...
require 'forwardable' require 'puppet/node' require 'puppet/resource/catalog' require 'puppet/util/errors' require 'puppet/resource/<API key>' # Maintain a graph of scopes, along with a bunch of data # about the individual catalog we're compiling. class Puppet::Parser::Compiler extend Forwardable include Puppet::Ut...
package nxt.http; import nxt.Nxt; import nxt.Transaction; import nxt.util.Convert; import org.json.simple.JSONObject; import org.json.simple.JSONStreamAware; import javax.servlet.http.HttpServletRequest; import static nxt.http.JSONResponses.<API key>; import static nxt.http.JSONResponses.MISSING_TRANSACTION; import sta...
# modification, are permitted provided that the following conditions # are met: # the documentation and/or other materials provided with the # distribution. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS # FOR A PARTICULAR PU...
title: Kathryn Borel summary: Writer and editor (The Believer, American Dad!) categories: - editor - mac - writer Who are you, and what do you do? I am [Kathryn Borel, Jr](http: What hardware do you use? Everything I do is done on a 13-inch [MacBook Air][macbook-air], and I just received a [Das Keyboard Model S mechani...
module Octokit class Client module Gists # List gists for a user or all public gists # @param username [String] An optional user to filter listing # @return [Array<Hashie::Mash>] A list of gists # @example Fetch all gists for defunkt # Octokit.gists('defunkt') # @example Fetc...
#ifndef __IUPGTK_DRV_H #define __IUPGTK_DRV_H #ifdef __cplusplus extern "C" { #endif #define iupCOLORDoubleTO8(_x) ((unsigned char)(_x*255)) /* 1.0*255 = 255 */ #define iupCOLOR8ToDouble(_x) ((double)_x/255.0) /* common */ gboolean <API key>(GtkWidget *widget, GdkEventCrossing *evt, Ihandle* ih); gboolean <API key>(Gt...
/*body > section > section > section > div > section > div > div.row > div > div*/ fieldset.contact { position: relative; left: 6%; } .input { position: relative; z-index: 1; display: inline-block; margin: 1em; max-width: 350px; width: calc(100% - 2em); vertical-align: top; } .input ...
require( [ 'gui/Button' ], function (Button) { return; var button = new Button({ main: $('#ui-button') }); button.render(); } );
source $setup tar -xf $src mkdir build cd build ../libsigsegv-$version/configure \ --host=$host \ --prefix=$out \ --enable-static=yes \ --enable-shared=no make make install
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AsanaNet { [Serializable] public class AsanaTeam : AsanaObject, IAsanaData { [AsanaDataAttribute("name")] public string Name { get; private set; } public bool IsObjectLocal { get { return...
<?xml version="1.0" ?><!DOCTYPE TS><TS language="sr" version="2.0"> <defaultcodec>UTF-8</defaultcodec> <context> <name>AboutDialog</name> <message> <location filename="../forms/aboutdialog.ui" line="+14"/> <source>About Fuguecoin</source> <translation>О Fuguecoin-у</translation> </me...
load File.dirname(__FILE__) + '/production.rb' if File.exists? File.dirname(__FILE__) + '/../application.local.rb' require File.dirname(__FILE__) + '/../application.local.rb' end
from typing import Dict import tempfile from dxlclient.client_config import DxlClientConfig from dxlclient.client import DxlClient from dxlclient.broker import Broker from dxlclient.message import Event import demistomock as demisto from CommonServerPython import * from <API key> import * INTEGRATION_NAME = "McAfee DXL...
using System; using System.Collections; using System.Collections.Generic; using System.Web.Http; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Serialization; using <API key>.Serialization; namespace <API key> { public class Configuration { private readonly Dictionary<str...
module SlotMachine # A Slot defines a slot in a slotted. A bit like a variable name but for objects. # PS: for the interested: A "development" of Smalltalk was the # prototype based language (read: JavaScript equivalent) # Slots are the instance names of objects. But since the language is dynamic # what i...
order: 0 title: `jsx import { Steps } from 'antd'; const Step = Steps.Step; ReactDOM.render( <Steps current={1}> <Step title="" description="" /> <Step title="" description="" /> <Step title="" description="" /> <Step title="" description="" /> </Steps> , mountNode); `
var GUID = (function () { function _GUID() { return UUIDcreatePart(4) + UUIDcreatePart(2) + UUIDcreatePart(2) + UUIDcreatePart(2) + UUIDcreatePart(6); }; function UUIDcreatePart(length) { var uuidpart = ""; for (var i = 0; i < length; i...
<?php namespace yii\log; use Yii; use yii\base\Component; /** * Logger records logged messages in memory and sends them to different targets if [[dispatcher]] is set. * * A Logger instance can be accessed via `Yii::getLogger()`. You can call the method [[log()]] to record a single log message. * For convenience, a ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <title>Introduction to OpenFL | HaxeFlixel 2D Game Framework</title> <meta name="description" content="...
package com.github.scribejava.apis.examples; import com.github.scribejava.apis.EtsyApi; import com.github.scribejava.core.builder.ServiceBuilder; import com.github.scribejava.core.model.OAuth1AccessToken; import com.github.scribejava.core.model.OAuth1RequestToken; import com.github.scribejava.core.model.OAuthRequest; i...
<?php namespace Tapestry\Providers; use Exception; use Tapestry\Tapestry; use Tapestry\Entities\Configuration; use Tapestry\Modules\Kernel\DefaultKernel; use Tapestry\Modules\Kernel\KernelInterface; use League\Container\ServiceProvider\<API key>; use League\Container\ServiceProvider\<API key>; class <API key> extends <...
<?php namespace App; use Illuminate\Support\Facades\Route; /* * Clearboard Routes */ Route::group(['middleware' => ['web']], function () { Route::get('/', function() { return view('clearboard.index.viewindex', ['forums' => Forum::all()]); }); Route::get('/forum/{fid}-{_}', 'ForumController@view');...
(function() { 'use strict'; angular .module('app.core') .constant('STATIC_URL', '/static/js/'); })();
<gd-annotation-app></gd-annotation-app>
// software and associated documentation files (the "Software"), to deal in the Software // without restriction, including without limitation the rights to use, copy, modify, merge, // to whom the Software is furnished to do so, subject to the following conditions: // substantial portions of the Software. // INCLUDING ...
@font-face { font-family: 'icomoon'; src:url('fonts/icomoon.eot?-ru2f3j'); src:url('fonts/icomoon.eot?#iefix-ru2f3j') format('embedded-opentype'), url('fonts/icomoon.woff?-ru2f3j') format('woff'), url('fonts/icomoon.ttf?-ru2f3j') format('truetype'), url('fonts/icomoon.svg?-ru2f3j#ico...
namespace Nancy.Swagger.Tests { public class TestModel { public int SomeInt { get; set; } public long SomeLong { get; set; } public long? SomeNullableLong { get; set; } } }
class Fitbit::Activity < Fitbit::Data attr_accessor :activityId, :activityParentId, :activityParentName, :calories, :description, :distance, :duration, :hasStartTime, :isFavorite, :logId, :name, :startTime, :steps def initialize(activity_data, <API key>) @activityId = activity_data['activityId']...
$(document).ready(function(){ //Grabs url path var url = window.location.pathname; //Grabs current file name from URL var url = url.substring(url.lastIndexOf('/')+1); // now grab every link from the navigation $('#navigation a').each(function(){ //Grab the current elements href tag value var link = $(this).attr("href")...
.<API key> { background: -<API key>(top, rgba(175, 175, 175, 1), rgba(170, 170, 170, 1)); box-shadow: inset .1em .1em .5em #aaa, inset -.1em -.1em .5em #aaa; }
.timbr_highlight { border-radius: 4px 4px 4px 4px; -moz-border-radius: 4px 4px 4px 4px; -<API key>: 4px 4px 4px 4px; } .timbr_border1 { border: 3px dashed #ff0000; } .timbr_border2 { border: 3px dashed #ff0099; } .timbr_border3 { border: 3px dashed #a900b8; } .timbr_border4 { border: 3px das...
var fixDate = function(date) { return date.Format('2006-01-02 15:04:05'); }; var entries = executeCommand('getEntries', {}); dbotCommands = []; userCommands = []; for (var i = 0; i < entries.length; i++) { if (typeof entries[i].Contents == 'string' && entries[i].Contents.indexOf('!') === 0 && entries[i].Content...
public class A extends B { public A() {} }
<?php // AdminBundle:Inquiry:inquiry.html.twig return array ( );
<!doctype html> <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> <!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--> <!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<!...
package easyupload.entity; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Lob; @Entity public class FileUpload { public FileUpload(String filename, byte[] file, String mimeType) { this.file = file; this.filename = filename; this.mimeType = mimeType; ...
# guh Changes ## 2.0.1 - Updated typings to match Typings 1.0 ## 2.0.0 - Renamed from Basis to guh - Rewrite from the ground-up - Moved build system core to `guh-core` package - Switched from LiveReload to BrowserSync - Switched from Ruby Sass to libsass - Now requires Node ^5.0 - More flexible configuratio...
"""Tests for wheel binary packages and .dist-info.""" import os import pytest from mock import patch, Mock from pip._vendor import pkg_resources from pip import pep425tags, wheel from pip.exceptions import <API key>, UnsupportedWheel from pip.utils import unpack_file def <API key>(tmpdir): with open(str(tmpdir.join...
<?php namespace PHPExiftool\Driver\Tag\MIEGeo; use JMS\Serializer\Annotation\ExclusionPolicy; use PHPExiftool\Driver\AbstractTag; /** * @ExclusionPolicy("all") */ class Country extends AbstractTag { protected $Id = 'Country'; protected $Name = 'Country'; protected $FullName = 'MIE::Geo'; protected $Gr...
'use strict'; var canUseDOM = require('./canUseDOM'); var one = function() { }; var on = function() { }; var off = function() { }; if (canUseDOM) { var bind = window.addEventListener ? 'addEventListener' : 'attachEvent'; var unbind = window.removeEventListener ? 'removeEventListener' : 'detachEvent'; var prefix =...
'use strict'; describe('angular', function() { var element; afterEach(function(){ dealoc(element); }); describe('case', function() { it('should change case', function() { expect(lowercase('ABC90')).toEqual('abc90'); expect(manualLowercase('ABC90')).toEqual('abc90'); expect(uppercase('a...
<! @license Copyright (c) 2016 The Jviz Project Authors. All rights reserved. The Jviz Project is under the MIT License. See https: <!-- Import components --> <link rel="import" href="../../../polymer/polymer.html"> <link rel="import" href="../../../jviz-styles/jviz-styles.html"> <!-- Import jviz elements --> <link rel...
#ifndef ASF_H #define ASF_H /* * This file includes all API header files for the selected drivers from ASF. * Note: There might be duplicate includes required by more than one driver. * * The file is automatically generated and will be re-written when * running the ASF driver selector tool. Any changes will be dis...
package corehttp // TODO: move to IPNS const WebUIPath = "/ipfs/<API key>" // this is a list of all past webUI paths. var WebUIPaths = []string{ WebUIPath, "/ipfs/<API key>", "/ipfs/<API key>", "/ipfs/<API key>", "/ipfs/<API key>", "/ipfs/<API key>", "/ipfs/<API key>", "/ipfs/<API key>",...
class X where foo :: Int -- Y is something -- nice. class Y where bar :: Int
module.exports = { // Valid `level` configs: // i.e. the minimum log level to capture with sails.log.*() // 'error' : Display calls to `.error()` // 'warn' : Display calls from `.error()` to `.warn()` // 'debug' : Display calls from `.error()`, `.warn()` to `.debug()` // 'info' : Dis...
package org.cs3.prolog.connector.cterm; import org.cs3.prolog.connector.internal.cterm.parser.ASTNode; /** * Represents a Prolog string. */ public class CString extends CTerm { public CString(ASTNode node) { super(node); } }
#include <unordered_set> #include "fakeit/Invocation.hpp" namespace fakeit { struct <API key> { virtual void clear() = 0; virtual ~<API key>() NO_THROWS { } }; struct <API key> { virtual void <API key>(std::unordered_set<fakeit::Invocation *> &into) const = 0; virtual ~<API k...
#!/usr/bin/python # Test the handling of toolset.add-requirements import BoostBuild t = BoostBuild.Tester(pass_toolset=0, <API key>=False) t.write('jamroot.jam', ''' import toolset ; import errors ; rule test-rule ( properties * ) { return <define><API key> ; } toolset.add-requirements <define>TEST_MACRO <conditi...
package org.lib4j.test; import java.util.HashMap; import java.util.Map; import javax.xml.XMLConstants; import javax.xml.transform.Source; import javax.xml.xpath.XPath; import javax.xml.xpath.XPathConstants; import javax.xml.xpath.XPathExpression; import javax.xml.xpath.<API key>; import javax.xml.xpath.XPathFactory; im...
<!DOCTYPE HTML PUBLIC "- <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_66-internal) on Tue Dec 08 09:28:01 GMT 2015 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.apache.jena.sparql.expr.E_Lang (Apache Jena ARQ)</title> <meta name="date" cont...
<?php /** * <API key> adds a panel to the web debug toolbar with Propel information. * * @package symfony * @subpackage debug * @author Fabien Potencier <fabien.potencier@symfony-project.com> * @version SVN: $Id: <API key>.class.php 27284 2010-01-28 18:34:57Z Kris.Wallsmith $ */ class <API key> extends...
# <API key>: true require_relative 'helper' describe 'Digest class' do it 'raises error with invalid digest_class' do assert_raises ArgumentError do Dalli::Client.new('foo', { expires_in: 10, digest_class: Object }) end end end
using UnityEngine; using System.Collections; using System.Runtime.Serialization; namespace StrumpyShaderEditor { [DataContract(Namespace = "http://strumpy.net/ShaderEditor/")] public abstract class ChannelReference { [DataMember] private string nodeIdentifier; [DataMember] private uint channelId...
var partialsTemp = [ "login", "profile" ]; exports.partialRender = function (req, res) { var pageIndex = req.params[0]; if (partialsTemp.indexOf("" + pageIndex) > -1) { res.render("partials/" + pageIndex, {}); } else { res.render("common/404", {}); } };