text
stringlengths
3
1.05M
(function(){ var allContentPs = document.querySelectorAll('p'); for(var i = 0; i < allContentPs.length; i ++){ allContentPs[i].classList.add('hyphenate'); //assuming you have classList support (ie, IE10+); otherwise... //allContentPs[i].className += "hyphenate"; } })();
import _ from 'underscore'; import Registry from './registry'; const Utils = {}; Utils.registryFactory = (name, idField, mode) => new Registry(name, idField, mode); Utils.Registry = Registry; export default Utils;
if (!String.prototype.endsWith) { String.prototype.endsWith = function(searchString, position) { var subjectString = this.toString(); if (typeof position !== 'number' || !isFinite(position) || Math.floor(position) !== position || position > subjectString.length) { position = subjectString.length; ...
#!/usr/bin/env python """ Copyright (c) 2014-2019 Maltrail developers (https://github.com/stamparm/maltrail/) See the file 'LICENSE' for copying permission """ import BaseHTTPServer import cStringIO import datetime import httplib import glob import gzip import hashlib import io import json import mimetypes import os ...
#!/usr/bin/python """ spotify.py - An api interface for spotify lookups Copyright 2012 Patrick Andrew <missionsix@gmail.com> Licensed under the Eiffel Forum License, version 2 1. Permission is hereby granted to use, copy, modify and/or distribute this package, provided that: * copyright notices are retained ...
// Connect to MongoDB using Mongoose var mongoose = require('mongoose'); var db; if (process.env.VCAP_SERVICES) { var env = JSON.parse(process.env.VCAP_SERVICES); db = mongoose.createConnection(env['mongodb-2.2'][0].credentials.url); } else { db = mongoose.createConnection('localhost', 'pollsapp'); } // Get P...
goog.provide('os.ui.ol.draw.DrawMenuCtrl'); goog.provide('os.ui.ol.draw.drawMenuDirective'); goog.require('os.query'); goog.require('os.ui.Module'); goog.require('os.ui.query.area.chooseAreaDirective'); goog.require('os.ui.query.cmd.AreaAdd'); /** * The draw-menu directive * @return {angular.Directive} */ os.ui.o...
/** * draw.js : Not optimally desgiend, but to assist in learning, a wrapper * of the CreateJS Graphic API to reduce boiler-plate and that also supports * calculation of width and height properties on shapes. * * For CreateJS Graphic API not wrapped by this version, use the Graphic API directly. * See: http://w...
"use strict"; const {strict: assert} = require("assert"); const {mock_esm, set_global, with_field, zrequire} = require("../zjsunit/namespace"); const {run_test} = require("../zjsunit/test"); const $ = require("../zjsunit/zjquery"); const {page_params, user_settings} = require("../zjsunit/zpage_params"); const noop =...
# coding: utf-8 # Copyright 2014 Globo.com Player authors. All rights reserved. # Use of this source code is governed by a MIT License # license that can be found in the LICENSE file. import decimal import os import errno import math from m3u8.protocol import ext_x_start, ext_x_key, ext_x_session_key, ext_x_map from m...
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _react = _interopRequireDefault(require("react")); var _createSvgIcon = _interopRequireDefault(require("./utils/createSvg...
from .aboot import AbootBootloader from .grub import GrubBootloader from .uboot import UbootBootloader BOOTLOADERS = [ AbootBootloader, GrubBootloader, UbootBootloader, ] def get_bootloader(): for bootloaderCls in BOOTLOADERS: if bootloaderCls.detect(): return bootloaderCls() ...
import React from 'react'; import ReactDOM from'react-dom'; import {Paper} from 'material-ui'; import PostSkeleton from './PostSkeleton'; class Pitanje extends React.Component { constructor(props) { super(props); } render() { return ( <PostSkeleton > <div class="pitanje"> Pitanje: f...
class Component{ constructor(){ this.topics = {}; } subscribe(topic,handler){ this.topics[topic] = handler; controller.subscribe(topic,this); } broadcast(topic,msg){ controller.broadcast(topic,msg); } receive(topic,msg){ this.topics[topic].call(this,ms...
// Icon: Linear.CloudFog import React from 'react'; import defaultProps from 'reactium_modules/@atomic-reactor/reactium-ui/Icon/defaultProps'; export default props => ( <svg {...defaultProps} {...props}> <g> <path d="M819.52 359.040c-3.149 0-6.293 0.069-9.416 0.211 5.978-16.528 9.096-34.094 9....
''' Code for converting pixel data to RGB values. ''' from __future__ import absolute_import, division, print_function, unicode_literals import numpy as np class ColorScale: ''' A color scale class to map scalar values to rgb colors. The class allows associating colors with particular scalar values, set...
const express = require("express"); const bodyParser = require("body-parser"); const fileUpload = require('express-fileupload'); const cors = require("cors"); const Web3 = require("web3"); const web3 = new Web3("http://localhost:8545"); //TODO parameterize provider require("dotenv").config(); const app = express(); a...
Dialog.prototype.openButtonDialog = function(title) { var buttons = []; var options = {}; for (var i = 1; i < arguments.length; i++) { var arg = arguments[i]; if (typeof(arg) == 'string') { buttons.push(arg); } else if ("label" in arg) { buttons.push(arg.label...
// Example API call var Twitter = require('twitter'); var client = new Twitter({ consumer_key: process.env.TWITTER_CONSUMER_KEY, consumer_secret: process.env.TWITTER_CONSUMER_SECRET, access_token_key: process.env.TWITTER_ACCESS_TOKEN_KEY, access_token_secret: process.env.TWITTER_ACCESS_TOKEN_SECRET }); clie...
import JsonApiError from './jsonApiError'; class InternalError extends JsonApiError { constructor(message) { let internalError = { title: 'InternalError', code: 'InternalError', status: 500, detail: 'InternalError', }; if (typeof message === 'string') { internalError = { ...
var hourglassAddress="TQ66Wiihp8V8hHVwTr3a4Byog5CyEre6nM"; // D1VS Contract var hourglassContract; var oneToken; var totalSupply; var TRXBalance; var vaultDollarValue; async function loadTronWeb(){ if( typeof (window.tronWeb)=== 'undefined'){ setTimeout(loadTronWeb,1000) } else { hourglassCon...
# walk.py -- General implementation of walking commits and their contents. # Copyright (C) 2010 Google, Inc. # # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU # General Public License as public by the Free Software Foundation; version 2.0 # or (at your option) any later version. You can red...
from io import BytesIO from .exceptions import UnknownFormatError _delim = b":" _formats = {} def _bytes(seq): return seq.encode() if hasattr(seq, "encode") else seq def register(code, renderer, parser): code = _bytes(code) _formats[code] = { "renderer": renderer, "parser": parser, ...
import torch import torch.nn as nn from .layers import RNNDropout, Seq2SeqEncoder, SoftmaxAttention from .utils import get_mask, replace_masked class ESIM(nn.Module): """ Implementation of the ESIM model presented in the paper "Enhanced LSTM for Natural Language Inference" by Chen et al. """ def ...
var PropertyOptimizer = require('../../properties/optimizer'); var CleanUp = require('./clean-up'); var extractProperties = require('../../properties/extractor'); var canReorder = require('../../properties/reorderable').canReorder; var canReorderSingle = require('../../properties/reorderable').canReorderSingle; funct...
# -*- coding: utf-8 -*- # # pylearn2 documentation build configuration file # It is based on Theano documentation build # # This file is execfile()d with the current directory set to its containing dir. # # The contents of this file are pickled, so don't put values in the namespace # that aren't pickleable (module impo...
mycallback( {"CONTRIBUTOR OCCUPATION": "PRINCIPAL", "CONTRIBUTION AMOUNT (F3L Bundled)": "500.00", "ELECTION CODE": "G2010", "MEMO CODE": "", "CONTRIBUTOR EMPLOYER": "PODESTA GROUP", "DONOR CANDIDATE STATE": "", "CONTRIBUTOR STREET 1": "610 BASHFORD LANE #1322", "CONTRIBUTOR MIDDLE NAME": "K.", "DONOR CANDIDATE FEC ID"...
import * as React from 'react'; import * as ReactRedux from 'react-redux'; import moment from '../../moment-localized'; import { injectIntl } from 'react-intl'; import { bindActionCreators } from 'redux'; import { FormattedDate, FormattedMessage, } from 'react-intl'; import { Link, } from 'react-router-dom...
import os import json import alfworld.gen import alfworld.gen.constants as constants from alfworld.gen.game_states.task_game_state_full_knowledge import TaskGameStateFullKnowledge from alfworld.gen.agents.deterministic_planner_agent import DeterministicPlannerAgent from alfworld.gen.graph import graph_obj from alfworl...
# Generated by Django 2.0.5 on 2019-03-06 06:53 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('CRYE', '0010_auto_20190305_1713'), ] operations = [ migrations.AddField( model_name='tablaamortizacion', name='balan...
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2017 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define(['jquery.sap.global','sap/ui/core/Control','sap/ui/core/LocaleData','sap/ui/unified/calendar/CalendarUtils','./calendar/...
/*! * ${copyright} */ // Provides control sap.ui.unified.Menu. sap.ui.define([ 'sap/ui/core/Element', 'sap/ui/core/Control', 'sap/ui/Device', 'sap/ui/core/Popup', './MenuItemBase', './library', 'sap/ui/core/library', 'sap/ui/unified/MenuRenderer', "sap/ui/dom/containsOrEquals", "sap/ui/thirdparty/jquery", ...
(window.webpackJsonp=window.webpackJsonp||[]).push([[15],{158:function(t,a,s){"use strict";s.r(a);var n=s(0),o=Object(n.a)({},function(){this.$createElement;this._self._c;return this._m(0)},[function(){var t=this,a=t.$createElement,s=t._self._c||a;return s("div",{staticClass:"content"},[s("h1",{attrs:{id:"component-bas...
# Copyright 2021 Huawei Technologies Co., Ltd # # 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...
#MIT License #Copyright (c) 2021 subinps #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, publish, dis...
from flask import Flask, current_app, jsonify from flask_cors import CORS, cross_origin import threading import os import json class BackendAPI: def __init__( self, scheduler_backend ): app = Flask(__name__, static_folder='frontend') cors = CORS(app) app.debug = Fal...
var zoneinfo = require('zoneinfo'); var TZ = zoneinfo.TZDate; var zones = {}; zoneinfo.listTimezones().forEach(function (z) { var d = new TZ(); d.setTimezone(z); zones[z] = d._utcoffset(); }); console.log(JSON.stringify(zones));
'use strict'; const expect = require('chai').expect; const thing = require('../lib'); describe('tests', function () { it('exists', () => { expect(thing).to.be.ok; }); });
module.exports = /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) /******/ ret...
from djmodels.apps import apps from djmodels.conf import settings from djmodels.db import connection from djmodels.test import TestCase, skipIfDBFeature, skipUnlessDBFeature from .models.tablespaces import ( Article, ArticleRef, Authors, Reviewers, Scientist, ScientistRef, ) def sql_for_table(model): with co...
import arrow from django.db.transaction import atomic from rest_flex_fields import FlexFieldsModelSerializer from rest_framework.serializers import ALL_FIELDS from cishe.api.fev1.account.serializers import UserSerializer from cishe.contract.models import Contract, Customer, ServiceInfo, TakeOver class CustomerSerial...
/** * weather react serverless API functions URL */ const isProduction = process.env.NODE_ENV === 'production' /** * update the URLs to point to your Back-end project deployed URL * weather-react-api has access-control-origin restricted to gtiwari1999.com * all the requests initiated from any other domain (includi...
import React from 'react'; import ReactDOM from 'react-dom'; import { createStore, applyMiddleware } from 'redux'; import createSagaMiddleware from 'redux-saga'; import { Provider } from 'react-redux'; import App from './App'; import reducer from './reducer'; import sagas from './sagas'; import './style.scss'; const ...
class PowerUp extends CanvasObject { constructor(canvas, property) { super(canvas); this._property = property; } }
const mongoose = require('mongoose'); const passport = require('passport'); const User = mongoose.model('User'); const Contact = mongoose.model('Contact'); const ctrlAuth = require('./authentication'); const sendJSONresponse = (res, status, content) => { res.status(status); res.json(content); }; module.expor...
// test-lib-oauth-test.js // // Test the test libraries // // Copyright 2012, E14N https://e14n.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/licens...
const mongoose = require('mongoose'); const Slide = require('../../models/Slide'); const Conversation = require('../../models/Conversation'); const E = require('../../models/entity/E'); const { T } = require('../../models/entity/R'); const { C } = require('../../utils/constant'); const tools = require('../../utils/tool...
# Copyright (c) 2020 PaddlePaddle 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 required by app...
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi SDK Generator. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload from ... import _utilities fro...
// modules are defined as an array // [ module function, map of requireuires ] // // map of requireuires is short require name -> numeric require // // anything defined in a previous bundle is accessed via the // orig method which is the requireuire for previous bundles (function outer (modules, cache, entry) { //...
import csv import os all_dialogs = os.getcwd() + '/dialogs' os.chdir(all_dialogs) list_dialogs = os.listdir(all_dialogs) for i_dialogs in list_dialogs: ith_dialogs = os.getcwd() + "/" + i_dialogs os.chdir(ith_dialogs) ith_list = os.listdir(ith_dialogs) print("Dialogs Folder {} # of tsv files: {}".form...
export function test() { console.log("test import works!"); }
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import cv2 import rospy from sensor_msgs.msg import Image, CameraInfo class VPPCVTest(object): def __init__(self): self.cap = None self.depth_camera_info_pub = rospy.Publisher("camera/depth/camera_info", CameraInfo, queue_size=1) sel...
let core window.onload = _=>{ const f = new Range({width: 500, value: 0, class: `input`, min: 0, max: 100, scale: 4, label: `%`, labelWidth: 100}) // const t = new Toggle({n1: `Skipping is on`, n2: `Skipping is off`, class: `go`}) document.body.appendChild(f) // document.body.appendChild(t) core = new Core(doc...
/** * Angular JS slider directive * * (c) Rafal Zajac <rzajac@gmail.com> * http://github.com/rzajac/angularjs-slider * * Version: v0.1.21 * * Licensed under the MIT license */ /*jslint unparam: true */ /*global angular: false, console: false */ angular.module('rzModule', []) .run(['$templateCache', function...
(window.webpackJsonp=window.webpackJsonp||[]).push([[95],{530:function(n){n.exports=JSON.parse('{"5":{"number":"5","name":"الماۤئدة","name_latin":"Al-Ma\'idah","number_of_ayah":"120","text":{"1":"يٰٓاَيُّهَا الَّذِيْنَ اٰمَنُوْٓا اَوْفُوْا بِالْعُقُوْدِۗ اُحِلَّتْ لَكُمْ بَهِيْمَةُ الْاَنْعَامِ اِلَّا مَا يُتْلٰى عَلَ...
# coding=UTF-8 import math import re import pandas from pandas.core.frame import DataFrame import sys platform = sys.platform if platform.startswith('win32'): from eunjeon import Mecab # type: ignore # pip install eunjeon elif platform.startswith('linux') or platform.startswith('darwin'): fro...
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const getRealElement_1 = __importDefault(require("./getRealElement")); const clearContent = (target) => ...
from django.contrib.contenttypes.models import ContentType from django.core.exceptions import MultipleObjectsReturned, ObjectDoesNotExist # isort:skip """ This utilities is used to retrieve model from a content string and opposite. A content string defines a model instance and we can use this to retrieve objects from...
import React from 'react' const SidebarRight = () => ( <aside className="sidebar-right"> Right sidebar </aside> ) export default SidebarRight
// @flow import React from 'react'; import { shallow } from 'enzyme'; import UnboundedRipple from '../Unbounded'; describe('example::UnboundedRipple', () => { it('Should match snapshoot', () => { const component = shallow(<UnboundedRipple />); expect(component).toMatchSnapshot(); }); });
import React from 'react'; import styled from 'styled-components'; import Responsive from '../common/Responsive'; import BarnChart from '../common/Chart/BarnChart'; import { Link } from 'react-router-dom'; const BarnBlock = styled(Responsive)` margin-top: 8rem; h1 { font-size: 3rem; line-height: 1.5; m...
expressao = str(input('Digite sua expressão matemática: ')) pilha = [] for simbolo in expressao: if simbolo == '(': pilha.append('(') elif simbolo == ')': if len(pilha) > 0: pilha.pop() else: pilha.append(')') break if len(pilha) == 0: print('A exp...
import { setData } from '@progress/kendo-angular-intl'; setData({ name: "pt-CH", identity: { language: "pt", territory: "CH" }, territory: "CH", numbers: { symbols: { decimal: ",", group: " ", list: ";", percentSign: "%", ...
/* global window */ import modelExtend from 'dva-model-extend' import queryString from 'query-string' import { config } from 'utils' import { create, remove, update } from 'services/user' import * as usersService from 'services/users' import { pageModel } from './common' const { query } = usersService const { prefix }...
describe("photonui.AccelManager", function() { beforeAll(function() { // ... }); beforeEach(function() { // ... }); afterEach(function() { // ... }); // it("<DESCRIPTION>", function() { // // EXPECTATIONS // }); });
module.exports = { sass: true, modules: true, i18n: { // These are all the locales you want to support in // your application locales: ['en-us', 'fr-fr'], // This is the default locale you want to be used when visiting // a non-locale prefixed path e.g. `/hello` defaultLocale: 'en-us', }...
/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /** * @fileOverview */ /**#@+ @type String @example */ /** * Contains the dictionary of language entries. * @namespace */ CKED...
export const c_menu_m_nav__list_item_hover_BackgroundColor = { "name": "--pf-c-menu--m-nav__list-item--hover--BackgroundColor", "value": "#3c3f42", "var": "var(--pf-c-menu--m-nav__list-item--hover--BackgroundColor)" }; export default c_menu_m_nav__list_item_hover_BackgroundColor;
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /** * @fileoverview using private properties isn't a Closure violation in tests. */ self.ApplicationTestRunner = self.ApplicationTestRunner || {}; App...
(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{256:function(t,e,n){"use strict";n.r(e);var a=n(95),r=n.n(a),c=n(0),i=n.n(c),o=n(260),s=n(26),u=n(401),d=n.n(u),l=n(333),p=n.n(l),b=n(311),f=n.n(b),g=n(309),y=n(310),m=n.n(y),h=function(){return i.a.createElement(o.StaticQuery,{query:"2011440971",render:function(...
$(document).ready(function() { //reset form $("#resetBtn").click(function() { window.location = window.location }); $("#btnResetForm").click(function() { window.location = window.location }); //khởi tạo giá trị cho các lựa chọn for (let i = 1; i <= 31; i++) { $('[id^...
import { SET_NETWORK } from '../actions/network' import configure from '../config' const config = configure() const name = config.requiredNetworkId export const initialState = { name, } const networkReducer = (state = initialState, action) => { if (action.type === SET_NETWORK) { return { name: action.n...
import './getDocument.js'; import { getActiveElement } from './getActiveElement.js'; var isIE11 = typeof window !== "undefined" && "msCrypto" in window; /** * Cross-browser method that returns the next active element (the element that * is receiving focus) after a blur event is dispatched. It receives the blur * ev...
const getPrismicSingleton = prismicContent => { if (typeof prismicContent !== 'object') { throw new Error(`Must be an object, got: ${prismicContent}`); } return prismicContent.edges[0].node.data; }; export default getPrismicSingleton;
import Route from '@ember/routing/route'; // eslint-disable-next-line ember/no-mixins import UnauthenticatedRouteMixin from 'ember-simple-auth/mixins/unauthenticated-route-mixin'; export default class LoginRoute extends Route.extend(UnauthenticatedRouteMixin) { model() { return { email: '', password:...
#!/usr/bin/python # -*- coding: utf-8 -*- # Filename: logManager.py import sys,os import urllib2,urllib,httplib,socket import re import MySQLdb import time,threading,thread import string import Queue import traceback httplib.HTTPConnection._http_vsn = 10 httplib.HTTPConnection._http_vsn_str = 'HTTP/1.0' g_mutex_lo...
var namespaceivy = [ [ "locadora", "namespaceivy_1_1locadora.html", "namespaceivy_1_1locadora" ], [ "InterfaceCLI", "classivy_1_1_interface_c_l_i.html", "classivy_1_1_interface_c_l_i" ], [ "InterfaceGUI", "classivy_1_1_interface_g_u_i.html", "classivy_1_1_interface_g_u_i" ], [ "IvyLog", "classivy_1_1_iv...
const connection = require('../database/connection') const crypto = require('crypto') module.exports = { async index(req, res) { const ongs = await connection('ongs').select('*') return res.json(ongs) }, async create(req,res) { const {name, email, whatsapp, city, uf} = req.body...
var Mapper = require('./mapper.js') var map = require('./freetype_map.js') var FreetypeKeyboardListener = function(editor){ document.onkeypress = this.keyPress.bind(this); document.onkeyup = this.keyUp.bind(this) this.mapper = new Mapper(map, { backspace: this.backspace.bind(this) }) this.editor = editor } Fr...
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*- # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 # # MDAnalysis --- https://www.mdanalysis.org # Copyright (c) 2006-2017 The MDAnalysis Development Team and contributors # (see the file AUTHORS for the full list of names) # # Released under t...
'use strict'; var dao = require('js/dao'); var GenericBuildingRPCActions = require('js/actions/rpc/genericBuilding'); var BuildingWindowActions = require('js/actions/windows/building'); function makeGenericBuildingCall(url, options) { url = url.replace(/^\//, ''); dao.makeServ...
module.exports = { appKey: 'cf0d9c3385323d6c70d38357a8aa9385a', nomDuSite: 'ProjetImmobilier', port : process.env.PORT || 3000 };
export * from './useSwitch'
import React from 'react'; import { Platform, StyleSheet, Text, View } from 'react-native'; import { StackViewStyleInterpolator } from 'react-navigation-stack'; import { Scene, Router, Actions, Reducer, ActionConst, Overlay, Tabs, Modal, Drawer, Stack, Lightbox, } from 'react-native-router-flux'; ...
import alt from '../dispatcher/alt'; import WebAPI from '../util/WebAPI'; import AppActions from '../actions/AppActions'; class ItemsStore { constructor() { this.bindAction(AppActions.getItems, this.getItems); this.state = {items: [], error: null}; } getItems() { WebAPI.getItems() .then((items) ...
/* eslint-env jasmine */ 'use strict'; describe('move |', function () { var fse = require('fs-extra'); var helper = require('./support/spec_helper'); var jetpack = require('..'); beforeEach(helper.beforeEach); afterEach(helper.afterEach); it('moves file', function (done) { var preparations = functio...
load("8b38e12cab5de21ec5393724c0d9b7dd.js"); //------------------------------------------------------------------------------------------------------- // Copyright (C) Microsoft Corporation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full licens...
import { useRef } from 'react' import Head from 'next/head'; import { faPuzzlePiece } from '@fortawesome/pro-light-svg-icons'; import DocPage from '../../components/DocPage' import DocSection from '../../components/DocSection' import Code from '../../components/Code' export default function Targets() { const toc ...
"""Controller implementations for item menu.""" from app.config import Stripe, fb_db __all__ = ('MenuController',) class MenuController: """Controller for menu items.""" @staticmethod def get_all_menu_items(): """ Get all menu items. Returns ``None`` if any exceptions occur duri...
integration.whiteRootDomains = ['bunte.de']; integration.blackSubDomains = [];
const functions = require("firebase-functions") const request = require("request-promise-native") const admin = require("firebase-admin") const stream = require("getstream") const crypto = require("crypto") const config = require("./config") const FCM_KEY = config.keys.fcm const API_KEY = config.keys.stream_api_key co...
import React, { lazy } from 'react' import { CHeaderNav, CHeaderNavItem, CHeaderNavLink, CBadge, CButton, CButtonGroup, CCard, CCardBody, CCardFooter, CCardHeader, CCol, CProgress, CRow, CSwitch, CCallout } from '@coreui/react' import CIcon from '@coreui/icons-react' const Employ...
window['anychart']=window['anychart']||{};window['anychart']['maps']=window['anychart']['maps']||{};window['anychart']['maps']['vietnam']={"crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:EPSG:32648"}}, "type": "FeatureCollection", "features": [{"geometry": {"type": "Polygon", "coordinates": [[[332650.25...
/*********************************************************************** * The fact that all tested JS engines (Gecko, Presto and WebKit) store * the properties in-order is abused to generate a proper Ruby-ish YAML. **********************************************************************/ function rubyObject(type, da...
export { default as Dashboard } from './Dashboard'; export { default as AddPlayers } from './AddPlayers'; export { default as AddScores } from './AddScores'; export { default as GameBoard } from './GameBoard'; export { default as Stats } from './Stats'; export { default as Login } from './Login';
// Two elements jQuery carousel // Author: Przemysław Winiarski // https://bluegaming.pl // Init carousel $(document).ready(function(){ if($('.bg-carousel-container').length){ $('.bg-carousel-container').each(function(){ var i = 0; $(this).children().clone().appendTo($(this)); // Clone container elements $(this...
mycallback( {"CONTRIBUTOR OCCUPATION": "Medical Doctor", "CONTRIBUTION AMOUNT (F3L Bundled)": "1400.00", "ELECTION CODE": "G2010", "MEMO CODE": "", "CONTRIBUTOR EMPLOYER": "Hash R. Patel", "DONOR CANDIDATE STATE": "", "CONTRIBUTOR STREET 1": "1500 Broadrick Dr", "CONTRIBUTOR MIDDLE NAME": "", "DONOR CANDIDATE FEC ID": ...
var timeout = 6000; //初始化定时器对象 var wsTimeoutObj = null; var ws; export function connect(username) { let getUser = username let uname = getUser; //实例化websocket ws = new WebSocket("ws://127.0.0.1:8888"); //连接成功的回调onopen ws.onopen = function (e) { let data = "系统消息:建立连接成功"; listMsg(data,...
var gmm_est_weights_ebw_8cc = [ [ "main", "gmm-est-weights-ebw_8cc.html#a0ddf1224851353fc92bfbff6f499fa97", null ] ];