text
stringlengths
3
1.05M
(window.webpackJsonp=window.webpackJsonp||[]).push([[27],{142:function(e,n,t){"use strict";t.d(n,"a",(function(){return b})),t.d(n,"b",(function(){return p}));var a=t(0),r=t.n(a);function i(e,n,t){return n in e?Object.defineProperty(e,n,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[n]=t,e}function o(e,n){var t...
import React from 'react'; const NotFoundPage = () => { return ( <div> <h3>Page not found</h3> </div> ); }; export default NotFoundPage;
import { PURCHASE_CATEGORY_ALCOHOL, PURCHASE_CATEGORY_COMBINED_PASSENGER_TRANSPORT, PURCHASE_CATEGORY_ELECTRICITY, PURCHASE_CATEGORY_FINANCIAL_SERVICES, PURCHASE_CATEGORY_FOOD, PURCHASE_CATEGORY_FOOD_SERVING_SERVICES, PURCHASE_CATEGORY_HEALTHCARE_DOCTOR, PURCHASE_CATEGORY_INFORMATION_COMMUNICATION, PU...
from django.db import models from django.contrib.auth.models import User # Create your models here. class Products(models.Model): SUB_CHOICES = [(100, 'HealthPlus'), (200, 'CasaBella')] upc = models.CharField(max_length=200) alu = models.CharField(max_length=200, null=True, blank=True...
# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/ads/googleads/v6/enums/attribution_model.proto """Generated protocol buffer code.""" from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import refle...
# -*- coding: utf-8 -*- # Copyright (c) 2021, Atriina and Contributors # See license.txt from __future__ import unicode_literals # import frappe import unittest class TestInterview(unittest.TestCase): pass
module.exports = function(grunt) { var fs = require('fs'); grunt.initConfig({ mochaTest: { test: { src: ["spec/*.spec.js"] } }, http: { scalers: { options: { url: "https://api.clever-cloud.com/v2/products/instances", gzip: true, agent: new...
import json import io def util_load_json(path): with io.open(path, mode='r', encoding='utf-8') as f: return json.loads(f.read()) def test_authenticate_user(requests_mock): from FireMonSecurityManager import Client, authenticate_command mock_response = util_load_json('test_data/get_a...
import React, { Component } from 'react'; class MapShow extends Component { render() { return 'MapShow'; } } export default MapShow;
""" 请求参数模型 """ from pydantic import BaseModel, Field from .model import UserBase class Token(BaseModel): access_token: str = Field(..., description='Token值') token_type: str = Field(..., description='Token类型') # 创建账号需要验证的条件 class UserCreate(UserBase): confirm: str = Field(..., description='确认密码') ...
#!/usr/bin/env python # -*- coding: utf-8 -*- # elements_gui.py # Copyright (c) 2005-2013, Christoph Gohlke # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code mu...
"use strict"; /** * Login API * * Provides various utilities for managing the login process, including * login/logout and import/export of appstate files. * * Encapsulates the login by caching the appstate in memory. * * @module login */ var __importDefault = (this && this.__importDefault) || function (mod) { ...
""" tsv.py ~~~~~~~~~~~~ Save/Read to 'data/XXXX.tsv' file. :copyright: (c) 2018 by Steve (steve@lemoncloud.io) :license: see LICENSE for more details. """ import pprint # base of data folder DATA_BASE = 'data/' FILE_EXT = '.tsv' # save lines to tsv #TODO - if type of lines is numpy, then use other-way. def save_li...
export default { "limit": 100, "total_students": 1, "students_with_high_absences": [ { "count": 4, "student": { "id": 2, "grade": "9", "first_name": "Mari", "last_name": "Kenobi", "house": "Beacon" } } ] };
/* global Module */ /* Magic Mirror 2 * Module: MMM-Modulebar * * By Erik Pettersson * Based on the TouchNavigation Module by Brian Janssen * * MIT Licensed. */ //var request = require('request'); Module.register("MMM-Modulebar1",{ requiresVersion: "2.1.0", defaults: { // Al...
import React from "react"; import PropTypes from "prop-types"; import { Container, Grid, TimeSpan } from "basis"; import KitchenSinkLayout from "./KitchenSinkLayout"; import KitchenSinkForm from "./KitchenSinkForm"; function FormWithTimeSpan({ label, initialValue = { years: "", months: "" }, disabled, ...
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. "use strict"; ((window) => { const core = window.Deno.core; const { pathFromURL } = window.__bootstrap.util; const build = window.__bootstrap.build.build; function chmodSync(path, mode) { core.jsonOpSync("op_chmod_sync", { path: pa...
import React, { useEffect, useMemo } from 'react' import { Button } from 'antd-mobile' import { SvgIcon, StakingTokenItem, Toast } from '@/common' import { I18n, Base } from '@tangle-pay/common' import { useStore } from '@tangle-pay/store' import { useGetNodeWallet } from '@tangle-pay/store/common' import { useGetParti...
# -*- coding: utf-8 -*- from xml.etree import ElementTree as ET #查看文件 # root = ET.XML(open('test.xml','r',encoding='utf-8').read()) # print(root.tag) # # for node in root: # print(node.tag,node.attrib,node.find('rank').text) # # print(ET.__file__) #打开并解析文件内容 tree = ET.parse("test.xml") root = tree.getroot() ...
/** * modalEffects.js v1.0.0 * http://www.codrops.com * * Licensed under the MIT license. * http://www.opensource.org/licenses/mit-license.php * * Copyright 2013, Codrops * http://www.codrops.com */ var ModalEffects = (function() { function init() { var overlay = document.querySelector( '.md-overlay' ); ...
import {Octokit} from "@octokit/rest" import {Image, Link} from "blitz" import {useEffect, useState} from "react" import {ButtonLink} from "@/components/ButtonLink" import {Header} from "@/components/Header" import {Feature} from "@/components/home/Feature" import {FeatureIcon} from "@/components/home/FeatureIcon" imp...
const qs = require("querystring"); const id = "vue-loader-plugin"; const NS = "vue-loader"; const BasicEffectRulePlugin = require("webpack/lib/rules/BasicEffectRulePlugin"); const BasicMatcherRulePlugin = require("webpack/lib/rules/BasicMatcherRulePlugin"); const DescriptionDataMatcherRulePlugin = require("webpack/lib/...
# Copyright 1999-2020 Alibaba Group Holding 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 a...
import typeScriptPlugin from 'rollup-plugin-typescript2'; import path from 'path'; import { terser } from 'rollup-plugin-terser'; const pkg = require(path.resolve(__dirname, `package.json`)); const banner = `/*! * ${pkg.name} v${pkg.version} * (c) ${new Date().getFullYear()} ${pkg.author.name} * @license MIT */`; con...
from beet import Context, Function def beet_default(ctx: Context): function_path = ctx.cache.generated.directory / "foo.mcfunction" if not function_path.is_file(): function_path.write_text("say hello\n") ctx.data["demo:foo"] = Function(source_path=function_path)
export default { setEmployees : (state,emps) => state.employees = emps, newEmployee : (state,emp) => state.employees.push(emp), setDialogStatus : (state,status) => state.addDialog = status, setLogginStatus : (state,loginStatus) => state.loggedin = loginStatus, setResponse : (state,resp) => stat...
import UsersSerializer from '../users'; class AdminUsersSerializer extends UsersSerializer { } export default AdminUsersSerializer;
import React, { PropTypes } from 'react'; import { DISPLAY_NAME_PREFIX } from '../../constants'; import BaseCollectionHelper from '../BaseCollectionHelper'; const Reverse = ({ collection, ...baseProps }) => ( <BaseCollectionHelper collection={collection.slice().reverse()} {...baseProps} /> ); Reverse.d...
let ifSettingsPasswordUpdated = document.querySelector("#ifSettingsPasswordUpdated"); let settingsUpdateButton = document.querySelector("#settingsUpdateButton"); let settingsPasswordChangeInput1 = document.querySelector("#settingsPasswordChangeInput1") let settingsPasswordChangeInput2 = document.querySelector("#setting...
webpackHotUpdate("cms",{ /***/ "./node_modules/css-loader/index.js?!./node_modules/gatsby-plugin-postcss/node_modules/postcss-loader/src/index.js?!./src/components/Footer.css": /*!*******************************************************************************************************************************************...
const CustomError = require("../extensions/custom-error"); module.exports = function createDreamTeam(members) { if(Array.isArray(members)) { let dreamTeam = members.map(item => { if (typeof item === "string") { let charItem = item.trim(); return charItem[0].toUpperCase(); }...
describe('c3 chart domain', function () { 'use strict'; var chart; var args = { data: { columns: [ ['data1', 30, 200, 100, 400, 150, 250], ['data2', 50, 20, 10, 40, 15, 25] ] }, axis: { y: {}, y2: {} ...
/** * Exposes REST methods of Elasticsearch * * @module services/elasticsearch * @author Michał Borzęcki * @copyright (C) 2019 ACK CYFRONET AGH * @license This software is released under the MIT license cited in 'LICENSE.txt'. */ import Service, { inject as service } from '@ember/service'; export default Servi...
var inflect = require('i'); var _ = require('lodash'); /** * Displays the singular or plural of a string based on a number * or number of items in an array. * * If arity is 1, returns the plural form of the word. * * @param {String} count * @param {String} singular string * @param {String} plural string * @r...
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ import { resolve } from 'path'; import init from './init'; import './server/b...
import { viewCls } from '../../services/api/cls' import { viewIxps } from '../../services/api/ixps' import { viewCable } from '../../services/api/cables' import { viewFacility } from '../../services/api/facs' const state = { bounds: [], points: [], focus: null, filter: ['all'], easePoint: null, hasToEase: ...
from datetime import datetime from google.cloud import texttospeech def generate_audio_file(article_item, local_path, audio_filename): ttsc = texttospeech.TextToSpeechClient() text2syn_dt = datetime.fromtimestamp(article_item['publication_datetime'] / 1000).strftime('%d-%m-%Y') text2syn_pre = 'This audio...
/* * ! 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. */ // Provides control sap.m.QuickViewPage sap.ui.define([ 'jquery.sap.global', './library', 'sap/ui/core/Control', 'sap/ui/core...
(function() { 'use strict'; /** @ngInject */ function ProfileModalController($uibModalInstance, profileService, libraryService, apiService) { var vm = this; vm.profile = profileService.getProfile(); vm.processing = false; vm.updateProfile = function() { vm.processing = true; return ...
'use strict'; var path = require('path'); var gulp = require('gulp'); var conf = require('./conf'); var browserSync = require('browser-sync'); var $ = require('gulp-load-plugins')(); gulp.task('markups', function() { function renameToHtml(path) { path.extname = '.html'; } return gulp.src(path.join(conf.p...
import numpy as np import scipy.signal as signal import scipy.interpolate as ip from typing import List, Tuple def firls(n : int, f, a, w=None) -> Tuple: """ FIR filter design using least-squares error minimization. Calculate the filter coefficients for the linear-phase finite impulse respon...
import warnings import math import numpy as np from PIL import Image class LBP: """ Class used to compute the Local Binary Patterns of an image and the resulting histograms. It computes the matrix holding the local representation of the texture for each pixel, i.e. the comparison of each pixel with it...
(function ($) { $.fn.touchwipe = function (settings) { var config = { min_move_x: 20, min_move_y: 20, wipeLeft: function () {}, wipeRight: function () {}, wipeUp: function () {}, wipeDown: function () {}, preventDefaultEvent...
/* * GET home page. */ exports.show = function(req, res){ //res.redirect('editor'); res.render('editor', { title: 'CMPE 272',user:req.user }); };
import React from 'react'; export default function Schedule({ day }) { if ( day === 'workshop' ) { return ( <table> <thead> <tr> <th>Time</th> <th>Event</th> <th>Instructor</th> <th>Location</th> </tr> </thead> <tbo...
# flake8: noqa from tdp_core.dbview import DBConnector, DBMapping from .pg_agg_score import agg_score from .entity import cellline, gene, tissue, drug from .data import cellline_data, tissue_data, cellline_depletion, cellline_drug, cellline_drug_screen from .query_common import create_common from .query_gene import cre...
""" eZmax API Definition (Full) This API expose all the functionnalities for the eZmax and eZsign applications. # noqa: E501 The version of the OpenAPI document: 1.1.7 Contact: support-api@ezmax.ca Generated by: https://openapi-generator.tech """ import sys import unittest import eZmaxApi from...
# -*- coding:utf8 -*- # File : __init__.py # Author : Jiayuan Mao # Email : maojiayuan@gmail.com # Date : 12/29/16 # # This file is part of TensorArtist.
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S10.1.8_A1; * @section: 10.1.8; * @assertion: When control enters an execution context for function code, * an arguments object is created and initialised; * @descripti...
import React, { Component } from 'react' import PropTypes from 'prop-types' import { Link } from 'react-router-dom' import sortBy from 'sort-by' import Book from './Book' import * as BooksAPI from './BooksAPI' class SearchBooks extends Component { static propTypes = { onUpdateBook: PropTypes.func.isRequired, ...
define([], () => { class AsyncQueue { constructor(config) { this.queue = []; this.queuePauseTime = (config && config.queuePauseTime) || 0; this.itemId = 0; this.timer = null; } processQueue() { const item = this.queue.shift(); ...
import React, { useState, useEffect, useMemo } from 'react' import { Link, graphql } from 'gatsby' import Helmet from 'react-helmet' import Layout from '../components/Layout' import Posts from '../components/Posts' import Guides from '../components/Guides' import Projects from '../components/Projects' import SEO from ...
body.html(''); body.append('button') .html('English') .on('click', function () { d3.text(src, load); }); body.append('button') .html('中文') .on('click', function () { d3.text(src_chinese, load); }); ol = body.append('ol'); src = 'https://bigdata-mindstorms.github.io/d3-playground/ontouchstart/2016/0...
#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2017, Simon Dodsley (simon@purestorage.com) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import absolute_import, division, print_function __metaclass__ = type ANSIBLE_METADATA = {'metadata_version': '1.1',...
/* Template Name: Color Admin - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.5 Version: 1.8.0 Author: Sean Ngu Website: http://www.seantheme.com/color-admin-v1.8/admin/ */ var handleDataTableColVis = function() { "use strict"; if ($('#data-table').length !== 0) { $('#data-t...
exports.info = { 'number': 115, 'species': '**Kangaskhan** (**ガルーラ** *Garura*)', 'types' : 'Normal', 'pokedexEntry': 'Kangaskhan protects its child by keeping it in its pouch. It has zero forgiveness for those who harm its child and will beat them down. You shouldn\'t get close to the child when it\'s p...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Constants_1 = require("./Constants"); var Enums_1 = require("./Enums"); var RequestSender_1 = require("./RequestSender"); var SIPMessage_1 = require("./SIPMessage"); /* * @augments SIP * @class Class creating a SIP dialog. RFC 3261 12.1 ...
/// Copyright (c) 2009 Microsoft Corporation /// /// Redistribution and use in source and binary forms, with or without modification, are permitted provided /// that the following conditions are met: /// * Redistributions of source code must retain the above copyright notice, this list of conditions and /// ...
var express = require("express"); var router = express.Router(); var burger = require("../models/burger.js"); // Create all our routes and set up logic within those routes where required. router.get("/", function(req, res) { burger.selectAll(function(data) { var hbsObject = { burgers: data }; conso...
/* Copyright (c) 2004-2008, The Dojo Foundation All Rights Reserved. Available via Academic Free License >= 2.1 OR the modified BSD license. see: http://dojotoolkit.org/license for details */ if(!dojo._hasResource["dojox.form.PasswordValidator"]){ dojo._hasResource["dojox.form.PasswordValidator"]=true; dojo.provid...
import * as tslib_1 from "tslib"; import * as React from "react"; import * as ReactDOM from "react-dom"; import { Manager, Reference, Popper } from "react-popper"; import { observer } from "mobx-react"; import { DomNodeProxy } from "../util/react/DomNodeProxy"; import styled, { css } from "../styled-components"; const ...
window._ = require('lodash'); window.Popper=require('popper.js').default; /** * We'll load jQuery and the Bootstrap jQuery plugin which provides support * for JavaScript based Bootstrap features such as modals and tabs. This * code may be modified to fit the specific needs of your application. */ try { window....
import logging import os import re import cv2 logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) logger.addHandler(logging.StreamHandler()) class FolderStructure: def __init__(self, config): self.config = config self.output_dir = self.config['PATHS']['output_folder'] se...
var callbackArguments = []; var argument1 = function callback(a,b,c,d) { callbackArguments.push(JSON.stringify(arguments)) argument3[0] = "" argument2[5] = "" base_0[8] = 893 return a+b+c/d }; var argument2 = ""; var argument3 = function callback(a,b,c,d) { callbackArguments.push(JSON.stringify(arguments)) argu...
#!/usr/bin/env python3 import math import rospy from std_msgs.msg import String # from gomoku_ik.msg import Pose4D # from gomoku_ik.msg import Joint_msg from std_msgs.msg import Float32MultiArray from gomoku_ik_solver.gomoku_ik_solver import ik_gomoku import numpy as np from std_srvs.srv import * class ik_calc(): ...
var searchData= [ ['deletefirstnode_102',['deleteFirstNode',['../class_simple_list.html#ada0e1d3b9b10f475ea0ea2d3a2101383',1,'SimpleList']]], ['deletelastnode_103',['deleteLastNode',['../class_simple_list.html#a9d6c9e5558b506b07c61ea65300fdff9',1,'SimpleList']]], ['deletenode_104',['deleteNode',['../class_simple_...
import numpy as np from vg.compat import v2 as vg def percentile(points, axis, percentile): """ Given a cloud of points and an axis, find a point along that axis from the centroid at the given percentile. Args: points (np.arraylike): A `kx3` stack of points. axis (np.arraylike): A 3D ...
""" Routines for reading an LCModel *.RAW file. Note that this can ONLY happen if there is already a dataset loaded from which we can 'steal' the SW, and DIM0 and other parameters. """ # Python modules from __future__ import division import os.path # 3rd party modules import numpy as np # Our modules import vespa....
const nforce = require('../'); const auth={}; async function authenticate(){ const sfuser = process.env.SFUSER; const sfpass = process.env.SFPASS; const clientID = process.env.CLIENTID; const clientSecret = process.env.CLIENTSECRET; if(!auth.org){ console.log("authenticating"); aut...
# -*- coding: utf-8 -*- # 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...
'use strict'; const assert = require("assert"); const stateVariable = require("./element-state-variable.js"); const gc = require("./gc.js"); module.exports = { codeExternal: function(node, history, parent) { return ""; }, code: function(node, history, parent) { assert(node); assert...
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View } from 'react-native'; class ImageDemo extends Component { render() { return ( <View style={styles.container}> <Tex...
var searchData= [ ['tolowercase',['toLowerCase',['/home/shannaracat/dev/gitlab/workspace_oss/LostInCompilation/docs/doxygen/shacat/html/classutil_1_1Strings.html#a111a9ac8088ec56d3a109b95d43f654a',1,'util::Strings']]], ['top',['top',['../classRuntimeStack.html#a8b6e80ccca40a8445d1c7329248d19e8',1,'RuntimeStack']]],...
'use strict'; let geocoder; let directions; /** Initializes Google Maps API objects (geocoder, directions). */ function initGmaps() { // eslint-disable-line no-unused-vars console.log('Maps initialized.'); geocoder = new google.maps.Geocoder(); console.log('Geocoder object: ' + geocoder); directions = new goo...
from frame import * from mm_math import * from convert import * from util import * from scene import * from tool import * from selection import * from external import *
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interop...
import Vue from 'vue' import * as api from '@/api/api' import { isURL } from '@/utils/validate' import { ACCESS_TOKEN } from '@/store/mutation-types' import onlineCommons from '@jeecg/antd-online-mini' export function getQueryString(parameter) { return new URL(window.location.href).searchParams.get(parameter) } expo...
var backtrack = require('backtrack'); var util = require("util"); // # Depper // Represents a set of packages that need to be installed function Depper () { var self = this; backtrack.Expression.apply(self); } util.inherits(Depper, backtrack.Expression); // ## pkg // adds a package to the dependency set Depper.p...
import React from 'react' import PropTypes from 'prop-types' import ScrollAnimation from 'react-animate-on-scroll' const Video = ({id, preview}) => ( <section className="video wide-section"> <div className="columns"> <div className="column"> <figure className="image is-16by9"> <iframe ...
"""" We consider a simple tidal lagoon - no sluice gate boundaries are included so we only focus on the control of turbines. This example presents the tidal power plant simulation functionality by coupling operational algorithms with Thetis boundaries More information about the tidal range algorithms can be found in: ...
window.onload = function() { setVariable(); }; function setVariable() { hljs.highlightAll(); }
'use strict'; module.exports = { up: (queryInterface, Sequelize) => { return queryInterface.createTable('Reminds', { id: { allowNull: false, primaryKey: true, type: Sequelize.UUID, defaultValue: Sequelize.UUIDV4, }, createdAt: { allowNull: false, t...
import {action} from '@enact/storybook-utils/addons/actions'; import {boolean, select, text} from '@enact/storybook-utils/addons/controls'; import Button from '@enact/lune/Button'; import {Header} from '@enact/lune/Panels'; import Picker from '@enact/lune/Picker'; import PopupTabLayout, {Tab, TabPanels, TabPanel} from ...
import axios from 'axios' export const getCarro = async () => { axios.get("http://apiadvisor.climatempo.com.br/api/v1/climate/temperature/locale/3477?token=your-app-token") .then(response => { console.log(response) }) .catch(error => { console.log(error) }) }
var fs = require('fs'); var XmlStream = require('xml-stream'); var stream = fs.createReadStream('wiki.xml'); var xml = new XmlStream(stream); // returns a unique array function uniq(a) { var seen = {}; return a.filter(function(item) { return seen.hasOwnProperty(item) ? false : (seen[item] = tru...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = faviconTagsBuilder; var _buildFileUrl = _interopRequireDefault(require("./buildFileUrl")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } function _slicedToArray(arr...
day_of_week = input() work_days = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'] vacation_days = ['Saturday', 'Sunday'] if day_of_week in (work_days): print('Working day') elif day_of_week in (vacation_days): print('Weekend') else: print('Error')
import mapboxgl from 'mapbox-gl-js-mock'; import { interactions } from '../../src/constants'; export default function createMap(mapOptions = {}) { const map = new mapboxgl.Map(Object.assign({ container: document.createElement('div'), style: 'mapbox://styles/mapbox/streets-v8' }, mapOptions)); // Some mo...
var searchData= [ ['threaddata',['ThreadData',['../structThreadData.html',1,'']]], ['timer',['Timer',['../structTimer.html',1,'']]], ['tlsconnectparams',['TLSConnectParams',['../structTLSConnectParams.html',1,'']]], ['tobereceivedackrecord_5ft',['ToBeReceivedAckRecord_t',['../structToBeReceivedAckRecord__t.html...
/*! * paths 3.1.1 * https://greensock.com * * Copyright 2008-2020, GreenSock. All rights reserved. * Subject to the terms at https://greensock.com/standard-license or for * Club GreenSock members, the agreement issued with that membership. * @author: Jack Doyle, jack@greensock.com */ /* eslint-disable */ let _s...
// Original source: http://webdeveloper.earthweb.com/repository/javascripts/2005/03/660841/vergrootglas.html // // Changes and improvements: // - supports multiple images, anywhere on page, not just at top // - calculates magnification from the image width's // - supports non-square individually-sized magnifiers // - ...
import {physx, Phys3D} from './Physx'; Bridge.assembly("unity-script-converter", function ($asm, globals) { "use strict"; Bridge.define("MiniGameAdaptor.PhysicMaterialCombine", { $kind: "enum", statics: { fields: { Average: 0, Minimum: 2, ...
import ReactionError from "@reactioncommerce/reaction-error"; import SimpleSchema from "simpl-schema"; import generateVerificationTokenObject from "@reactioncommerce/api-utils/generateVerificationTokenObject.js"; const inputSchema = new SimpleSchema({ email: String, userId: String }); /** * @name authentication/...
import sys import json class Memory: def __init__(self, i, f, s, b): self.ints = [None] * int(i) self.floats = [None] * int(f) self.strings = [None] * int(s) self.bools = [None] * int(b) def insert_ints(self, arr_ints): for idx, values in enumerate(arr_ints): ...
#!/usr/bin/env python """General focus control. To do: improve placement of countdown timer. Right now it works fine for Secondary Focus but probably not for the NA2 Guider. But first see if the obs specs are comfortable with the NA2 Guider gmech controls. History: 2008-02-04 ROwen 2008-02-11 ROwen Modified to alw...
import dataiku from dataiku.customrecipe import ( get_recipe_config, get_input_names_for_role, get_output_names_for_role, ) import re from gluonts.time_feature import get_seasonality from gluonts_forecasts.model_config_registry import ModelConfigRegistry from dku_io_utils.partitions_handling import get_fold...
# Copyright 2022 The Casdoor 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 applicabl...
// Copyright (C) 2013 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- es6id: 19.4.3.1 description: > Symbol constructor features: [Symbol] ---*/ assert.sameValue( Object.getPrototypeOf(Symbol('66')).constructor, Symbol, "The value of `O...
import React, { useEffect } from 'react' import { useDispatch } from 'react-redux' import { listProducts } from '../actions/prodList' import { ProductCards } from '../components/ProductCards' const Home = () => { const dispatch = useDispatch() useEffect(() => { dispatch(listProducts()) }, [dispa...
/** * Module dependencies. */ var express = require('express'); var http = require('http'); var path = require('path'); var handlebars = require('express3-handlebars') var index = require('./routes/index'); var project = require('./routes/project'); var hello = require('./routes/hello'); // Example route // var us...