text stringlengths 3 1.05M |
|---|
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
#ifndef BOOST_HANA_SET_HPP
#define BOOST_HANA_SET_HPP
#include <boost/hana/fwd/set.hpp>
#include <boost/hana/at.hpp>
#include <boost/hana/bool.hpp>
#include <boost/hana/concept/comparable.hpp>
#include <boost/hana/concept/constant.hpp>
#include <boost/hana/concept/hashable.hpp>
#include <boost/hana/config.hpp>
#inc... |
ShareKit 2
============
In order to make it easier for new users to choose a canonical fork of ShareKit, the ShareKit community has decided to band together and take responsibility for collecting useful commits into what we're calling "ShareKit 2". It is now ready for you. It is the first officially stable version of ... |
package latest
import (
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/runtime/serializer/json"
"k8s.io/apimachinery/pkg/runtime/serializer/versioning"
schedulerapi "k8s.io/kubernetes/pkg/scheduler/api"
// Init the api v1 package
_ "k8s.io/kubernetes/pkg/sc... |
package com.facebook.buck.jvm.java;
import com.facebook.buck.model.BuildTarget;
import com.facebook.buck.rules.BuildRuleResolver;
import com.google.common.collect.ImmutableCollection;
import javax.annotation.Nullable;
public abstract class ConfiguredCompilerFactory {
// TODO(jkeljo): args is not actually Nullabl... |
var Hapi = require('hapi');
var Tv = require('../');
// Declare internals
var internals = {};
var server = new Hapi.Server();
server.connection({ port: 8000 });
server.route({
method: 'GET',
path: '/',
handler: function (request, reply) {
return reply('1');
}
});
server.register(Tv, func... |
layout: post
title: Piston 0.1 is released
author: PistonDevelopers
---
The [Piston core](https://github.com/pistondevelopers/piston) is now 0.1 and working on Rust Beta!
There are still some important libraries that requires Rust Nightly for overall game and app development,
so Rust Nightly is recommended until furt... |
<?php
namespace Symfony\Component\Security\Http\Authentication;
use Symfony\Component\Security\Core\Authentication\SimpleFormAuthenticatorInterface as BaseSimpleFormAuthenticatorInterface;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
*/
interface SimpleFormAuthenticatorInterface extends BaseSimpleFormAuthen... |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security — CodeIgniter 3.0.1 documentation<... |
An implementation of Env that forwards all calls to another Env .
May be useful to clients who wish to override just part of the functionality of another Env .
###Member Details
#### `tensorflow::EnvWrapper::EnvWrapper(Env *t)` {#tensorflow_EnvWrapper_EnvWrapper}
Initializes an EnvWrapper that delegates all calls t... |
package org.lilyproject.hbaseindex;
import org.apache.hadoop.hbase.util.Bytes;
import org.codehaus.jackson.node.ObjectNode;
import org.lilyproject.util.ArgumentValidator;
import java.util.*;
/**
* Index field for datetimes, dates, times.
*
* <p>The instant is stored in the index as a long, or in case there is on... |
.. role:: hidden
:class: hidden-section
torchtext.transforms
===========================
.. automodule:: torchtext.transforms
.. currentmodule:: torchtext.transforms
Transforms are common text transforms. They can be chained together using :class:`torch.nn.Sequential` or using :class:`torchtext.transforms.Sequen... |
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define([], factory);
else if(typeof exports === 'object')
exports["GyreJS"] = factory();
else
root["GyreJS... |
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/4.0">
<id>com.tatsuyakoyama.aquarogue</id>
<versionNumber>1.0</versionNumber>
<filename>AquaRogue</filename>
<initialWindow>
<content>aquarogue.swf</content>
<aspectRatio>landscape</aspectRatio... |
const fs = require("fs");
const sysPath = require("path");
const anyspawn = require("anyspawn");
const args = process.argv.slice(3).map(anyspawn.quoteArg);
const push = Array.prototype.push;
const hasProp = Object.prototype.hasOwnProperty;
const distribute = require("./scripts/distribute");
const opts = {
stdio: "... |
@echo off
@rem Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
if "%JENAROOT%" == "" goto :rootNotSet
set JENA_HOME=%JENAROOT%
:rootNotSet
if NOT "%JENA_HOME%" == "" goto :okHome
echo JENA_HOME not set
exit /B
:okHome
set JVM_ARGS=-Xmx1024M
set JENA_CP=%JENA_HOME%\lib\*;
set LOGG... |
package org.apache.camel.component.servlet;
import java.io.ByteArrayInputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.meterware.httpunit.GetMethodWebRequest;
import com.meterware.httpunit.HttpException;
import com.meterware.httpunit.PostMethodWebRequ... |
using System;
public class Battle {
public static Battle Current;
public int Value = 0;
public abstract class ITargetHandler {
public abstract void Setup ();
public Battle ThisBattle { get { return Battle.Current; } }
}
public class TargetOneEnemy : ITargetHandler {
public... |
var baseMerge = require('./_baseMerge'),
createAssigner = require('./_createAssigner');
/**
* This method is like `_.merge` except that it accepts `customizer` which
* is invoked to produce the merged values of the destination and source
* properties. If `customizer` returns `undefined` merging is handled by th... |
;(function() {
/** Used as a safe reference for `undefined` in pre ES5 environments */
var undefined;
/** Used to pool arrays and objects used internally */
var arrayPool = [],
objectPool = [];
/** Used to generate unique IDs */
var idCounter = 0;
/** Used internally to indicate various things ... |
package flags
func getTerminalColumns() int {
return 80
}
|
throw; |
using System;
using System.Globalization;
using System.Windows.Data;
namespace Usbacc.UI.Utils
{
[ValueConversion(typeof(bool), typeof(bool))]
public class BoolToInvertConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
... |
<?php
namespace yii\behaviors;
use Yii;
use Closure;
use yii\base\Behavior;
use yii\base\Event;
/**
* AttributeBehavior automatically assigns a specified value to one or multiple attributes of an ActiveRecord
* object when certain events happen.
*
* To use AttributeBehavior, configure the [[attributes]] propert... |
import java.util.*;
public class Collect {
class Person {
String getName() {
return "";
}
}
void collectNames(List<Person> persons){
Set<String> names = new HashSet<>();
names.add("Test");
for (Person person : pers<caret>ons) {
names.add(person.getName());
}
System.out.pr... |
(function( global, undefined ) {
var slice = [].slice,
subscriptions = {};
var amplify = global.amplify = {
publish: function( topic ) {
if ( typeof topic !== "string" ) {
throw new Error( "You must provide a valid topic to publish." );
}
var args = slice.call( arguments, 1 ),
topicSubscriptions,
s... |
set(CMAKE_SYSTEM_NAME Darwin)
set(CMAKE_SYSTEM_VERSION 1)
set(UNIX True)
set(APPLE True)
set(IOS True)
# required as of cmake 2.8.10
set(CMAKE_OSX_DEPLOYMENT_TARGET ""
CACHE STRING "Force unset of the deployment target for iOS" FORCE
)
# determine the cmake host system version so we know where to find the iOS
# SDK... |
package org.springframework.boot.buildpack.platform.docker.type;
import java.util.Objects;
import org.springframework.util.Assert;
/**
* Volume bindings to apply when creating a container.
*
* @author Scott Frederick
* @since 2.5.0
*/
public final class Binding {
private final String value;
private Bindin... |
license: >
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 (the
"L... |
//
// Copyright (c) Microsoft. All rights reserved.
//
// 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 app... |
#include "SkComposeShader.h"
#include "SkColorFilter.h"
#include "SkColorPriv.h"
#include "SkColorShader.h"
#include "SkXfermode.h"
///////////////////////////////////////////////////////////////////////////////
SkComposeShader::SkComposeShader(SkShader* sA, SkShader* sB, SkXfermode* mode) {
fShaderA = sA; s... |
define(
//begin v1.x content
{
"field-quarter-short-relative+0": "detta kv.",
"field-quarter-short-relative+1": "nästa kv.",
"field-tue-relative+-1": "tisdag förra veckan",
"field-year": "år",
"field-wed-relative+0": "onsdag denna vecka",
"field-wed-relative+1": "onsdag nästa vecka",
"field-minute": "minut",
"f... |
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
ACCEPTED
#### According to
World Register of Marine Species
#### Published in
null
#### Original name
null
### Remarks
null |
<!DOCTYPE html>
<html>
<head>
<title>Leaflet debug page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="../../dist/leaflet.css" />
<link rel="stylesheet" href="../css/screen.css" />
<script type='text... |
nv.models.scatterPlusLineChart = function() {
"use strict";
//============================================================
// Public Variables with Default Settings
//------------------------------------------------------------
var scatter = nv.models.scatter()
, xAxis = nv.models.axis()
... |
import { AfterViewInit, Component, ElementRef, Input, ViewChild, ViewEncapsulation } from '@angular/core';
/**
* This component represents the slide item.
*/
@Component({
moduleId: module.id,
selector: 'ngx-agile-slider-item',
template: `
<li #sliderItem class="ngx-agile-slider-item variablewidth">
<... |
package com.google.security.zynamics.binnavi.debug.debugger.synchronizers;
import com.google.security.zynamics.binnavi.CUtilityFunctions;
import com.google.security.zynamics.binnavi.Exceptions.MaybeNullException;
import com.google.security.zynamics.binnavi.debug.connection.packets.replies.ThreadClosedReply;
import co... |
import React from "react"
import Layout from "../components/layout"
const A = () => (
<Layout>
<p>A</p>
</Layout>
)
export default A
|
{{+partials.standard_extensions_article article:articles.match_patterns/}}
|
// Copyright 2013 The Closure Library Authors. All Rights Reserved.
//
// 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 requ... |
#ifndef RESOURCE_ATTRIBUTE_JNI_H_
#define RESOURCE_ATTRIBUTE_JNI_H_
#include <jni.h>
#include "simulator_resource_model.h"
class JResourceAttributeConverter
{
public:
JResourceAttributeConverter(SimulatorResourceModel::Attribute &attribute) {m_attribute = attribute;}
JResourceAttributeConverter(... |
MainController::MainController()
: ApplicationController()
{ }
void MainController::index()
{
QString path = "/home/aoyama/deepagent/log/access.log";
// QString log = Tail(path).tail(0);
// log.remove('\r');
// log = THttpUtility::htmlEscape(log, Tf::Compatible);
// log = log.replace("\n", "<b... |
<?php
/**
* @category Zend
* @package Zend_Service_WindowsAzure
* @subpackage Diagnostics
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*
* @property int BufferQuotaInMB Buffer quota ... |
using BotEngine.Interface;
namespace Sanderling.Interface.MemoryStruct
{
static public class ToStringStatic
{
static public string SensorObjectToString(this object obj)
{
return
(obj as string) ??
obj?.GetType()?.ToString();
}
}
public class TabGroup : UIElement
{
public Tab[] ListTab;
pub... |
<?php
// KnpPaginatorBundle:Pagination:twitter_bootstrap_v3_pagination.html.twig
return array (
);
|
@interface RSFGET : RSFAnnotation<RSFCommand>
@property (nonatomic, readonly, copy) NSString * value;
@property (nonatomic, readonly, retain) NSArray<NSString *> * produces;
-(instancetype)initWithValue:(NSString *)value;
-(instancetype)initWithValue:(NSString *)value produces:(NSArray<NSString *> *)produces;
@end
|
using System;
using System.Collections.Generic;
using System.Text.Json;
using Azure.Core;
using Azure.ResourceManager.DevTestLabs.Models;
using Azure.ResourceManager.Models;
namespace Azure.ResourceManager.DevTestLabs
{
public partial class DevTestLabArtifactSourceData : IUtf8JsonSerializable
{
void IU... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content... |
package org.apache.geode.internal.cache.entries;
// DO NOT modify this class. It was generated from LeafRegionEntry.cpp
import java.util.concurrent.atomic.AtomicLongFieldUpdater;
import org.apache.geode.internal.cache.RegionEntryContext;
import org.apache.geode.internal.cache.Token;
import org.apache.geode.interna... |
package org.apache.ignite.ml.tree.randomforest;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import org.apache.ignite.ml.TestUtils;
import org.apache.ignite.ml.common.TrainerTest;
import org.apache.ignite.ml.composition.predictionsaggregator.OnMajorityPredictionsAggregator;
import org.... |
var objectTypes = require('lodash._objecttypes');
/**
* Checks if `value` is the language type of Object.
* (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
*
* @static
* @memberOf _
* @category Objects
* @param {*} value The value to check.
* @returns {boolean} Returns `true`... |
layout: news_item
title: 'Jekyll 2.1.1 Released'
date: 2014-07-01 20:16:43 -0400
author: parkr
version: 2.1.1
categories: [release]
---
This is a minor release for Jekyll 2.1.0. It fixes a couple bugs and
introduces fixes for a couple security-related issues.
It covers two security vulnerabilities:
1. One in the rea... |
<?php
namespace Finite\Transition;
use Finite\StateMachine\StateMachineInterface;
/**
* The base Transition interface.
*
* @author Yohan Giarelli <yohan@frequence-web.fr>
*/
interface TransitionInterface
{
/**
* Returns the array of states that supports this transition.
*
* @return array
... |
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="@color/darken"
android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
<... |
package org.apache.derbyTesting.functionTests.tests.jdbcapi;
import junit.framework.*;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.TestConfiguration;
import java.sql.*;
/**
* This class is used to test the fix for DERBY-694.
*
* A brief description of DERBY-694 (... |
bool IsTrivial(const std::string& bytes) {
for (size_t i = 0; i < bytes.size(); i++) {
if (bytes[i] != bytes[0]) {
return false;
}
}
return true;
}
TEST(RandBytes, RandBytes) {
std::string bytes(16, '\0');
crypto::RandBytes(WriteInto(&bytes, bytes.size()), bytes.size());
EXPECT_TRUE(!IsTrivia... |
<?php
/**
* @license MIT License https://github.com/serbanghita/Mobile-Detect/blob/master/LICENSE.txt
* @link http://mobiledetect.net
*/
class UserAgentTest extends PHPUnit_Framework_TestCase
{
protected $detect;
protected static $ualist = array();
protected static $json;
publi... |
// Package certificates contains functionality for working with Magnum Certificate
// resources.
/*
Package certificates provides information and interaction with the certificates through
the OpenStack Container Infra service.
Example to get certificates
certificate, err := certificates.Get(serviceClient, "d564b18a-... |
<!-- Generated by Rakefile:build -->
<strong>
<a href="http://kevin.vanzonneveld.net" rel="nofollow">Kevin van Zonneveld</a>
</strong>
on 2008-03-01 21:01:31 <br />
@ Martijn Wieringa: Though our aim has always been to copy the PHP specs of all the functions as strict as possible, I could see why you would want this f... |
package org.apache.xerces.dom;
/**
* Notations are how the Document Type Description (DTD) records hints
* about the format of an XML "unparsed entity" -- in other words,
* non-XML data bound to this document type, which some applications
* may wish to consult when manipulating the document. A Notation
* repres... |
package org.apache.ignite.cache.jta.websphere;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import javax.cache.configuration.Factory;
import javax.transaction.HeuristicMixedException;
import javax.tran... |
package search
type defaultMatcher struct{}
func init() {
var matcher defaultMatcher
Register("default", matcher)
}
func (m defaultMatcher) Search(feed *Feed, searchTerm string) ([]*Result, error) {
return nil, nil
}
|
package org.elasticsearch.script.mustache;
import org.apache.lucene.index.memory.MemoryIndex;
import org.apache.lucene.search.MatchAllDocsQuery;
import org.apache.lucene.search.Query;
import org.elasticsearch.common.bytes.BytesArray;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.... |
import { Injectable } from '@angular/core';
import { DataService } from '../../../_service/dataconnect';
import { Router } from '@angular/router';
@Injectable()
export class WarViewOpbal {
constructor(private _dataserver: DataService, private _router: Router) { }
getopeningstock(req: any) {
return this... |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template max_assign</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../index.html"... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<!-- test case: tr_bgcolor_black.html -->
<!-- description: HTML 4.0 TR element/BGCOLOR attribute -->
<!-- Author: Christine Dreckman Date: 1/29/99 -->
<!-- ***** BEGIN LICENSE BLOCK *****
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
-
... |
<?php
class SQLLite3Info extends DBInfo
{
/**
* @return Array
*/
public function db_gettablelist()
{
$ret = array();
$qResult = $this->connectionObj->query( "SELECT tbl_name FROM sqlite_master WHERE type='table' ORDER BY name" );
while( $data = $qResult->fetchAssoc() )
{
$ret[] = $data["tbl_name"]... |
// Code generated by lister-gen. DO NOT EDIT.
package v1
import (
v1 "k8s.io/api/apps/v1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/client-go/tools/cache"
)
// ReplicaSetLister helps list ReplicaSets.
// All objects returned here must be treated as read-only.
type ReplicaSet... |
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror"], mod);
else // Plain browser env
mod(CodeMirror);
})(function(CodeMirror) {
"use ... |
/**
* ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
* @version v5.0.0-alpha.0
* @link http://www.ag-grid.com/
* @license MIT
*/
var utils_1 = require('../utils');
var BorderLayout = (function () {
function BorderLayout(params) {
this.sizeChangeList... |
package jiracommitviewer.domain;
/**
* Represents a file in a commit.
*
* @author mark
*/
public interface CommitEntryPath {
}
|
def main():
'''
ansible git module for committing
'''
module = AnsibleModule(
argument_spec=dict(
state=dict(default='present', type='str', choices=['present']),
msg=dict(default=None, required=True, type='str'),
path=dict(default=None, required=True, type='st... |
/*!
* Copyright (c) 2015 by Contributors
*/
#ifndef MXNET_ENGINE_STREAM_MANAGER_H_
#define MXNET_ENGINE_STREAM_MANAGER_H_
#include <dmlc/base.h>
#include <mxnet/base.h>
#include <cstddef>
#include <array>
#include <string>
#include <mutex>
#include "../common/cuda_utils.h"
namespace mxnet {
namespace engine {
/*... |
package eu.motogymkhana.competition.api.http;
public class HttpResultWrapper {
private int statusCode;
private String string;
private String errorMessage;
public HttpResultWrapper(int status, String msg, String string) {
this.statusCode = status;
this.string = string;
this.er... |
/*!
BlockUI dialog module (for jQuery Dirty Forms) | v2.0.0-beta00002 | github.com/snikch/jquery.dirtyforms
(c) 2015 Shad Storhaug
License MIT
*/
// Support for UMD: https://github.com/umdjs/umd/blob/master/jqueryPluginCommonjs.js
// This allows for tools such as Browserify to compose the components together into a si... |
<html>
<body>
Reports any calls to <b>java.lang.Math</b> methods
whose results are not guaranteed to be precisely reproducible. In environments
where reproducibility of results are needed, <b>java.lang.StrictMath</b>
should be used instead.
<!-- tooltip end -->
<p>
</body>
</html>
|
package org.apache.geronimo.tomcat;
import org.apache.catalina.Engine;
import org.apache.catalina.Realm;
import org.apache.catalina.core.StandardEngine;
public class TomcatEngine extends StandardEngine implements Engine{
/**
*
*/
private static final long serialVersionUID = 3834312825844611385L;
... |
FROM gobblin/gobblin-distributions:ubuntu-gobblin-0.8.0
ENV RELEASE_VERSION "0.8.0"
ENV GOBBLIN_WORK_DIR /home/gobblin/work-dir
RUN echo "Downloading Gobblin Wikipedia Configuration Files"
RUN mkdir -p /etc/opt/gobblin/job-conf
# Downloading wikipedia.pull
RUN curl -L --progress-bar https://raw.githubusercontent.com... |
require('../lib/node_loader');
var AWS = require('../lib/core');
var Service = require('../lib/service');
var apiLoader = require('../lib/api_loader');
apiLoader.services['budgets'] = {};
AWS.Budgets = Service.defineService('budgets', ['2016-10-20']);
Object.defineProperty(apiLoader.services['budgets'], '2016-10-20', ... |
package com.google.android.libraries.mobiledatadownload.file.behaviors;
import android.net.Uri;
import com.google.android.libraries.mobiledatadownload.file.Behavior;
import com.google.android.libraries.mobiledatadownload.file.common.ParamComputer;
import com.google.common.collect.FluentIterable;
import java.io.InputS... |
./org.apache.cordova.core.contacts/www/ios/contacts.js
|
/**
* @module ol/control/FullScreen
*/
import Control from './Control.js';
import EventType from '../events/EventType.js';
import {CLASS_CONTROL, CLASS_UNSELECTABLE, CLASS_UNSUPPORTED} from '../css.js';
import {listen} from '../events.js';
import {replaceNode} from '../dom.js';
const events = [
'fullscreenchange',... |
module.exports = {
"boxprefix": "/box/srv/1.1/",
"sdk_version": "BUILD_VERSION",
"config_js": "fhconfig.json",
"INIT_EVENT": "fhinit",
"INTERNAL_CONFIG_LOADED_EVENT": "internalfhconfigloaded",
"CONFIG_LOADED_EVENT": "fhconfigloaded",
"SESSION_TOKEN_STORAGE_NAME": "fh_session_token",
"SESSION_TOKEN_KEY_N... |
<?php
/**
* @var $model Export
* @var $form TbActiveForm
*/
$form = $this->beginWidget(
'bootstrap.widgets.TbActiveForm',
[
'id' => 'export-form',
'enableAjaxValidation' => false,
'enableClientValidation' => true,
'htmlOptions' => ['class' => 'well'],
]
); ?>
<div class="... |
<?xml version="1.0" encoding="UTF-8"?>
<!-- ====================================================================== -->
<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above. -->
<!-- ====================================================================== -->
<!-- ==================================... |
package gov.va.isaac.mojos.conceptSpec;
import org.ihtsdo.otf.tcc.api.spec.ConceptSpec;
/**
* {@link MojoConceptSpec}
*
* A class that Maven can utilize to create a real ConceptSpec from snippits in our pom.xml files.
* Should look like:
* <pre>
* <MojoConceptSpec>
* <fsn>The FSN</fsn>
* <uuid>f4d2f... |
// $Id$
namespace System.Runtime.CompilerServices
{
/// <remarks>
/// This attribute allows us to define extension methods without
/// requiring .NET Framework 3.5. For more information, see the section,
/// <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx#S7">Extension Methods... |
@interface MKTUnsignedCharReturnSetter : MKTReturnValueSetter
- (instancetype)initWithSuccessor:(MKTReturnValueSetter *)successor;
@end
|
@echo off
call powershell -NoProfile %ROOT%\Build\nuget-setapikey.ps1
if %errorlevel% neq 0 exit /b %errorlevel% |
<?php
namespace app\models;
use Yii;
use yii\base\Model;
/**
* LoginForm is the model behind the login form.
*
* @property User|null $user This property is read-only.
*
*/
class LoginForm extends Model
{
public $username;
public $password;
public $rememberMe = true;
private $_user = false;
... |
define(['isSVG'], function(isSVG) {
/**
* createElement is a convenience wrapper around document.createElement. Since we
* use createElement all over the place, this allows for (slightly) smaller code
* as well as abstracting away issues with creating elements in contexts other than
* HTML documents (e.g.... |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" con... |
#include "SkDisplayBounds.h"
#include "SkAnimateMaker.h"
#if SK_USE_CONDENSED_INFO == 0
const SkMemberInfo SkDisplayBounds::fInfo[] = {
SK_MEMBER_INHERITED,
SK_MEMBER(inval, Boolean)
};
#endif
DEFINE_GET_MEMBER(SkDisplayBounds);
SkDisplayBounds::SkDisplayBounds() : inval(false) {
}
bool SkDisplayBound... |
package com.xeiam.xchange.huobi.dto.streaming.response.historydata;
import com.xeiam.xchange.huobi.dto.streaming.response.ReqResponse;
import com.xeiam.xchange.huobi.dto.streaming.response.payload.ReqTradeDetailTopPayload;
/**
* Response of top trade details.
*/
public class ReqTradeDetailTopResponse extends ReqRes... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-field: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.... |
using content::BrowserThread;
namespace chromeos {
namespace {
// Increase logging level for Guest mode to avoid INFO messages in logs.
const char kGuestModeLoggingLevel[] = "1";
// Format of command line switch.
const char kSwitchFormatString[] = " --%s=\"%s\"";
// Derives the new command line from |base_command_... |
package cl.magnet.magnetrestclient.app;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
import android.widget.Toast;
import com.android.volley.Request;
import com.android.volley.... |
using System;
using System.Collections.Generic;
using System.Text;
namespace SaltEdge.Utils
{
public class SETools
{
//public static ValueCallback<Uri[]> uploadMessage;
public static string ParamsToString(List<KeyValuePair<string, string>> param)
{
var stringParams = new S... |
import { Component, ChangeDetectionStrategy, OnChanges, SimpleChanges } from '@angular/core';
import { AbstractStyleVisDirective } from '../utils/abstract.vis';
import { ElementEntitySubType, PropertyModel } from 'cd-interfaces';
import { getElementBaseStyles } from 'cd-common/utils';
import { toDecimal } from 'cd-ut... |