text
stringlengths
3
1.05M
using ElectronicObserver.Backfire.BFUtility.Mathematics; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ElectronicObserver.Backfire.Data { /// <summary> /// 入渠ドックの情報を保持します。 /// </summary> public class DockData : ResponseWrapper, IIden...
namespace Slang { namespace JSONDiagnostics { #define DIAGNOSTIC(id, severity, name, messageFormat) const DiagnosticInfo name = { id, Severity::severity, #name, messageFormat }; #include "slang-json-diagnostic-defs.h" #undef DIAGNOSTIC } static const DiagnosticInfo* const kJSONDiagnostics[] = { #define DIAGNOSTIC(id,...
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Class ServerKeepaliveStrategy </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Class ServerKeepaliveStr...
SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
class WebAppInfoImageSource : public gfx::ImageSkiaSource { public: WebAppInfoImageSource(int dip_size, std::map<SquareSizePx, SkBitmap> icons); WebAppInfoImageSource(const WebAppInfoImageSource&) = delete; WebAppInfoImageSource& operator=(const WebAppInfoImageSource&) = delete; ~WebAppInfoImageSource() over...
plumbery.fitting module ======================= .. automodule:: plumbery.fitting :members: :undoc-members: :show-inheritance:
@implementation DOImage - (instancetype)initWithJSON:(NSDictionary *)json { self = [super init]; if (self) { self.imageId = [json[@"id"] unsignedIntegerValue]; self.name = json[@"name"]; NSString *type = json[@"type"]; if ([type isEqualToString:@"snapshot"]) { self.t...
namespace eja { struct chat_data { eja::entity::ptr entity; std::string message; chat_type type; }; class chat_idle_component final : public idle_component { public: using ptr = std::shared_ptr<chat_idle_component>; private: static const size_t s_delay = sec_to_ms(3); http_socket::ptr m_socket =...
package ezain.poc.jgohw.domain; import com.google.appengine.api.users.User; import com.google.common.base.Objects; import com.googlecode.objectify.annotation.Cache; import com.googlecode.objectify.annotation.Entity; import com.googlecode.objectify.annotation.Id; @Entity @Cache public class Hello { @Id privat...
(function() { 'use strict'; /************************************************************************************ * @ngdoc controller * @name PageController * @module metricapp * @requires $scope * @requires $location * * @description * Manages the navbar for all users. * Realizes the control layer for {navbar.view}. ...
int main () { int integerA = 0; int integerB = 0; puts("Input two integers"); printf("%s", "Give the First integer: "); scanf("%d", &integerA); printf("%s", "Give the Second integer: "); scanf("%d", &integerB); if (integerA > integerB) puts("The First integer is larger"); ...
 using System; using System.Collections.Generic; using System.Reflection; using Microsoft.VisualStudio.TestTools.UnitTesting; using Org.Apache.REEF.Tang.Examples; using Org.Apache.REEF.Tang.Formats; using Org.Apache.REEF.Tang.Interface; using Org.Apache.REEF.Tang.Util; namespace Org.Apache.REEF.Tang.Tests.Utilities ...
struct real_pcre; namespace Mirb { class Regexp: public Object { private: static value_t to_s(Regexp *obj); static value_t source(Regexp *obj); static value_t escape(String *str); static value_t rb_initialize(Regexp *obj, value_t pattern); static value_t rb_match(Regexp *obj, String *string); s...
namespace MAIRecorder { partial class FormDSTargetCSV { /// <summary> /// Erforderliche Designervariable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Verwendete Ressourcen bereinigen. /// </summary> //...
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>spring-cloud-lattice-samp...
module My::TermsHelper end
export { Faction } from "./Faction"; export { Game } from "./Game"; export { GameLobbyData } from "./GameLobbyData"; export { GameOptions } from "./GameOptions"; export { GamePlayData } from "./GamePlayData"; export { IGame } from "./IGame"; export { IIndexable } from "./IIndexable"; export { IPlayer } from "./IPlayer"...
FROM balenalib/etcher-pro-debian:sid-build ENV GO_VERSION 1.16 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "3770f7eb22d05e25fbee8fb53c2a4e897da043eb83c69b9a14f8d98562cd8098 go$GO_VERSION.linux-arm64.tar.gz" | sha256sum -c - \ && tar ...
// Type definitions for PIXI with Phaser Deviations. declare module PIXI { export var game: Phaser.Game; export var WEBGL_RENDERER: number; export var CANVAS_RENDERER: number; export var VERSION: string; export enum blendModes { NORMAL, ADD, MULTIPLY, SCREEN, ...
var service = require('./lib/service'), joi = require('joi'), schema = require('./lib/schema'), routes = require('./lib/routes'), config = {}; exports.register = function(server, options, next){ config = options; var validation = joi.validate(options, schema) if(validation.error){ var err = ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>equations: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.c...
const {describe, it} = global; import _ from 'lodash'; import {expect} from 'chai'; import Promise from 'bluebird'; import ValidateContribution from '/lib/modules/magic/validate_contribution'; import {default as contribution3552 } from './files/contributions/3552.js'; import {default as contribution8054 } from './files...
#ifndef __SIMHUB_H #define __SIMHUB_H #include <list> #include <string> #include <thread> #include "elements/attributes/attribute.h" #include "libs/plugins/common/queue/concurrent_queue.h" #include "plugins/common/simhubdeviceplugin.h" class ConfigManager; // forward reference /** * Base of the simhub app controll...
<?php namespace Controller; use \Core\Request as Request; use \Core\Application as App; use \Core\Resource as Resource; use \Core\Document as Document; use \Core\Router as Router; use \Core\Controller as Controller; /** * The Application controller. * */ class Application { /*...
FactoryGirl.define do factory :batch, :class => Ddr::Batch::Batch do name "Batch" description "This is a batch of stuff to do." user { FactoryGirl.create(:user) } factory :collection_creating_ingest_batch do after(:create) do |batch, evaluator| # Collection coll = create(:collec...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; namespace JimBobBennett.JimLib.Events { public class WeakEventManager { // ReSharper disable once StaticFieldInGenericType private static readonly object SyncObj = new object(); private static readonly ...
module Crypto.Saltine.Core.Sign ( SecretKey, PublicKey, Keypair(..), Signature, newKeypair, sign, signOpen, signDetached, signVerifyDetached ) where import Crypto.Saltine.Internal.Sign ( c_sign_keypair , c_sign , c_sign_open , c_sign_detached , c_si...
require 'spec_helper' module Typhoid describe "Uri" do subject { Uri.new *uris } let(:uris) { ["http://localhost/", "users"] } its(:to_s) { should == "http://localhost/users" } it "sets base" do subject.base.to_s.should == "http://localhost" end it "sets path" do subject.paths.sh...
require File.expand_path("../../Homebrew/emacs_formula", __FILE__) class ClGeneric < EmacsFormula desc "Forward compatibility library for Emacs 24 and below" homepage "https://elpa.gnu.org/packages/cl-generic.html" url "https://elpa.gnu.org/packages/cl-generic-0.3.el" sha256 "f893845a425e414d5a5769670b958b36cb...
/* *此脚本的功能是解决UI穿透问题,当点击一个按钮时,可能跟着连后面的物体也点击了,触发了物体的事件。 *解决UI方法是,点击一个地方时,判断穿透了几个物体,如果是一个,说明只有canvas一个,可以触发事件。 *如果大于一个,则不触发事件。 *穿透的所有物体都保存在raycastResult数组里。 */ using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.EventSystems; public class MouseCLic...
Please make sure you bring photo ID with you. This can be ONE of the following: * passport, including foreign passports, and expired passports where the photograph is still recognisable * identity card (including European identity cards) * driving licence * senior citizen's public transport photo pass issued by a loca...
/** * SETUP **/ var app = app || {}; /** * MODELS **/ app.Record = Backbone.Model.extend({ idAttribute: '_id', defaults: { _id: undefined, pivot: '', name: '' }, url: function() { return '/admin/categories/'+ (this.isNew() ? '' : this.id +'/'); } }); app.Rec...
<?xml version="1.0" encoding="UTF-8"?> <section name="Workbench"> <section name="RefactoringWizard.preview"> <item value="600" key="width"/> <item value="400" key="height"/> </section> <section name="org.eclipse.ltk.ui.refactoring.settings"> <item value="true" key="deleteSubPackages"/> <item value="false" ke...
<?php /* Unsafe sample input : get the field userData from the variable $_GET via an object sanitize : none construction : use of sprintf via a %s with simple quote */ /*Copyright 2015 Bertrand STIVALET Permission is hereby granted, without written agreement or royalty fee, to use, copy, modify, and distribute t...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
using Bramble.Core; using Malison.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Praedium.Engine.UI; using Praedium.Engine.Components; using Praedium.Core.GameObjects; using SFML.Window; namespace Praedium.Core.Components { public cl...
/* * s3verify (C) 2016 Minio, Inc. * * 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 ...
<?php namespace vino\PillarBundle\Entity\Repository; use Doctrine\ORM\EntityRepository; /** * BestellingRepository * * This class was generated by the Doctrine ORM. Add your own custom * repository methods below. */ class BestellingRepository extends EntityRepository { public function findAllSortedById() { ...
module NSXDriver ONE_LOCATION = ENV['ONE_LOCATION'] unless defined?(ONE_LOCATION) if !ONE_LOCATION RUBY_LIB_LOCATION = '/usr/lib/one/ruby' \ unless defined?(RUBY_LIB_LOCATION) GEMS_LOCATION = '/usr/share/one/gems' \ unless defined?(GEMS_LOCATION) else RU...
//****************************************************************************************************** // DigitalValue.cs - Gbtc // // Copyright © 2012, Grid Protection Alliance. All Rights Reserved. // // Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See // th...
/** * Clone given object * @param {*} obj Object to be copied (or any other type actually) * @return {*} Cloned object */ function clone(obj) { if (null === obj || "object" != typeof obj) return obj; var copy = obj.constructor(); for (var attr in obj) { if (obj.hasOwnProperty(attr)) copy[attr] = obj[at...
from google.cloud import bigquery_storage_v1 async def sample_create_write_stream(): # Create a client client = bigquery_storage_v1.BigQueryWriteAsyncClient() # Initialize request argument(s) request = bigquery_storage_v1.CreateWriteStreamRequest( parent="parent_value", ) # Make the ...
package org.json; /* Copyright (c) 2006 JSON.org 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, including without limitation the rights to use, copy, modify, merge...
(function (can, GGRC) { 'use strict'; can.Map.extend('GGRC.VM.BaseTreePeopleField', { source: null, people: [], peopleStr: '', init: function () { this.refreshPeople(); }, refreshPeople: function () { this.getPeopleList() .then(function (data) { this.attr('pe...
<template name="Add_Academic_Plan_Widget"> <div class="ui padded container segment"> <div class="ui dividing header"><h4>ADD ACADEMIC PLAN</h4></div> <form class="ui equal width form {{successClass}} {{errorClass}}"> <div class="fields"> {{> Input_Form_Field label="Slug" name="slug" placeholde...
layout: post title: Centos 6 Docker CE Installation date: '2017-12-19T17:53:00.000+03:00' author: Onur Atçı tags: - docker modified_time: '2017-11-30T17:53:00.000+03:00' --- Centos 6.x is not supported by Docker and sometimes upgrade to Centos 7.x takes time. A little risky but clean solution is kernel upgrade. You ...
import * as ts from 'typescript'; import { Rule, chain, Tree, SchematicsException, } from '@angular-devkit/schematics'; import { RemoveChange, InsertChange, visitTSSourceFiles, commitChanges, } from '../../schematics-core'; function replaceWithRuntimeChecks(): Rule { return (tree: Tree) => { // o...
package vgrechka.phizdetsidea.phizdets.psi.impl; import com.intellij.openapi.util.io.FileUtil; import com.intellij.openapi.vfs.VirtualFile; import vgrechka.phizdetsidea.phizdets.PyNames; import vgrechka.phizdetsidea.phizdets.psi.PyCallExpression; import vgrechka.phizdetsidea.phizdets.psi.PyExpression; import vgrechka...
/* Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1. https://leetcode.com/problems/balanced-binary-tree/ */ /** * Definition for a binary tree node....
using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("MvvmCross DiskInfo Plugin (PCL)")] [assembly: AssemblyDescription("MvvmCross plugin for getting s...
<?xml version="1.0" encoding="UTF-8"?> <plugin id="org.opensds.vmware.ngc" defaultBundle="org_opensds_storage_devices"> <resources> <resource locale="{locale}"> <module uri="locales/ngc-ui-{locale}.swf"/> </resource> </resources> <dependencies> <!-- Allow HTML Client to display plug...
'use strict'; var assert = require('chai').assert; var cli = require('..')(); describe('<%= moduleName %>', function() { it('have a parse method', function(done) { assert.ok(cli.parse); done(); }); const assert = require('chai').assert; var exec = require('child-process-promise').exec; var commands...
""" siilo.storages.filesystem ~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2014 by Janne Vanhala. :license: MIT, see LICENSE for more details. """ from functools import wraps import errno import io import os from .._compat import urljoin, quote from siilo.exceptions import ( FileNotAccessibleViaURLE...
[![Build](https://travis-ci.org/scssphp/scssphp.svg?branch=master)](http://travis-ci.org/scssphp/scssphp) [![License](https://poser.pugx.org/scssphp/scssphp/license)](https://packagist.org/packages/scssphp/scssphp) `scssphp` is a compiler for SCSS written in PHP. Checkout the homepage, <http://scssphp.github.io/scssp...
package com.frc2879.newcomen.controls; import edu.wpi.first.wpilibj.Joystick; import edu.wpi.first.wpilibj.buttons.Trigger; public class JoystickPOVTrigger extends Trigger { private final Joystick joystick; public JoystickPOVTrigger(Joystick joystick) { // TODO Auto-generated constructor stub this.joystick =...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. package com.azure.communication.callingserver.models; import com.azure.core.util.ExpandableStringEnum; import java.util.Collection; /** Defines values for RecordingChannel. */ public final class RecordingChannel extends E...
Django REST Framework Integration ================================= If you've got an API powered by `Tom Christie <https://twitter.com/_tomchristie>`_'s excellent `Django REST Framework <http://www.django-rest-framework.org/>`_ and want to serve images in multiple sizes/renditions ``django-versatileimagefield`` has yo...
<?php declare(strict_types=1); namespace EnumType; use WsdlToPhp\PackageBase\AbstractStructEnumBase; /** * This class stands for ImAddressKeyType EnumType * @package Ews * @subpackage Enumerations * @author WsdlToPhp <contact@wsdltophp.com> */ class EwsImAddressKeyType extends AbstractStructEnumBase { /** ...
package com.soulwarelabs.ecmabox.core.dependency.broker.network; import java.io.IOException; import org.apache.commons.io.IOUtils; import com.soulwarelabs.ecmabox.convention.Immutable; import com.soulwarelabs.ecmabox.convention.Private; import com.soulwarelabs.ecmabox.core.dependency.broker.ResourceScriptBroker; im...
"use strict"; //import Captcha from "../../captcha/index.js"; class TalkPage { static templates = { content: ` <div class="talk-layout"> <div class="row-holder"> <div class="dynamic"> <div class="controls"> <ul class="...
// <copyright file="StringExtensionsTest.cs" company="Logikfabrik"> // Copyright (c) 2016 anton(at)logikfabrik.se. Licensed under the MIT license. // </copyright> namespace Logikfabrik.Umbraco.Jet.Test.Extensions { using Jet.Extensions; using Microsoft.VisualStudio.TestTools.UnitTesting; [TestClass] ...
<?php /** * Created by PhpStorm. * User: Stefan * Date: 26.09.2014 * Time: 11:04 */ namespace D4rk4ng3l\Oxid\CodeGenerator\Php; use D4rk4ng3l\Oxid\CodeGenerator\GeneratorInterface; class PhpUse implements GeneratorInterface { private $use = array(); /** * @param $className */ public funct...
#include "DarkPixFilter.h" namespace Voxel { DarkPixFilter::DarkPixFilter(float aThrNear, float phThrNear, float aThrFar, float phThrFar, float ambThresh): Filter("DarkPixFilter"), _aThrNear(aThrNear), _phThrNear(phThrNear), _aThrFar(aThrFar), _phThrFar(phThrFar), _ambThresh(ambThresh) { _addParameters({ Fi...
namespace dbus { class Bus; } // namespace dbus namespace chromeos { // IpPeripheralServiceClient is used to communicate with the DBus interface // (org.chromium.IpPeripheralService) exposed by the IP Peripheral service on // Chrome OS devices that support IP-based cameras and other peripherals. The IP // Peripheral...
#ifndef SIMVOLEON_SOORTHOSLICE_H #define SIMVOLEON_SOORTHOSLICE_H #include <Inventor/nodes/SoShape.h> #include <Inventor/fields/SoSFUInt32.h> #include <Inventor/fields/SoSFEnum.h> #include <Inventor/fields/SoSFBool.h> #include <Inventor/fields/SoSFNode.h> #include <VolumeViz/C/basic.h> // *************************...
name 'flocker_control' description 'Deploy the Flocker control node to support an Apache Mesos cluster.' run_list *%w[ role[basic] flocker::default flocker::control ]
const AbstractHandler = Jymfony.Component.Logger.Handler.AbstractHandler; /** * No-op handler. Handle all records, but does nothing * * @memberOf Jymfony.Component.Logger.Handler */ export default class NoopHandler extends AbstractHandler { /** * @inheritdoc */ isHandling() { return true;...
import unittest import umsgpack import storjnode import btctxstore from storjnode.network.messages import base from storjnode.network.messages import signal class TestNetworkMessagesSignal(unittest.TestCase): def setUp(self): self.btctxstore = btctxstore.BtcTxStore(testnet=False, dryrun=True) sel...
(bbn_resolve) => { ((bbn) => { let script = document.createElement('script'); script.innerHTML = `<div :class="[componentClass, 'bbn-box', 'bbn-spadded']"> <div v-if="ready && showList" style="z-index: 2"> <div v-for="(f, idx) in currentData" :class="['bbn-flex-width', 'bbn-bordered', 'bb...
@interface PodsDummy_Pods_Barricade_BarricadeTests : NSObject @end @implementation PodsDummy_Pods_Barricade_BarricadeTests @end
class CXProgressCtrl : public CProgressCtrl { DECLARE_DYNAMIC(CXProgressCtrl) public: CXProgressCtrl(); virtual ~CXProgressCtrl(); typedef enum _ALIGN_TEXT_ { ALIGN_LEFT = 0x00, ALIGN_CENTER, ALIGN_RIGHT }ALIGN_TEXT; public: inline void SetBarColor(COLORREF clr) { m_clrB...
package org.gradle.test.performance.mediummonolithicjavaproject.p351; import org.junit.Test; import static org.junit.Assert.*; public class Test7033 { Production7033 objectUnderTest = new Production7033(); @Test public void testProperty0() { Production7030 value = new Production7030(); ...
//--------------------------------------------------------------------------- // Greenplum Database // Copyright (C) 2011 EMC Corp. // // @filename: // CLogicalLeftOuterJoin.cpp // // @doc: // Implementation of left outer join operator //--------------------------------------------------------------------------- #in...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_26) on Mon Oct 07 06:41:31 UTC 2013 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class org.apache.hadoop.y...
namespace DoLess.Bindings { public enum BindingTraceEventType { Warning, Error } }
package com.intellij.psi.impl.source.codeStyle; import com.intellij.formatting.*; import com.intellij.injected.editor.DocumentWindow; import com.intellij.lang.*; import com.intellij.lang.injection.InjectedLanguageManager; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.diagnos...
/*! \class SoTimerSensor SoTimerSensor.h Inventor/sensors/SoTimerSensor.h \brief The SoTimerSensor class is a sensor which will trigger at given intervals. \ingroup sensors Use sensors of this class when you want a job repeated at a certain interval, without explicitly needing to reschedule the sensor (i...
/* * 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 writing, software * distribut...
{% extends "base.html" %} {% block title %}Download {{ doc.properties.get("wof:name") |e }} Descendants{% endblock %} {% block content %} <div class="row" id="wof-bundler" data-parent-id="{{ parent_id |e }}" data-wof-bbox="{{ doc.bbox.1|e }},{{ doc.bbox.0|e }},{{ doc.bbox.3|e }},{{ doc.bbox.2|e }}" data-parent-name="{{...
"use strict"; const Path = require("path"); const Hapi = require("@hapi/hapi"); /* TEMPLATE RENDERING */ const Vision = require("@hapi/vision"); const ejs = require("ejs"); /* STATIC FILES */ const Inert = require("@hapi/inert"); /* LOAD CUSTOM PLUGIN(S) */ const RouteHandler = require("./plugins/serverRoute"); cons...
<?php # Copyright 2016 Wayne D Grant (www.waynedgrant.com) # Licensed under the MIT License require_once("AlmanacSource.php"); require_once("BaseSource.php"); require_once("AstronomySource.php"); require_once("ExtraSource.php"); require_once("ForecastSource.php"); require_once("IndoorSource.php"); require_once("Weath...
/** * The interfaces provided are listed below, along with usage samples. * * <p>======================= BaseBigQueryReadClient ======================= * * <p>Service Description: BigQuery Read API. * * <p>The Read API can be used to read data from BigQuery. * * <p>New code should use the v1 Read API going f...
package com.ait.lienzo.client.core.shape.wires.event; import com.ait.lienzo.client.core.event.AbstractNodeDragEvent; import com.ait.lienzo.client.core.event.INodeXYEvent; import com.ait.lienzo.client.core.shape.wires.WiresContainer; /** * <p>Event that is fired when a wires container drag starts.</p> */ public cl...
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Model_chat extends CI_Model { /** * Index Page for this controller. * * Maps to the following URL * http://example.com/index.php/welcome * - or - * http://example.com/index.php/welcome/index * - or - * Since this c...
onmessage = function(e) { var data = JSON.parse(e.data); if (data[0] != 'sandboxed frame msg') return; var param = data[1]; e.source.postMessage(JSON.stringify(['remote frame msg', param]), '*'); };
#pragma once #include <linux/version.h> /** * Linux's madvise() makes slightly stronger guarantees about decommitting * memory than posix_madvise() does. Specifically, MADV_FREE (on 4.5 or newer) * will decommit, and MADV_DONTNEED might decommit. Also, posix_madvise(..., * DONTNEED) is a no-op on Linux with mos...
<# # #> . $PSScriptRoot/GeneralInfo.ps1 if ($psEditor) { Register-EditorCommand ` -Name "Environment.GetHardwareInfo" ` -DisplayName "Get information about the hardware of the machine" ` -Function Get-CGVSCHardwareInfo Register-EditorCommand ` -Name "Repo.Status" ` -...
<?php /** * Doctrine_Hook_WordLike * * @package Doctrine * @subpackage Hook * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 1.0 * @version $Revision: 7490 $ * @author Konsta Vesterinen <kvesteri@cc.hut.fi...
package org.n52.youngs.validation; import java.io.File; import java.io.IOException; import java.net.URISyntaxException; import java.nio.file.Paths; import java.util.Collection; import java.util.logging.Level; import java.util.logging.Logger; import org.hamcrest.CoreMatchers; import org.junit.Assert; import org.junit...
Ring programming language - Website folder ========================================== In this folder we have the Ring website files http://ring-lang.net Please never modify the html files (*.html) directly because these files are generated automatically from templates by the Ring script (build.ring) To modify the d...
<!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" xml:lang="en" lang="en"> <head> <meta name="Content-Type" content="text/html; charset=utf-8" /> <title>Class: Voeis::SampleMediumCV</title> <link r...
package com.sleepycat.je.recovery; import com.sleepycat.je.log.LogEntryHeader; import com.sleepycat.je.log.entry.LogEntry; /** * The VLSNRecoveryProxy is a handle for invoking VLSN tracking at recovery * time. */ public interface VLSNRecoveryProxy { public void trackMapping(long lsn, ...
<?xml version="1.0" encoding="utf-8" standalone="yes" ?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>2 on Harikrishnan R</title> <link>http://mekano.in/publication_types/2/index.xml</link> <description>Recent content in 2 on Harikrishnan R</description> <generator>Hug...
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/cloud/datastream/v1/datastream_resources.proto namespace Google\Cloud\Datastream\V1; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Contains the current va...
package org.jetbrains.jps.incremental.storage; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.util.Pair; import com.intellij.openapi.util.io.FileUtil; import com.intellij.util.io.IOUtil; import org.jetbrains.jps.builders.BuildTarget; import org.jetbrains.jps.builders.BuildTargetLoader; imp...
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <widget id="com.tsubik.ionicgeofence" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>Ionic Geofence</name> <description> Geofence Sample Application Built With Ionic </description> <author email...
package com.willydupreez.prototype.mysql; public interface RecoveryProperties { String getUsername(); String getPassword(); String getSchema(); String getHostname(); int getPort(); String getBackupPath(); String getBackupCommand(); String getRestoreCommand(); }
@interface MAGCustomCollectionViewLayout () @property (nonatomic) CGSize defaultItemSize; @property (nonatomic) CGFloat horizontalSpace; @property (nonatomic) CGFloat verticalSpace; @property (nonatomic) CGFloat summaryWidthPoints; @property (nonatomic) CGFloat summaryHeightPoints; @property (strong, nonatomic) NSMu...
<!DOCTYPE html> <html> <head> <title>typeRange (tests/w3c/input)</title> <meta content="text/html; charset=utf-8" http-equiv="content-type"></meta> <link href="css/style.css" rel="stylesheet" type="text/css"></link> </head> <body> <div class="statusBar"> <span class="numTestsDone">0</span> ...
// Bump this version when making changes that affect the storage format. const _imageStorageFormatVersion = 1; try { var _generatedImageCacheDatabase = openDatabase("com.apple.WebInspector", 1, "Web Inspector Storage Database", 5 * 1024 * 1024); } catch (e) { // If we can't open the database it isn't the end...