answer
stringlengths
15
1.25M
<?php $bbcode["code"] = array( 'callback' => 'bbcodeCodeHighlight', 'pre' => TRUE, ); $bbcode["source"] = array( 'callback' => 'bbcodeCodeHighlight', 'pre' => TRUE, ); function bbcodeCodeHighlight($dom, $contents, $arg) { // in <pre> style $contents = preg_replace('/^\n|\n$/', "", $con...
@font-face { font-family: 'Source Sans Pro'; font-style: normal; font-weight: 400; src: local('Source Sans Pro'), local('<API key>'), url(fonts/<API key>.otf) format('opentype'); } @font-face { font-family: 'Source Sans Pro'; font-style: normal; font-weight: 600; src: local('Source Sans Pro Semibold'), ...
FROM microsoft/aspnetcore:2.0 ARG source WORKDIR /app EXPOSE 80 COPY ${source:-obj/Docker/publish} . ENTRYPOINT ["dotnet", "WebApi.dll"]
""" recursely """ __version__ = "0.1" __description__ = "Recursive importer for Python submodules" __author__ = "Karol Kuczmarski" __license__ = "Simplified BSD" import sys from recursely._compat import IS_PY3 from recursely.importer import RecursiveImporter from recursely.utils import SentinelList __all__ = ['install'...
// This file was procedurally generated from the following sources: // - src/dstr-binding/<API key>.case // - src/dstr-binding/error/for-of-let.template assert.throws(ReferenceError, function() { for (let { x = <API key> } of [{}]) { return; } });
import {Component, OnInit} from '@angular/core'; import {MarketCard} from '../market-card'; import {MarketCardType} from '../market-card-type'; import {MarketService} from '../market.service'; import {Expansion} from '../expansion'; import { GameModeService } from '../game-mode.service'; import { GameMode } from '../ga...
package com.lessvoid.coregl; import com.lessvoid.coregl.spi.CoreGL; /** * Simple helper methods to render vertex arrays. * * @author void */ public class CoreRender { private final CoreGL gl; CoreRender(final CoreGL gl) { this.gl = gl; } public static CoreRender createCoreRender(final CoreGL gl) { r...
#include "curl_setup.h" #include <curl/curl.h> #include "urldata.h" #include "getinfo.h" #include "vtls/vtls.h" #include "connect.h" /* Curl_getconnectinfo() */ #include "progress.h" /* The last #include files should be: */ #include "curl_memory.h" #include "memdebug.h" /* * Initialize statistical and informational da...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http: <html xmlns="http: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Simulation &#8212; OSIM 0.1 documentation</title> <link rel="stylesheet" href="_static/alabaster.css" type="text/css" /> <link ...
# coding: utf-8 import sys from setuptools import setup, find_packages NAME = "pollster" VERSION = "2.0.2" # To install the library, run the following # python setup.py install # prerequisite: setuptools REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil", "pandas >= 0.19.1"] setup( name=NAME...
import requests import logging import redis from requests.packages.urllib3.exceptions import ConnectionError from core.serialisers import json from dss import localsettings # TODO(fergal.moran@gmail.com): refactor these out to # classes to avoid duplicating constants below HEADERS = { 'content-type': 'application/j...
unless ENV["HOMEBREW_BREW_FILE"] raise "HOMEBREW_BREW_FILE was not exported! Please call bin/brew directly!" end require "constants" require "tmpdir" require "pathname" HOMEBREW_BREW_FILE = Pathname.new(ENV["HOMEBREW_BREW_FILE"]) TEST_TMPDIR = ENV.fetch("<API key>") do |k| dir = Dir.mktmpdir("homebrew-tests-", ENV[...
include(<API key>) include(<API key>) include(<API key>) include(<API key>) include(hunter_fatal_error) include(<API key>) include(<API key>) include(hunter_status_debug) include(hunter_status_print) include(<API key>) # Continue initialization of key variables (also see 'hunter_initialize') # * calculate toolchain-i...
# modification, are permitted provided that the following conditions are met: # and/or other materials provided with the distribution. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # CONTRIBUTORS BE LIABLE FOR ANY DIRE...
/* * $Log$ * Revision 0.01 2009/09/20 ulrichprinz * First checkin of using DBGU as limited standard USART. * */ //#define NUT_DEPRECATED #include <cfg/os.h> #include <cfg/clock.h> #include <cfg/arch.h> #include <cfg/uart.h> #include <string.h> #include <sys/atom.h> #include <sys/event.h> #include <sys/timer.h> #i...
# Use of this source code is governed by a BSD-style from django.conf import settings from django.conf.urls import include, patterns, url from django.views.decorators import csrf from django.views.generic import base from django.contrib import admin admin.autodiscover() from devincachu.destaques import views as dviews ...
{-# LANGUAGE TupleSections #-} module Arbitrary.TestModule where import Data.Integrated.TestModule import Test.QuickCheck import Data.ModulePath import Control.Applicative import Arbitrary.Properties import Test.Util import Filesystem.Path.CurrentOS import Prelude hiding (FilePath) import qualified Arbitrary.ModulePath...
# -*- coding: utf-8 -*- class Pkg @pkgDir @jailDir def self.init() @pkgDir = System.getConf("pkgDir") @jailDir = System.getConf("jailDir") end def self.main(data) if (data["control"] == "search") then search(data["name"]).each_line do |pname| pname...
#!/usr/bin/env python # modification, are permitted provided that the following conditions # are met: # with the distribution. # * Neither the name of the Willow Garage nor the names of its # contributors may be used to endorse or promote products derived # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, IN...
#! /usr/bin/env python # -*- coding: utf-8 -*- from __future__ import print_function import urllib from OpenGL.GL import * from OpenGL.GLU import * from OpenGL.GLUT import * from jp.ac.kyoto_su.aokilab.dragon.mvc.model import OpenGLModel from jp.ac.kyoto_su.aokilab.dragon.mvc.view import * from jp.ac.kyoto_su.aokilab.d...
from lino.core.roles import UserRole class SimpleContactsUser(UserRole): pass class ContactsUser(SimpleContactsUser): pass class ContactsStaff(ContactsUser): pass
#ifndef COAP_BLOCK_H_ #define COAP_BLOCK_H_ #include "encode.h" #include "option.h" #include "pdu.h" /** * @defgroup block Block Transfer * API functions for handling PDUs using CoAP BLOCK options * @{ */ #ifndef COAP_MAX_BLOCK_SZX /** * The largest value for the SZX component in a Block option. */ #define COAP_M...
from django.db.models import Transform from django.db.models import DateTimeField, TimeField from django.utils.functional import cached_property class TimeValue(Transform): lookup_name = 'time' function = 'time' def as_sql(self, compiler, connection): lhs, params = compiler.compile(self.lhs) ...
#include <errno.h> #include <unistd.h> #include <sys/types.h> // define function pointer typedef off64_t (*llamaos_lseek64_t) (int, off64_t, int); // function pointer variable static llamaos_lseek64_t llamaos_lseek64 = 0; // function called by llamaOS to register pointer void <API key> (llamaos_lseek64_t func) { lla...
<?php header('Content-Type: text/html; charset=utf-8'); require_once 'Akna.php'; $user = ''; $pass = ''; $akna = new Akna( $user, $pass ); $contacts = $akna->emailMarketing->contacts; $messages = $akna->emailMarketing->messages; $campaigns = $akna->emailMarketing->campaigns; try { // $result_1 = $contacts->...
// Use of this source code is governed by a BSD-style package sequtil import ( "errors" "github.com/dmiller/go-seq/iseq" "github.com/dmiller/go-seq/murmur3" //"fmt" "math" "reflect" ) // Hash returns a hash code for an object. // Uses iseq.Hashable.Hash if the interface is implemented. // Otherw...
#pragma once #include "AffineTransform.h" #include "CanvasPathMethods.h" #include "<API key>.h" #include "CanvasStyle.h" #include "Color.h" #include "FloatSize.h" #include "FontCascade.h" #include "FontSelectorClient.h" #include "GraphicsContext.h" #include "GraphicsTypes.h" #include "ImageBuffer.h" #include "Path.h" #...
#include <stdlib.h> #include <string.h> #include <stdio.h> #include "vm_strings.h" #include <assert.h> String *String_alloc(size_t length) { String *p = (String *)calloc(1, sizeof(String) + (length+1) * sizeof(char)); p->length = length; return p; } String *String_new(char *orig) { String *s = String_al...
#!/usr/bin/env python __author__ = 'Adam R. Smith, Michael Meisinger, Dave Foster <dfoster@asascience.com>' import threading import traceback import gevent from gevent import greenlet, Timeout from gevent.event import Event, AsyncResult from gevent.queue import Queue from pyon.core import MSG_HEADER_ACTOR from pyon.cor...
# 98Fmplayer (beta) PC-98 FM driver emulation (very early version) ![gtk screenshot](/img/screenshot_gtk.png?raw=true) ![gtk toneviewer screenshot](/img/screenshot_gtk.toneview.png?raw=true) ![gtk config screenshot](/img/screenshot_gtk.config.png?raw=true) ![w2k screenshot](/img/screenshotw2k.png?raw=true) *If you are ...
""" Module for listing commands and help. """ from basemodule import BaseModule, BaseCommandContext from alternatives import _ class HelpContext(BaseCommandContext): def cmd_list(self, argument): """List commands""" arg = argument.lower() index = self.bot.help_index public = "public ...
cask 'feeder' do version '3.6.8' sha256 '<SHA256-like>' url "https://reinventedsoftware.com/feeder/downloads/Feeder_#{version}.dmg" appcast "https://reinventedsoftware.com/feeder/downloads/Feeder#{version.major}.xml" name 'Feeder' homepage 'https://reinventedsoftware.com/feeder/' app "Feeder #{version.maj...
{-# LANGUAGE TemplateHaskell, QuasiQuotes, OverloadedStrings #-} module Handler.Root where import Foundation -- This is a handler function for the GET request method on the RootR -- resource pattern. All of your resource patterns are defined in -- config/routes -- The majority of the code you will write in Yesod lives ...
<?php namespace MtMail\Factory; use Interop\Container\ContainerInterface; use MtMail\ComposerPlugin\DefaultHeaders; class <API key> { public function __invoke(ContainerInterface $serviceLocator) { if (!method_exists($serviceLocator, 'configure')) { $serviceLocator = $serviceLocator->getServi...
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class Form1 Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try ...
// This file was procedurally generated from the following sources: // - src/async-generators/<API key>.case // - src/async-generators/syntax/<API key>.template throw "Test262: This statement should not be evaluated."; var C = class { async *gen() { void yi\u0065ld; }};
#ifndef HSFC_PORTABLE_H #define HSFC_PORTABLE_H #include <iostream> #include <string> #include <vector> #include <set> #include <memory> #include <iterator> #include <algorithm> #include <stdint.h> #include <boost/assert.hpp> #include <boost/exception/all.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr....
#!/usr/bin/env python #modification, are permitted provided that the following conditions are met: # and/or other materials provided with the distribution. #ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED #WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE #ANY DIRECT...
# Customize below path information #TET_INSTALL_PATH=/scratchbox/TETware CURRENT_USER=`echo $HOME` TET_INSTALL_PATH=$CURRENT_USER/sbs/TETware # temporary fix for SPRC if [ "$TET_ROOT_DIR" != "" ]; then TET_INSTALL_PATH=$TET_ROOT_DIR fi TET_SIMUL_PATH=$TET_INSTALL_PATH/tetware-simulator TET_TARGET_PATH=$TET_INSTALL_...
<!DOCTYPE HTML PUBLIC "- <!--NewPage <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_22) on Tue Mar 08 15:19:00 PST 2011 --> <TITLE> Uses of Class com.perforce.p4java.ant.tasks.ServerTask.GlobalOption (P4Ant) </TITLE> <META NAME="date" CONTENT="2011-03-08"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../.....
L.CommunistWorker = L.AbstractWorker.extend({ statics: { // number of web workers, not using web workers when falsy NUM_WORKERS: 2 }, initialize: function (workerFunc) { this.workerFunc = workerFunc; }, onAdd: function (map) { this._workers = L.CommunistWorker.createW...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace nora.clara.machine { public enum Event { OPEN_REQUEST, ACTION_REQUEST, DEATH_REQUEST, CONNECTED_TO_STEAM, <API key>, <API key>, <API k...
package com.jme3.gde.core.filters.impl; import com.jme3.gde.core.filters.AbstractFilterNode; import com.jme3.gde.core.filters.FilterNode; import com.jme3.post.Filter; import com.jme3.water.WaterFilter; import org.openide.loaders.DataObject; import org.openide.nodes.Node; import org.openide.nodes.Sheet; @org.openide.uti...
<?php namespace Nether\Object\Meta; use Attribute; use Nether\Object\Prototype\AttributeInterface; use Nether\Object\Prototype\PropertyAttributes; #[Attribute(Attribute::TARGET_PROPERTY)] class PropertyOrigin implements AttributeInterface { /*// @date 2021-08-05 @related Nether\Object\Prototype::__Construct when attach...
#!/usr/bin/perl # Adduser script # Get user data from signup database # Create PAM+Satan user # Insert user data into adduser database # Assign servers to user # Create containers with lxc-add remote script use warnings; use strict; use Readonly; use FindBin qw($Bin); use File::Basename qw(basename); use POSIX qw(isdig...
var assert = require("assert"); var types = require("ast-types"); var n = types.namedTypes; var b = types.builders; var inherits = require("util").inherits; function Entry() { assert.ok(this instanceof Entry); } function FunctionEntry(returnLoc) { Entry.call(this); n.Literal.assert(returnLoc); Object.defineProp...
{ Copyright (c) 2014-2020, Clockwork Dev Studio All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the...
#ifndef <API key> #define <API key> #include <mutex> #include "aos/linux_code/ipc_lib/aos_sync.h" #include "aos/common/logging/logging.h" #include "aos/common/type_traits.h" #include "aos/common/macros.h" namespace aos { // A mutex with the same API and semantics as ::std::mutex, with the addition of // methods for che...
#pragma once namespace ASL { struct Expr { public: constructor Expr(); destructor virtual ~Expr(); private: }; } // namespace ASL
{% extends "fieldsight/fieldsight_base.html" %} {% load i18n staticfiles %} {% load filters %} {% block content %} <div id="main-content" class="padding"> {% if messages %} {% for message in messages %} <div class="alert alert-{% if message.tags %}{{ message.t...
#import<Foundation/Foundation.h> #import<Cocoa/Cocoa.h> extern NSMutableArray *search_results; @interface SearchController : NSObject<<API key>, NSTableViewDelegate> { } @end
class Gosec < Formula desc "Golang security checker" homepage "https://securego.io/" url "https://github.com/securego/gosec/archive/v2.7.0.tar.gz" sha256 "<SHA256-like>" license "Apache-2.0" head "https://github.com/securego/gosec.git" bottle do sha256 cellar: :any_skip_relocation, arm64_big_sur: "<SH...
var http = require('http') var url = require('url') var path = require('path') var sleep = require('sleep-ref') var Router = require("routes-router") var concat = require('concat-stream') var ldj = require('ldjson-stream') var manifest = require('level-manifest') var multilevel = require('multilevel') var extend = requ...
Ext.define('Sample.Application', { extend: 'Devon.App', name: 'Sample', requires:[ 'Sample.Simlets' ], controllers: [ 'Sample.controller.main.MainController', 'Sample.controller.table.TablesController', 'Sample.controller.cook.CookController' ], launch: functi...
package com.glob3mobile.vectorial.processing; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Comparator; import java.util.List; import com.glob3mobile.utils.Progress; import com.glob3mobile.vectorial.lod.<API key>; import com.glob3mobile.vectorial.lod.mapdb.<API key>; impo...
const minDateStr = "-271821-04-20T00:00:00.000Z"; const minDate = new Date(-8640000000000000); assert.sameValue(minDate.toISOString(), minDateStr, "minDateStr"); assert.sameValue(Date.parse(minDateStr), minDate.valueOf(), "parse minDateStr"); const maxDateStr = "+275760-09-13T00:00:00.000Z"; const maxDate = new Date(86...
package ru.biocad.ig.alicont.conts.simple import ru.biocad.ig.alicont.algorithms.simple.SemiglobalAlignment import ru.biocad.ig.alicont.conts.SimpleAlicont class AlicontSemiglobal(maxheight : Int, query : String, gap : Double, score_matrix : Array[Array[Double]]) extends SimpleAlicont(maxheight : Int, query : String,...
#include <catch.hpp> #include <rapidcheck/catch.h> using namespace rc; TEST_CASE("scaleInteger") { prop("for uint32_t, equal to naive way", [] { const auto x = *gen::arbitrary<uint32_t>(); const auto size = *gen::nonNegative<int>(); RC_ASSERT(gen::detail::scaleInteger(x, size) == ...
#ifndef EXTRACTION_WAY_HPP #define EXTRACTION_WAY_HPP #include "extractor/guidance/road_classification.hpp" #include "extractor/travel_mode.hpp" #include "util/guidance/turn_lanes.hpp" #include "util/typedefs.hpp" #include <string> #include <vector> namespace osrm { namespace extractor { namespace detail { inline void ...
#include <math.h> #include "evas_common.h" #include "evas_blend_private.h" typedef struct _RGBA_Span RGBA_Span; typedef struct _RGBA_Edge RGBA_Edge; typedef struct _RGBA_Vertex RGBA_Vertex; struct _RGBA_Span { EINA_INLIST; int x, y, w; }; struct _RGBA_Edge { double x, dx; int i; }; struct _RGBA_Vertex { ...
#ifndef <API key> #define <API key> namespace APrinter { #define AMBRO_STRUCT_IF(name, condition) \ template <bool name##__IfEnable, typename name##__IfDummy = void> \ struct name##__impl {}; \ using name = name##__impl<(condition)>; \ template <typename name##__IfDummy> \ struct name##__impl <true, name##__IfDummy> #d...
#include <ntddk.h> #include <xen.h> #include <util.h> #include "hypercall.h" #include "dbg_print.h" #include "assert.h" #define <API key> 2 #pragma code_seg("hypercall") __declspec(allocate("hypercall")) static UCHAR __Section[(<API key> + 1) * PAGE_SIZE]; static ULONG XenBaseLeaf = 0x40000000; static USH...
# modification, are permitted provided that the following conditions are met: # and/or other materials provided with the distribution. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # CONTRIBUTORS BE LIABLE FOR ANY DIR...
@module fimbul.v35.material_template local material_template = {} function material_template:new(y) local neu = y or {} -- Do a deep resolve if neu.material then neu = neu.material end setmetatable(neu, self) self.__index = self neu.templatetype = "material" -- TODO: Check if everything is...
var crypto = require('crypto'); var Canvas = require('canvas'); var _ = require('lodash'); var bu = require('./bufutil'); var fmt = require('util').format; var unpack = require('./unpack'); var bright = require('./bright'); function fprint(buf, len) { if (len > 64) throw new Error(fmt("sha512 can only gener...
<?php namespace AppZap\PHPFramework\Tests\Functional\Testapp\Controller; use AppZap\PHPFramework\Mvc\AbstractController; class IndexController extends AbstractController { /** * @return string */ public function cli() { return ''; } }
#include <mscorlib/System/Runtime/Serialization/<API key>.h> #include <mscorlib/System/<API key>.h> #include <mscorlib/System/<API key>.h> namespace mscorlib { namespace System { namespace Runtime { namespace Serialization { //Public Methods ...
#include "<API key>.h" #include <cds/intrusive/msqueue.h> #include <cds/gc/dhp.h> namespace queue { #define TEST(X) void <API key>::test_##X() { test<X>(); } namespace { typedef <API key>::base_hook_item< ci::msqueue::node<cds::gc::DHP > > base_item_type; typedef <API key>::member_hook_item< ci:...
var compilerSupport=require('../../src/compilerSupport');var main = function () { var __builder = new compilerSupport.TaskBuilder(), __state = 0, __continue = __builder.CONT, __ex; var data; return __builder.run(function () { switch (__state) { case 0: { data = 12345; ...
package test import ( "github.com/tidepool-org/platform/config" "github.com/tidepool-org/platform/log" "github.com/tidepool-org/platform/version" ) type Provider struct { <API key> int VersionReporterStub func() version.Reporter <API key> []version.Reporter <API key> *version...
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/epoll.h> #include <arpa/inet.h> #define BUFF_SIZE 1024 int main(int argc, const char *argv[]) { int i = 0; char buff[BUFF_SIZE]; ssize_t msg_len = 0; int srv_fd = -...
/* * The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. * * Find the sum of all the primes below two million. */ #include <stdio.h> #include <stdint.h> #include "euler.h" #define PROBLEM 10 int main(int argc, char **argv) { uint64_t sum = 0, number = 0; do { number++; if(is_prime(number))...
using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Text; namespace Mkko.Configuration { [<API key>(typeof(<API key>), AddItemName = "<API key>", CollectionType = <API key>.BasicMap)] public class <API key> : <API key> { public override <API ke...
import pytest import urllib.error from urlpathlib import UrlPath def test_scheme(): # does not raise NotImplementedError UrlPath('/dev/null').touch() def <API key>(): with pytest.raises(NotImplementedError): UrlPath('http:///tmp/test').touch() def <API key>(): with pytest.raises(NotImplementedEr...
#endregion using System.Collections.Generic; namespace DexterCS { public class <API key> { public string ProjectName { get; set; } public string ProjectFullPath { get; set; } private List<string> sourceDirs; public List<string> SourceDirs { get { return source...
require "language/node" class HttpServer < Formula desc "Simple zero-configuration command-line HTTP server" homepage "https://github.com/http-party/http-server" url "https://registry.npmjs.org/http-server/-/http-server-13.0.1.tgz" sha256 "<SHA256-like>" license "MIT" head "https://github.com/http-party/htt...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Ocronet.Dynamic.Recognizers; using Ocronet.Dynamic.OcroFST; using Ocronet.Dynamic; using Ocronet.Dynamic.ImgLib; using Ocronet.Dynamic.Interfaces; using Ocronet.Dynamic.Utils; using Ocronet.Dynamic.IOData; using System.IO; using...
class Opusfile < Formula desc "API for decoding and seeking in .opus files" homepage "https: url "https://archive.mozilla.org/pub/opus/opusfile-0.11.tar.gz" sha256 "<SHA256-like>" revision 1 bottle do cellar :any rebuild 1 sha256 "<SHA256-like>" => :catalina sha256 "<SHA256-like>" => :mojave...
cask 'opera-beta' do version '50.0.2762.42' sha256 '<SHA256-like>' url "https://get.geo.opera.com/pub/opera-beta/#{version}/mac/Opera_beta_#{version}_Setup.dmg" name 'Opera Beta' homepage 'https: auto_updates true app 'Opera Beta.app' end
#ifndef IVW_GLFWEXCEPTION_H #define IVW_GLFWEXCEPTION_H #include <modules/glfw/glfwmoduledefine.h> #include <inviwo/core/common/inviwo.h> #include <inviwo/core/util/exception.h> namespace inviwo { /** * \class GLFWException */ class IVW_MODULE_GLFW_API GLFWException : public Exception { public: GLFWException(cons...
package com.xfsi.xav.validation.images.jpeg; import java.io.DataInputStream; import java.io.EOFException; import java.io.IOException; import java.io.InputStream; import java.util.LinkedList; /** * Handles JPEG input stream. Tracks total bytes read and allows putting back of read data. */ class JpegInputStream { ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http: <html xmlns="http: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>CLI - bossing Varnish around &mdash; Varnish version 4.0.0 documentation</title> <link rel="stylesheet" href="../_static/default.cs...
var searchData= [ ['lcd_2ec',['lcd.c',['../lcd_8c.html',1,'']]], ['lcd_2eh',['lcd.h',['../lcd_8h.html',1,'']]], ['light_2ec',['light.c',['../light_8c.html',1,'']]], ['light_2eh',['light.h',['../light_8h.html',1,'']]] ];
using System; using System.Collections.Generic; using System.Linq; using MatterHackers.VectorMath; namespace MatterHackers.PolygonMesh { public static class FaceBspTree { private static readonly double considerCoplaner = .1; <summary> This function will search for the first face that pro...
using System; using System.Reflection; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace LabVIEW_CLI { class Program { static bool connected = false; static bool stop = false; static int Main(string[] args) ...
from celery.task import Task import requests class StracksFlushTask(Task): def run(self, url, data): requests.post(url + "/", data=data)
package com.ferox.math.bounds; import com.ferox.math.*; /** * <p/> * Frustum represents the mathematical construction of a frustum. It is described as a 6 sided convex hull, * where at least two planes are parallel to each other. It supports generating frustums that represent * perspective projections (a truncated ...
module Convert.LRChirotope where -- standard modules import Data.List import qualified Data.Map as Map import Data.Maybe import qualified Data.Set as Set -- local modules import Basics import Calculus.FlipFlop import Helpful.General --import Debug.Trace { - FlipFlop to Chirotope <API key> :: Network [String] (ARel Fli...
Some tips for using linspecer I personally like the first color to be black, so I begin with: colors = [0,0,0; linspecer(10)]; which creates an 11x3 matrix of RGB colors. Note: you must add the linspecer to your path via: addpath('~\<API key>/linspecer') you can add this to the startup.m file, found in your def...
var files = [ [ "Code", "<API key>.html", "<API key>" ] ];
{-# LANGUAGE FlexibleContexts #-} module BRC.Solver.Error where import Control.Monad.Error (Error(..), MonadError(..)) -- | Solver errors, really just a container for a possibly useful error message. data SolverError = SolverError String deriving (Eq, Ord) instance Show (SolverError) where show (SolverError msg) = "S...
package cocoonClient.Panels; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import javax.swing.Box; import javax.swing.BoxLayout; import javax.swing.JScrollPane; import javax.swing.JTable; ...
<!DOCTYPE HTML PUBLIC "- <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 06 12:54:17 CET 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Trash.Mode</title> <meta name="date" content="2015-03-06"> <link rel="stylesheet" type="text/css"...
package com.iteamsolutions.angular.models.atom import scalaz.{ Failure => _, Success => _, _ } * The '''Link''' type is the Domain Object Model representation of an final case class Link ( val href : URI, val rel : String \/ URI, val title : Option[String] ) { } object Link { }
package de.lman; import de.lman.engine.Colors; import de.lman.engine.Game; import de.lman.engine.InputState; import de.lman.engine.Keys; import de.lman.engine.Mouse; import de.lman.engine.math.Mat2f; import de.lman.engine.math.Scalar; import de.lman.engine.math.Transform; import de.lman.engine.math.Vec2f; import de.lma...
{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} module NW.Monster where import NW.Stats data MonsterClass = MCFighter | MCMage deriving (Eq, Show) data Monster = Monster { mClass :: MonsterClass , mName :: String , mStatsBase :: [Stat] , mLootBonus :: Int } deriving (...
package org.jvnet.jaxb2_commons.plugin.mergeable; import java.util.Arrays; import java.util.Collection; import javax.xml.namespace.QName; import org.jvnet.jaxb2_commons.lang.JAXBMergeStrategy; import org.jvnet.jaxb2_commons.lang.MergeFrom2; import org.jvnet.jaxb2_commons.lang.MergeStrategy2; import org.jvnet.jaxb2_comm...
using System; using System.Collections.Generic; using System.Drawing; using DevExpress.XtraBars; namespace bv.winclient.Core.TranslationTool { public partial class PropertyGrid : BvForm { public ControlDesigner SourceControl { get; private set; } public ControlModel Model { get; private set; } ...
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('freebasics', '<API key>'), ] operations = [ migrations.AddField( model_name='<API key>', name='postgres_d...
// modification, are permitted provided that the following conditions // are met: // the documentation and/or other materialsprovided 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 PARTICU...