text
stringlengths
3
1.05M
namespace Scheme { class Token { private: int line_; int column_; int length_; std::string text_; Scheme::TokenType type_; public: Token(int line, int column, int length, std::string const &text, Scheme:...
/** * Helpers */ ( function(exports) { var __slice = [].slice; var __hasProp = {}.hasOwnProperty; var __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; ...
A deterministic, cryptographically strong, password generator ## Is it safe? Safe? Probably. Secure? Probably. Generally usable? [Perhaps Not](https://tonyarcieri.com/4-fatal-flaws-in-deterministic-password-managers) Seriously, read that article by [https://github.com/tarcieri](@tarcieri). I built this tool as an ...
<?xml version="1.0" encoding="utf-8"?> <!--瀑布流Fragment通用布局--> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical"> <android...
import sys reload(sys) sys.setdefaultencoding('utf-8') from common import public class qyxg_weiyangwang(): need_check_ziduan = [ 'bbd_table', 'search_key' ] def check_bbd_table(self, indexstr, ustr): ret = None if ustr and len(ustr): pass else: ...
/* PM Script Manager 1.0 Postmedia Network Inc Built: Sept 26, 2011 DESCRIPTION: The script manager keeps track of previously loaded scripts and will not re-load the same script name twice (unless specified). If the page is not ready it will insert inline script tags. If the page is ready, it will execute an a...
<?php /* * This file is part of Sulu. * * (c) MASSIVE ART WebServices GmbH * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Sulu\Component\Webspace\Url; use Sulu\Component\Webspace\Url; use Sulu\Component\Webspace\Webspace; /** * Pr...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_71) on Mon Dec 29 09:30:59 CET 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>org.togglz.core.rep...
/* globals emailSettings, DDPRateLimiter */ /* Send a transcript of the room converstation to the given email */ Meteor.methods({ 'livechat:sendTranscript'(rid, email,roomdata) { check(rid, String); check(email, String); var messages = RocketChat.models.Messages.find({'rid': rid}, { sort: { 'ts' : 1 }})...
<!DOCTYPE html> {% load staticfiles %} <html lang=en> <head> <title>{% block title %}Place Holder Text{% endblock %}</title> <script src="{% static 'js/vendor/custom.modernizr.js' %}"></script> <link rel="stylesheet" href="{% static 'css/foundation.css' %}"/> <link rel="stylesheet" href="{% static 'css/...
package cherry.foundation.download; import java.io.IOException; import java.nio.charset.Charset; import java.util.List; import javax.servlet.http.HttpServletResponse; import org.joda.time.LocalDateTime; import cherry.foundation.querydsl.QueryConfigurer; import com.mysema.query.types.Expression; ...
<?php return [ 'development-environment' => true ];
<?php namespace app\models; use Yii; use app\models\general\GeneralLabel; use app\models\general\GeneralMessage; /** * This is the model class for table "tbl_pengurusan_anjuran". * * @property integer $pengurusan_anjuran_id * @property string $nama_program_anjuran * @property string $tarikh_program_anjuran * ...
#ifndef DiProfiler_h__ #define DiProfiler_h__ #include "Singleton.h" #include "Timer.h" namespace Demi { class DiProfilerBlock { public: DiProfilerBlock(DiProfilerBlock* parent, const char* name) : mName(name), mTime(0), mMaxTime(0), mCount(0), ...
var config = require('../knexfile'); var env = process.env.NODE_ENV || 'development'; var knex = require('knex')(config[env]); module.exports = knex; knex.migrate.latest([config]);
""" ================================LICENSE====================================== Copyright (c) 2015 Chirag Mello & Mario Tambos 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...
<?php namespace Deploy\Reader; use Symfony\Component\EventDispatcher\EventDispatcherInterface; interface ReaderInterface { /** * Check if current dir is repository * * @throws \RuntimeException if the current directory is not a git repository */ function isRepo(); /** * Set the current version of ...
<?php namespace common\models; use Yii; /** * This is the model class for table "{{%role}}". * * @property integer $id * @property string $name * @property integer $isDeleted * @property integer $isActive * * @property User[] $users */ class Role extends \yii\db\ActiveRecord { const GUEST = 1; const...
if(NOT DEFINED CMAKE_INSTALL_PREFIX) set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") # Set the install configuration name. if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) if(BUILD_TYPE) string(REGEX REPLACE "^[^A-Za-z0-9_...
<?php declare(strict_types=1); namespace Altair\Happen; interface EventDispatcherInterface { public const HIGH_PRIORITY = 100; public const NORMAL_PRIORITY = 0; public const LOW_PRIORITY = -100; /** * Add a listener for an event. * * @param string $event * @param callable $liste...
*, *:before, *:after {box-sizing: border-box !important;} .panel-heading{font-size:24px;text-align: center;} .entry-content>.panel-primary>.panel-heading {font-size:14px;text-align: left;} .entry-content>.panel-primary>.panel-body{text-align: justify;} .social-icon{ width:50px; height:auto; } .summary-date {...
<resources> <string name="app_name">PescodWeather</string> </resources>
namespace xrtl { namespace gfx { namespace es3 { ES3ShaderModule::ES3ShaderModule(ES3ObjectLifetimeQueue* queue) : queue_(queue) { } ES3ShaderModule::~ES3ShaderModule() = default; void ES3ShaderModule::PrepareAllocation() { queue_->EnqueueObjectAllocation(this); } void ES3ShaderModule::Release() { queue_->Enq...
do { \ fprintf(stderr, MAGENTA FUBAR "(%s:%d:%s) " M RESET, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); \ exit(EXIT_FAILURE); \ } while(0) //always show errors. your face is about to melt off #define log_err(M, ...) fprintf(stderr, ORANGE ERROR "(%s:%d:%s) " M RESET, __FILE__, __LINE_...
package com.wiwit.eplweb.dao; import java.util.List; import javax.transaction.Transactional; import org.hibernate.Session; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Service; import com.wiwit.eplweb.model.Matchday; import com.wiwit.eplweb.model.MatchdayRating; imp...
using namespace DirectX; static const int gRSMSpotResolution = 32; static const int gRSMPointResolution = 32; namespace TiledLighting11 { RSMRenderer::RSMRenderer() :m_CameraCallback( 0 ), m_pVPLBufferCenterAndRadius( 0 ), m_pVPLBufferCenterAndRadiusSRV( 0 ), m_pVPLBufferCenterAn...
namespace v8 { namespace base { // This is a v8::PageAllocator implementation that allocates pages within the // pre-reserved region of virtual space. This class requires the virtual space // to be kept reserved during the lifetime of this object. // The main application of bounded page allocator are // - V8 heap poi...
package org.apache.nifi.deprecation.log; import java.util.Objects; /** * Logger Factory provides concrete instances of Deprecation Loggers */ public class DeprecationLoggerFactory { /** * Get Deprecation Logger for Reference Class * * @param referenceClass Reference Class for deriving Logger ...
import { useRouteMeta, Helmet } from 'dumi'; import React, { useMemo } from 'react'; const CommonHelmet = () => { const meta = useRouteMeta(); const [title, description] = useMemo(() => { const helmetTitle = `${meta.frontmatter.subtitle || ''} ${meta.frontmatter.title} - Ant Design`; let helmetDescription...
from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('lots_admin', '0001_initial'), ...
<?php /** * Miscellaneous Module * * @since 5.8 */ if (class_exists('SU_Module')) { class SU_Misc extends SU_Module { function get_module_title() { return __('Miscellaneous', 'seo-ultimate'); } function get_menu_pos() { return 30; } function admin_page_contents() { echo '<p>' . __('The Miscella...
set -ex # ENV Variables, Note: NOW_TOKEN in travisCI ORIGIN='*' # NOW config TEAM='micro-medium-api' PROJECT='micro-medium-api' ALIAS='micro-medium-api.now.sh' export PATH="./node_modules/.bin:$PATH" # 1. Wair for deployment ready URL=$(now -e ORIGIN="$ORIGIN" --public --token "$NOW_TOKEN" --team $TEAM) await-url "$...
This repository contains the awards1287 collection and the queries with various degree of optimization. These queries have been used to illustrate the effect of the optimization techniques proposed in the paper.
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="author" content="www.frebsite.nl" /> <meta name="viewport" content="width=device-width initial-scale=1.0 maximum-scale=1.0 user-scalable=yes" /> <title>jQuery.mmenu demo</title> <link type="text/css" rel="stylesheet" href="css/demo.css" /> ...
package com.itheima.newsdemo.base; import android.app.Activity; import android.view.View; import android.widget.FrameLayout; import android.widget.TextView; import com.hello.zhbj52.R; /** * 主页下4个子页面的基类 */ public class BasePager { public Activity mActivity; public View mRootView;// 布局对象 public Tex...
namespace Checkpoints { typedef std::map<int, uint256> MapCheckpoints; // How many times we expect transactions after the last checkpoint to // be slower. This number is a compromise, as it can't be accurate for // every system. When reindexing from a fast disk with a slow CPU, it // can be up to 2...
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://www.netbeans.org/ns/project/1"> <type>org.netbeans.modules.ruby.rubyproject</type> <configuration> <data xmlns="http://www.netbeans.org/ns/ruby-project/1"> <name>ruby-debug-ide (trunk)</name> <source-roots> ...
package org.socraticgrid.hl7.services.uc.functional; import org.socraticgrid.hl7.services.uc.internal.interfaces.IdGeneratorIntf; /** * @author Jerry Goodnough * @version 1.0 * @created 16-Dec-2013 3:54:57 PM */ public class MessageIdGenerator { IdGeneratorIntf generator; public String getNewMessageId() { ...
// Copyright 2018 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writi...
<resources> <string name="app_name">provider</string> <string name="provider_permissions_group">com.owlr.permission.group.PROVIDER</string> </resources>
<?php namespace Manju\Interfaces; interface Converter { /** * Returns types managed by the converter * @return array<string> */ public static function getTypes(): array; /** * Convert value from bean to a correct scallar value * @param mixed $value * @return mixed */ ...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>metacoq-checker: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
using NetMud.Data.Architectural; using NetMud.Data.Architectural.PropertyBinding; using NetMud.DataAccess; using NetMud.DataAccess.Cache; using NetMud.DataStructure.Administrative; using NetMud.DataStructure.Architectural; using NetMud.DataStructure.Combat; using NetMud.DataStructure.Linguistic; using NetMud.DataStruc...
package apollo.editor; import java.util.HashMap; import java.util.Map; import java.io.Serializable; /** * Value class for transaction object classes * Presently used for Transaction. Should eventually be used * by FeatureChangeEvents as well. */ public class TransactionClass implements Serializable { priva...
package mxberry.io; import java.io.IOException; import java.nio.file.FileVisitResult; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.SimpleFileVisitor; import java.nio.file.attribute.BasicFileAttributes; public class DeletingFileVisitor extends SimpleFileVisitor<Path>{ @Override public...
@charset "UTF-8"; .ui-calendar-big[data-bimonthly="false"] { width: 526px; } .ui-calendar-big[data-bimonthly="false"] .calmonth[data-offset='0'] { width: 526px; } .ui-calendar-big[data-bimonthly="false"] td { width: 74px; } .ui-calendar-big[data-bimonthly="false"] .nodate, .ui-calendar-big[data-bimonthly="false"] .c...
/** * @author yomboprime https://github.com/yomboprime * * GPUComputationRenderer, based on SimulationRenderer by zz85 * * The GPUComputationRenderer uses the concept of variables. These variables are RGBA float textures that hold 4 floats * for each compute element (texel) * * Each variable has a fragment shad...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information namespace DotNetNuke.Web.UI.WebControls { using System; using System.Web.UI; using DotNetNuke.Servic...
CXFA_FFSubForm::CXFA_FFSubForm(CXFA_WidgetAcc* pDataAcc) : CXFA_FFWidget(pDataAcc) {} CXFA_FFSubForm::~CXFA_FFSubForm() {}
package org.mitre.midiki.workshop; import java.io.Serializable; /** * Represents a physical symptom, and whether the symptom must * be present or absent. Typically, disease descriptions show those symptoms * which must be present, while diagnosis queries may contain symptoms which * have been identified as absent...
Step 8: Adding role based ACL security ====================================== **Note:** > This bundle ships with support different security setups. You can also have a look at [Adding role based ACL security](7-adding_role_based_acl_security.md). To use the built in Acl system, it must first be initialised with the ...
<?xml version="1.0" encoding="UTF-8"?> <project-private xmlns="http://www.netbeans.org/ns/project-private/1"> <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/> <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2"> <group> <file>file...
package main import "log" // stdLogger provides a logger backed by the standard library logger. This is a // placeholder until we can open source our logger. type stdLogger struct{} func (l *stdLogger) Error(args ...interface{}) { log.Print(args...) } func (l *stdLogger) Errorf(format string, args .....
module GoodData VERSION = '0.6.24' class << self # Version def version VERSION end # Identifier of gem version # @return Formatted gem version def gem_version_string "gooddata-gem/#{VERSION}/#{RUBY_PLATFORM}/#{RUBY_VERSION}" end end end
/* * Generates a Merkle Tree representation of a given object. Useful * for verifying data in a distributed system and allows efficient * reconciliation of version conflicts. * * The Merkle Tree looks like: * * Master Hash * / \ * Hash 0 Hash 1 *...
package edu.ouc.dp.reactor.channel; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.SocketChannel; import java.util.concurrent.LinkedBlockingQueue; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class NioSocketChannel extends NioCha...
package com.wja.edu.service; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.wja.base.common.CommSpecification; import com.wja.base.common.service.CommService; import com.wja.base.util.BeanUtil; import com.wja.ba...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_45) on Thu Jul 02 20:17:43 EEST 2015 --> <title>VectorTileDecoder</title> <meta name="date" content="2015-07-02"> <link rel="stylesheet" type="...
SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
<?php namespace utils\exceptions; class Database_exception extends \Exception { public function __toString() { return 'TEST EXCEPTION'; } }
'use babel'; import { FLOW_COVERAGE_SUMMARY_DATA } from './fixtures'; const LIB_REPORT_TEXT = '../lib/report-text'; const NPM_TABLE = 'terminal-table'; beforeEach(() => { jest.resetModules(); }); it('generate Text report', async () => { const mockPrint = jest.fn(); const mockTables = []; const mockTable =...
<?php namespace App\Containers\AppSection\Authentication\UI\API\Tests\Functional; use App\Containers\AppSection\Authentication\Notifications\EmailVerified; use App\Containers\AppSection\Authentication\UI\API\Tests\ApiTestCase; use App\Containers\AppSection\User\Models\User; use Illuminate\Support\Facades\Notification...
<?php namespace Zilf\Db\mysql; use Zilf\Db\ExpressionBuilderInterface; use Zilf\Db\ExpressionBuilderTrait; use Zilf\Db\ExpressionInterface; use Zilf\Db\JsonExpression; use Zilf\Db\Query; use Zilf\Helpers\Json; /** * Class JsonExpressionBuilder builds [[JsonExpression]] for MySQL DBMS. * * @author Dmytro Naumenko...
THE FISHERMAN AND HIS WIFE There was once a fisherman who lived with his wife in a pigsty, close by the seaside. The fisherman used to go out all day long a-fishing; and one day, as he sat on the shore with his rod, looking at the sparkling waves and watching his line, all on a sudden his float was dragged away ...
<?php namespace AnyContent\CMCK\Modules\Backend\Core\Edit; use AnyContent\CMCK\Modules\Backend\Core\Application\Application; use AnyContent\CMCK\Modules\Backend\Core\Repositories\RepositoryManager; use CMDL\FormElementDefinition; use AnyContent\CMCK\Modules\Backend\Core\Context\ContextManager; use AnyContent\CMCK\Mo...
package org.semispace.actor; /** * The manifest is used when an object is sent without having a clear destination. */ public class ActorManifest { private Long holderId; private Long originatorId; public ActorManifest( Long holderId, Long originatorId) { this.holderId = holderId; this.o...
<!DOCTYPE HTML> <html lang="en"> <head> <title>WebRTC test</title> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script type="text/javascript" src="http://cdn.peerjs.com/0.3/peer.min.js"></script> <script type="text/javascript" src="scr...
var vows = require('vows'); var assert = require('assert'); var suite = vows.describe('math'); require('../env.js'); suite.addBatch({ 'sum' : { 'topic' : function () { return CBuffer; }, 'Calculate sum' : function (CBuffer) { var tmp; tmp = new CBuffer(1,2,3,4); assert.equal (tmp...
// // UIImage+AIImage.h // iOS常用功能 // // Created by CosyVan on 2016/11/13. // Copyright © 2016年 Aimmy. All rights reserved. // #import <UIKit/UIKit.h> @interface UIImage (AIImage) /* * 图片裁剪,适用于圆形头像之类 */ + (UIImage *)imageWithClipImage:(UIImage *)image borderWidth:(CGFloat)borderWidth borderColor:(UIColor *)col...
<!DOCTYPE doc [ <!NOTATION unknot PUBLIC "Unknown"> <!ENTITY % pe> ]> <doc/>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>weak-up-to: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min....
import { smButtonModule } from './elements/button/button'; import { smRatingModule } from './modules/rating/rating'; ((): void => { 'use strict'; angular .module('semantic.ui', [ smButtonModule.name, smRatingModule.name ]); })();
package com.cronutils.model.time.generator; import com.cronutils.mapper.ConstantsMapper; import com.cronutils.mapper.WeekDay; import com.cronutils.model.field.CronField; import com.cronutils.model.field.CronFieldName; import com.cronutils.model.field.expression.FieldExpression; import com.cronutils.model.field.expre...
Ukrycie wykonania długich lub blokujących zadań poprzez wykonanie ich w tle ### Responsywność
'use strict'; const expect = require('chai').expect; const printableProperties = require('../../../lib/utilities/printable-properties'); describe('printable-properties', function() { describe('command', function() { let command = printableProperties.command; it('forEachWithProperty', function() { let...
package com.company; import java.util.Scanner; public class SmallShop { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String product = scanner.nextLine(); String town = scanner.nextLine(); double number = Double.parseDouble(scanner.nextLine());...
<?php /** * This file is part of Bengkel * * (c) Muhamad Surya Iksanudin<surya.kejawen@gmail.com> * * @author : Muhamad Surya Iksanudin **/ namespace AppBundle\Security\Authentication; use Symfony\Component\Security\Core\Authentication\SimplePreAuthenticatorInterface; use Symfony\Component\Security\Core\Authenti...
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (...
'use strict'; var _ = require('lodash'), util = require('util'), moment = require('moment'), async = require('async'), baseModel = require('./model-base'), Schemas = require('../schemas').Schemas, dayWiseAvSchema = Schemas.peakHourWeekdayAverage, daywiseAvModel; /** * Constructor for the user model */ functi...
This module provides internationalisation and localisation functionality. ## Usage To use this module, just do: **`i18n = import('i18n')`**. The following functions will then be available as methods on the object with the name `i18n`. You can, of course, replace the name `i18n` with anything else. ### i18n.gettext()...
<?php namespace scorchsoft\scorchcore\modules\media\widgets; use scorchsoft\scorchcore\modules\media\MediaAsset; use Yii; use yii\base\Widget; use yii\bootstrap\ActiveForm; class Media extends Widget { public $model; public function init() { parent::init(); $this->registerAsset(); }...
package com.dataart.spreadsheetanalytics.engine; import static com.dataart.spreadsheetanalytics.engine.graph.GraphBuilderUtils.buildSingleVertexGraphForCellWithValue; import static com.dataart.spreadsheetanalytics.engine.graph.GraphBuilderUtils.buildSingleVertexGraphForEmptyCell; import static com.dataart.spread...
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>Géot'Landes, votre cabinet Géom...
#include "config.h" #include "WebFrame.h" #include "FloatRect.h" #include "Frame.h" #include "FrameTestHelpers.h" #include "FrameView.h" #include "Range.h" #include "ResourceError.h" #include "URLTestHelpers.h" #include "WebDataSource.h" #include "WebDocument.h" #include "WebFindOptions.h" #include "WebFormElement....
package org.jetbrains.plugins.groovy.refactoring.introduceVariable; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.editor.Editor; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiType; import com.intellij.psi.impl.source.PostprocessReformattingAspect; import com...
#pragma once #define HUMOTO_TEST_MODULE_NAME wpg04 #include "regression_test_helpers.h" #include "utilities.h" namespace humoto_tests { namespace wpg04 { class VerificationData { public: humoto::Solution solution_; humoto::wpg04::Mo...
import { GraphQLString, GraphQLObjectType } from "graphql" import moment from "moment" import _ from "lodash" import { ResolverContext } from "types/graphql" enum DayOfWeek { Monday = "Monday", Tuesday = "Tuesday", Wednesday = "Wednesday", Thursday = "Thursday", Friday = "Friday", Saturday = "Saturday", ...
package com.example.coolweather.model; public class Country { private int id; private String countryName; private String countryCode; private int cityId; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getCountryName() { return countryName; } public void...
namespace AR { class LongColumn: public ColumnInternal<long> { public: bool bind(sqlite3_stmt *statement, const int columnIndex, const id value) const override; const char *sqlType(void) const override; NSString *sqlValueFromRecord(ActiveRecord *record) const override; long...
<!-- THIS IS AUTO-GENERATED CONTENT. DO NOT MANUALLY EDIT. --> This image is part of the [balena.io][balena] base image series for IoT devices. The image is optimized for use with [balena.io][balena] and [balenaOS][balena-os], but can be used in any Docker environment running on the appropriate architecture. ![balena...
from __future__ import division import math import re __copyright__ = "Copyright 2015, Kai Hendrik Behrends" __license__ = "MIT" __version__ = "15.03" # Used G-codes # ============ # G4 P<duration ms>: Dwell # M300 S<frequency Hz> P<duration ms>: Play beep sound # Changelog # ========= # 15.03 - Fix...
Imports System.Drawing Imports Accord.Neuro Imports Grasshopper.Kernel Imports Owl Public Class ConstructNetwork Inherits GH_Component Sub New() MyBase.New("Construct Network", "Network", "Construct Owl.Accord Network", "Owl.Accord", "Primitive") End Sub Public Overrides ReadOnly Property Co...
namespace Loon.Foundation { using Loon.Utils.Xml; using Loon.Utils; using System; using System.Collections.Generic; public class NSDoc { public static NSObject Parse(String res) { return Parse(res); } public static NSObject Parse(System.IO.Stream s) { XMLDocument doc = XMLParser.Par...
""" Copyright 2016 Rackspace Author: Rahman Syed <rahman.syed@gmail.com> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicab...
Version 0.6.0 : - Cake dependency update to 1.1.0 Version 0.5.0 : - Cake dependency update to 0.38.2 Version 0.3.3 : - Add possibilities to handle multiple projects at the same time Version 0.3.2 : - Add value resolvers type to easily handle value coming from string, args or environment variables ...
angular module to manage a collection linked to a restful repository with a select-able instance
const bodyparser = require('body-parser'); // Express const express = require('express'); const app = express(); // use stylus const stylus = require('stylus'); app.use(stylus.middleware(process.argv[3])); // static app.use(express.static(process.argv[3])); app.listen(parseInt(process.argv[2]));
var request = require('request'); var cheerio = require('cheerio'); var drWho = function() { this.name = 'dr-who'; this.displayname = 'Dr Who'; this.description = 'Gives you a random Dr Who quote'; } drWho.prototype.init = function(){ var self = this; this.listen('dr who me', 'standard', function(...