text
stringlengths
3
1.05M
// All material copyright ESRI, All Rights Reserved, unless otherwise specified. // See http://@sbaseurl@/jsapi/jsapi/esri/copyright.txt and http://www.arcgis.com/apps/webappbuilder/copyright.txt for details. //>>built require({cache:{"url:themes/TabTheme/panels/TabPanel/TabWidgetFrame.html":'\x3cdiv\x3e\r\n \x3cdi...
/*! * FileInput Spanish Translations * * This file must be loaded after 'fileinput.js'. Patterns in braces '{}', or * any HTML markup tags in the messages must not be converted or translated. * * @see http://github.com/kartik-v/bootstrap-fileinput * * NOTE: this file must be saved in UTF-8 encoding. */ (functi...
import Ember from 'ember'; export default Ember.Helper.helper(function([target, property, val]) { Ember.set(target, property, val); });
# -*- coding: utf-8 -*- # Copyright (c) 2020, Dirk Chang and contributors # For license information, please see license.txt from __future__ import unicode_literals import frappe from frappe import throw, _ def valid_sync_auth_code(auth_code=None): auth_code = auth_code or frappe.get_request_header("AuthorizationCod...
'use strict'; const periodic = require('periodicjs'); const Promisie = require('promisie'); // const utility = require('../utilities/index'); const utilities = require('../utilities'); const UAParser = require('ua-parser-js'); // console.log({ getParameterized }); // let components = utilities.controllerhelper.c...
import unittest from datetime import datetime from src.naming_utils import NamingUtils class TestNamingUtils(unittest.TestCase): def test_prepare_text(self): result = NamingUtils.prepare_text(" a##b:c;d\\e.. ") self.assertEqual(result, "a.b.c.d.e") result = NamingUtils.prepare_text("12...
import UserApi from './userAPI'; export function signUpUser(credentials, history, redirect) { return function(dispatch) { return UserApi.signup(credentials) .then(response => { if(response.jwt) { localStorage.setItem("jwt", response.jwt); localStorage.setItem("user", JSON.string...
'use strict'; import EventEmitter from 'eventemitter2'; let Victor = require('victor'); export default class Ball extends EventEmitter{ constructor(x, y, active, socket, puckImg){ super(); //roept super van eventemitter op anders zal het niet werken this.socket = socket; this.radius = 20; this.top...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright SquirrelNetwork import requests from core import decorators from bs4 import BeautifulSoup from core.utilities.message import message @decorators.delete.init def init(update, context): r = requests.get("https://distrowatch.com/random.php") parsed_html ...
import pandas as pd import yfinance as yf import datetime now = datetime.datetime.now() tickers = pd.read_csv('CNDX_holdings.csv', skiprows=2).dropna() tickers = tickers['Ticker'] precios = {} for i in tickers: pr = yf.download(i, start='2018-01-01', end=now, interval='1d') pr = pr.drop(['Adj Clo...
# Copyright 2013: Mirantis Inc. # 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 b...
# Copyright The PyTorch Lightning team. # # 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 i...
const transD = {'T':'A','A':'U','G':'C','C':'G'} var aminos = `Ala GCU, GCC, GCA, GCG Leu UUA, UUG, CUU, CUC, CUA, CUG Arg CGU, CGC, CGA, CGG, AGA, AGG Lys AAA, AAG Asn AAU, AAC Met AUG Asp GAU, GAC Phe UUU, UUC Cys UGU, UGC Pro CCU, CCC, CCA, CCG Gln CAA, CAG Ser UCU, UCC, UCA, UCG...
// Copyright 2016 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. /** * Implements an incremental search field which can be shown and hidden. * Canonical implementation is <cr-search-field>. * @polymerBehavior */ var...
# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may ...
import Context from './Context'; function v8n() { return typeof Proxy !== undefined ? proxyContext(new Context()) : proxylessContext(new Context()); } // Custom rules let customRules = {}; v8n.extend = function(newRules) { Object.assign(customRules, newRules); }; v8n.clearCustomRules = function() { cu...
# imports import yfinance as yf from pandas_datareader import data as pdr import pandas as pd # list all stocks url = 'ftp://ftp.nasdaqtrader.com/SymbolDirectory/nasdaqlisted.txt' df = pd.read_csv(url, sep = "|") def lookup_fn(df, key_row, key_col): try: return df.iloc[key_row][key_col] except IndexEr...
'use strict'; module.exports = { /** * When editing your questions pay attention to your punctuation. Make sure you use question marks or periods. * Make sure the first answer is the correct one. Set at least ANSWER_COUNT answers, any extras will be shuffled in. */ "QUESTIONS_EN_GB" : [ ...
export var options = { colorStart: 'Ω', colorEnd: '∆', field: '§', defaultFg: null, defaultBg: null, }; // const RE_RGB = /^[a-fA-F0-9]*$/; // // export function parseColor(color:string) { // if (color.startsWith('#')) { // color = color.substring(1); // } // else if (color.startsWith('0x...
import gzip import json from pathlib import Path import numpy as np def check_bidsphysio_outputs(outPrefix, expectedPhysioLabels, expectedDataFilePrefix, ): """ Auxiliary function to check the output of running dcm2bids ...
import VueRouter from "vue-router"; import AdminPage from "./pages/Admin"; import StudentPage from "./pages/Student"; import CourseSchedulerPage from "./pages/CourseScheduler"; import UploadCsvPage from "./pages/UploadCsv"; import EditSemestersPage from "./pages/EditSemesters"; import CourseExplorerPage from "./pages/C...
'use strict'; const _ = require('lodash'); module.exports = ({ Aigle, neoAsync }) => { return { 'pick:array': { setup: config => { this.array = _.times(config.count); this.promiseIterator = value => value % 2; this.neoAsyncIterator = (n, cb) => cb(null, n % 2); }, aigl...
import React from 'react' import Link from 'gatsby-link' import * as utils from './utils' import logo from "./logo.png"; const Header = ({ siteTitle }) => ( <div style={{ background: 'rebeccapurple', marginBottom: '1.45rem', }} > <div> <nav className="navbar is-transparent"> <div classNa...
$(function(){ const toggleDisplay = elemId => { let x = document.getElementById(elemId); if (x.style.display !== 'block') { x.style.display = 'block'; } else { x.style.display = 'none'; } }; $("#readme-button").click(function() { ...
#!/usr/bin/python from __future__ import absolute_import, division, print_function # Copyright 2019-2021 Fortinet, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the ...
angular.module('portainer.app').directive('rdWidgetHeader', function rdWidgetTitle() { var directive = { requires: '^rdWidget', scope: { titleText: '@', icon: '@', classes: '@?', }, transclude: true, template: '<div class="widget-header"><div class="row"><span ng-class="cla...
import copy import re from emarkdown.Processor.ExtractProcessor.BasicProcessor import BasicProcessor from emarkdown.Processor.ExtractProcessor.Block.TableProcessor import TableProcessor from emarkdown.Processor.ExtractProcessor.Config import TagConfig as Config, TagTypes class HeaderProcessor(BasicProcessor): tag...
/** * Copyright (c) 2013-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * * @provides...
/*! ========================================================= * Argon Dashboard React - v1.1.0 ========================================================= * Product Page: https://www.creative-tim.com/product/argon-dashboard-react * Copyright 2019 Creative Tim (https://www.creative-tim.com) * Licensed under MIT (https:/...
module.exports = new basis.Token(3).as(function(n){ return n * n; });
# # For licensing see accompanying LICENSE file. # Copyright (C) 2020 Apple Inc. All Rights Reserved. # import argparse import math from utils import logger import numpy as np from . import register_scheduler from .base_scheduler import BaseLRScheduler SUPPORTED_LAST_CYCLES = ['cosine', 'linear'] @register_schedul...
main+u1+u2+staged user1
import { StyleSheet, Dimensions } from 'react-native'; import Fonts from 'App/Theme/Fonts'; const { width, height } = Dimensions.get('window'); export default StyleSheet.create({ inputContainerStyle: { paddingLeft: 10, top: 5, borderWidth: 0, }, titleTextStyle: { color: 'white' }, containerSt...
(function(mainNav){ var $_main, $_navIcon; $_main = $( '.main-container' ); $_navIcon = $( '<i class="fa"></i>' ); var addIcon = function(targetNav) { targetNav.before( $_navIcon ); } var expand = function(targetNav) { $_navIcon.removeClass( 'open' ).addClass( 'close' ); targetNav.removeCla...
import { bindActionCreators } from 'redux' import { connect } from 'react-redux' import KontakteIntern from '../../components/geschaeft/KontakteIntern' import * as GeschaefteKontakteInternActions from '../../actions/geschaefteKontakteIntern' import * as AppActions from '../../actions/app' const actions = Object.assign...
// This file was procedurally generated from the following sources: // - src/dstr-binding/obj-ptrn-id-init-fn-name-fn.case // - src/dstr-binding/default/async-gen-method-dflt.template /*--- description: SingleNameBinding assigns name to "anonymous" functions (async generator method (default parameter)) esid: sec-asyncg...
# # 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 # "License"); you may not...
"""Timeout for tests to stop hanging testruns This plugin will dump the stack and terminate the test. This can be useful when running tests on a continuous integration server. If the platform supports SIGALRM this is used to raise an exception in the test, otherwise os._exit(1) is used. """ import os import signal ...
# Copyright 2015-2016 Yelp 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 to in writin...
// (C) Copyright 2014-2015 Hewlett Packard Enterprise Development LP import React, { Component, PropTypes } from 'react'; import classnames from 'classnames'; import CSSClassnames from '../../../utils/CSSClassnames'; import Intl from '../../../utils/Intl'; import Props from '../../../utils/Props'; const CLASS_ROOT = ...
# Copyright (C) 2019 The Raphielscape Company LLC. # # Licensed under the Raphielscape Public License, Version 1.c (the "License"); # you may not use this file except in compliance with the License. """ Userbot module to help you manage a group """ from asyncio import sleep from os import remove from telethon import e...
/** * Auto-generated action file for "ServiceBusManagementClient (servicebus)" API. * * Generated at: 2019-06-11T15:14:17.351Z * Mass generator version: 1.1.0 * * flowground :- Telekom iPaaS / azure-com-servicebus-connector * Copyright © 2019, Deutsche Telekom AG * contact: flowground@telekom.de * * All files...
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["moment-locale-gom-latn-js"],{"0caa":function(a,e,n){(function(a,e){e(n("c1df"))})(0,(function(a){"use strict"; //! moment.js locale configuration function e(a,e,n,r){var o={s:["thoddea sekondamni","thodde sekond"],ss:[a+" sekondamni",a+" sekond"],m:["eka minta...
const Sections = [ { id: 'new-users', color: 'var(--primary)', title: 'New Users', subtitle: 'Reliability', prefix: '1', content: 'Keep your candidate users on the website by pointing out to key feature of your app/dashboard.', }, { id: 'new-hidden-features', color: '#007CF0'...
// https://github.com/michael-ciniawsky/postcss-load-config module.exports = { "plugins": { // to edit target browsers: use "browserslist" field in package.json "autoprefixer": {} } }
import arrow from django.db.models import QuerySet from core.globals import logger from pyrogram import types from tasks.task_scaffold import TaskScaffold from ..base_response import BaseResponse class IterateChatHistoryTask(TaskScaffold): def iterate_chat_history_task(self, *args, **kwargs) -> BaseResponse: ...
import React from 'react'; import '../styles/CustomTag.css'; const CustomTag = ({ color, text }) => { return ( <div className={`ui ${color} label nonSelect`} >{text}</div> ) } export default CustomTag;
import { render } from '~/lib/gfm'; describe('gfm', () => { describe('render', () => { it('processes Commonmark and provides an ast to the renderer function', async () => { let result; await render({ markdown: 'This is text', renderer: (tree) => { result = tree; }, ...
/* * Document : app.js * Author : pixelcave * Description: UI Framework Custom Functionality (available to all pages) * */ var App = function() { // Helper variables - set in uiInit() var $lHtml, $lBody, $lPage, $lSidebar, $lSidebarScroll, $lSideOverlay, $lSideOverlayScroll, $lHeader, $l...
'use strict'; class KueInput { constructor(config, logger, queue){ config.options = config.options || {}; config.options.kue = config.options.kue || {}; this.concurrency = config.options.kue.concurrency || 1; this.topicName = config.input.slice(config.input.indexOf(':') + 1); this.logger = log...
import { StyleSheet } from 'react-native'; import Constants from 'expo-constants'; export default StyleSheet.create({ container: { flex: 1, paddingHorizontal: 24, paddingTop: Constants.statusBarHeight + 20, }, header: { flexDirection: 'row', justifyContent: 'space-be...
module.exports={title:"Shelly",slug:"shelly",svg:'<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Shelly</title><path d="M12 0C5.373 0 0 5.373 0 12a12 12 0 0 0 .033.88c1.07-.443 2.495-.679 4.322-.679h5.762c-.167.61-.548 1.087-1.142 1.436-.532.308-1.14.463-1.823.463h-.927c-.89 0-1.663.154-2...
from typing import Iterable, Dict from networkx import DiGraph, NetworkXNoCycle from tree_format import format_tree from mach_nix.data.nixpkgs import NixpkgsIndex from mach_nix.resolver import ResolvedPkg def make_name(pkg: ResolvedPkg, nixpkgs: NixpkgsIndex): pi = pkg.provider_info extras = f"[{' '.join(pk...
var express = require('express'); var router = express.Router(); /* pull all env into a string */ let strValue = ''; Object.keys(process.env).forEach( function (key) { strValue += key + '=' + process.env[key] + '\n'; }); /* GET home page. */ router.get('/', function(req, res, next) { res.render('index', { title...
import React from 'react'; import {createDevTools} from 'redux-devtools'; // Monitors are separate packages, and you can make a custom one import LogMonitor from 'redux-devtools-log-monitor'; import DockMonitor from 'redux-devtools-dock-monitor'; import SliderMonitor from 'redux-slider-monitor'; // createDevTools tak...
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8fc102d1.js'); const dom = require('./dom-581e28c5.js'); const key = require('./key-822806f8.js'); /** * Date units */ var units; (function (units) { units["day"] = "day"; units["month"] = "month"; ...
module.exports={D:{"11":0.025344,"20":0.0396,"21":0.009504,"22":0.003168,"23":0.001584,"25":0.001584,"26":0.003168,"28":0.001584,"29":0.004752,"31":0.006336,"33":0.009504,"36":0.001584,"37":0.003168,"38":0.003168,"40":0.004752,"42":0.00792,"43":0.066528,"44":0.001584,"45":0.004752,"46":0.004752,"47":0.001584,"48":0.003...
define(["./Cartesian2-697a9954","./Check-f3fec9b0","./when-54335d57","./EllipseGeometry-83e0cc91","./VertexFormat-acf45ede","./Math-737a2579","./GeometryOffsetAttribute-6e5d8e16","./Transforms-251ff661","./RuntimeError-88a32665","./ComponentDatatype-417761a2","./WebGLConstants-4739ce15","./EllipseGeometryLibrary-0f7e82...
# -*- coding: utf-8 -*- # # Copyright 2021 Google Inc. 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 requir...
""" Quick embed parser """ import discord, re from mantabot.util import emoji COLORRE = re.compile(r'rgb\(\s*([0-9]{1,3})\s*,' r'\s*([0-9]{1,3})\s*,' r'\s*([0-9]{1,3})\s*\)', flags=re.IGNORECASE) class Parser(object): """ Simple parser for dict-based embed desc...
/* * TokenInfo.js - View * * Handle displaying information about the token (name, supply, currency, etc). */ Ext.define('FW.view.TokenInfo', { extend: 'Ext.Container', xtype: 'fw-tokeninfo', requires:[ 'Ext.Img', 'FW.view.phone.TokenInfo', 'FW.view.tablet.TokenInfo' ], ...
from ..base import * import networkx as nx import angr import itertools class AngrCallstackKeyClusterer(Clusterer): def __init__(self, visible=True): super(AngrCallstackKeyClusterer, self).__init__() self.visible = visible def cluster(self, graph): for node in graph.nodes: ...
const schema = [ { enum: ['bool', 'boolean'], type: 'string', }, ]; const create = (context) => { const longForm = (context.options[0] || 'boolean') === 'boolean'; return { BooleanTypeAnnotation(node) { const diff = node.range[1] - node.range[0]; if (longForm && diff === 4) { ...
var app = angular.module('myapp', ['ui.bootstrap', 'ngResource']); app.factory('empservice', ['$resource', function ($resource) { var url = 'http://myngwebapi.azurewebsites.net/api'; var result = $resource(url + '/employee/:no', { no: '@no' } , { update: { ...
!function(log, console, enabled){ forEach.call(array(CONSOLE_METHODS), function(key){ log[key] = function(){ if(enabled && key in console)return apply.call(console[key], console, arguments); }; }); $define(GLOBAL + FORCED, {log: assign(log.log, log, { enable: function(){ enabled = true; ...
import { CollapseModel } from "./Collapse"; import { DialogModel } from "./Dialog"; import { HeaderModel } from "./Header"; import { ViewModel } from "./View"; import { StyleModel } from "./Style"; import { FilterModel } from "./Filter"; export { CollapseModel, DialogModel, HeaderModel, ViewModel, StyleModel, FilterMo...
var mbaasApi = require('fh-mbaas-api'); var express = require('express'); var mbaasExpress = mbaasApi.mbaasExpress(); var cors = require('cors'); // list the endpoints which you want to make securable here var securableEndpoints; // fhlint-begin: securable-endpoints securableEndpoints = ['/hello']; // fhlint-end var ...
const axios = require('../../../utils/axios'); const cheerio = require('cheerio'); const url = require('url'); const typelist = ['通知公告', '院所新闻', '教学信息', '学术动态', '学院简报']; const urlList = ['xwdt/tzgg.htm', 'xwdt/ysxw.htm', 'xwdt/jxxx.htm', 'xwdt/xsdt.htm', 'xwdt/xyjb.htm']; const host = 'http://www.mech.sdu.edu.cn/'; m...
import jwt from bs4 import BeautifulSoup from urllib.parse import urlparse, parse_qs from .api_info import ApiInfo from .exceptions import * def parse_token(url: str) -> tuple: redirect_url = str(url).replace("#", "?") # Patch the URL if 'Lockout' in redirect_url: raise Lockout if 'LoginWith2fa' in redire...
function insert(){"use strict";var e=document.getElementById("assembling"),d=document.getElementById("note-1").cloneNode(!0),n=document.getElementById("supLink1"),t=document.getElementById("note-2").cloneNode(!0),o=document.getElementById("supLink2"),l=document.getElementById("note-3").cloneNode(!0),c=document.getEleme...
import Vue from 'vue' import Vuex from 'vuex'; import mutations from "./mutations"; import actions from "./actions"; // 1.安装插件 Vue.use(Vuex) // 2.创建Store对象 const state = { cartList: [] } const store = new Vuex.Store({ state, mutations, actions }) // 3.挂载Vue实例上 export default store
import unittest def bubble_sort(seq): ''' :param seq: :return: seq ordenada Complexidade (Pior Caso) Tempo: O(n^2) Memória: O(1) Complexidade (Melhor Caso - Lista de entrada já está ordenada) Tempo: O(n) Memória: O(1) ''' for i in range(len(seq)-1): if seq ...
""" https://leetcode.com/problems/n-ary-tree-level-order-traversal/ https://leetcode.com/submissions/detail/184433348/ """ """ # Definition for a Node. class Node(object): def __init__(self, val, children): self.val = val self.children = children """ from common.n_ary_tree_node import Node class...
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } f...
var isObject = require('./isObject'); /** `Object#toString` result references. */ var funcTag = '[object Function]', genTag = '[object GeneratorFunction]', proxyTag = '[object Proxy]'; /** Used for built-in method references. */ var objectProto = Object.prototype; /** * Used to resolve the * [`toStringTag`...
const test = require('tape') const testCommon = require('./common') const operations = [] // The db must wait for pending operations to finish before closing. This to // prevent segfaults and in the case of compactRange() to prevent hanging. See // https://github.com/Level/leveldown/issues/157 and 32. function testPen...
import matplotlib.pyplot as plt from sklearn.datasets import make_blobs from sklearn.cluster import KMeans # creation de base d'apprentissage X, y = make_blobs( n_samples=150, n_features=2, centers=3, cluster_std=0.5, shuffle=True, random_state=0 ) # visualiser les point avant de classer plt.scatter( X[:,...
/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow * @nolint * @format */ // TODO (bvaughn) Remove this file once flowtype/flow-typed/pull/773 is merged type $npm$propTypes$Re...
# Copyright 2017, Google LLC 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 applicable law or a...
/*! jQuery UI - v1.10.4 - 2014-01-17 * http://jqueryui.com * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ jQuery(function(e){e.datepicker.regional.km={closeText:"ធ្វើ​រួច",prevText:"មុន",nextText:"បន្ទាប់",currentText:"ថ្ងៃ​នេះ",monthNames:["មករា","កុម្ភៈ","មីនា","មេសា","ឧសភា","មិថុនា","ក...
var searchData= [ ['modelinvalid_0',['ModelInvalid',['../namespaceGoogle_1_1OrTools_1_1Sat.html#abd593c9e6d551c806d04abc386a505e8aa1cc2f9a5c97bd1133373ebbc79fd554',1,'Google::OrTools::Sat']]] ];
import urllib.parse from django.contrib.auth.models import User from django.test import TestCase from dfirtrack_main.models import Recommendation class RecommendationViewTestCase(TestCase): """recommendation view tests""" @classmethod def setUpTestData(cls): # create object Recommendat...
/* * 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 { registerAcknowledgeRoute } from './register_acknowledge_route'...
/* Highstock JS v9.1.2 (2021-06-16) Indicator series type for Highcharts Stock (c) 2010-2021 Wojciech Chmiel License: www.highcharts.com/license */ 'use strict';(function(a){"object"===typeof module&&module.exports?(a["default"]=a,module.exports=a):"function"===typeof define&&define.amd?define("highcharts/indica...
# Copyright (c) OpenMMLab. All rights reserved. import torch import torch.nn as nn from mmcv.cnn import ConvModule, DepthwiseSeparableConvModule from mmcv.runner import BaseModule class DarknetBottleneck(BaseModule): """The basic bottleneck block used in Darknet. Each ResBlock consists of two ConvModules and...
var searchData= [ ['audio',['audio',['../namespacemv_1_1constants_1_1audio.html',1,'mv::constants::audio'],['../namespacemv_1_1constants_1_1error_1_1audio.html',1,'mv::constants::error::audio']]], ['banditmachine',['banditMachine',['../namespacemv_1_1constants_1_1error_1_1bandit_machine.html',1,'mv::constants::erro...
from datavalidation import data_validator, PASS, FAIL, NA, Summary from datavalidation.models import DataValidationMixin from .base import BaseModel class CReturnValues(DataValidationMixin, BaseModel): """ Class Method Data Validator Return Values tests: valid return values for class method validators "...
XSym 0078 a484d093f7fc350b117a180672f9bb59 /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/sre_compile.py ...
import React, { useState, useEffect } from "react"; import API from "../../utils/API"; import placeholder from './imageplaceholder.png'; import { Input } from "../../components/Form"; import { connect } from "react-redux"; import Nav from "../../components/Nav" import './style.css' //ignore eslint warnings /*eslint-di...
export default { title: 'FN Components/Message Toast', parameters: { description: ` `, components: ['fn-message-toast'] } }; const localStyles = ` <style> .docs-fn-container > .fn-message-toast { margin-bottom: 1rem; } </style> `; export const MessageToast = () => ...
import React from 'react'; import DocumentTitle from 'react-document-title'; import exposeRouter from '../components/exposerouter.react'; import {focusInvalidField} from '../../lib/validation'; import {getForm} from '../auth/store'; import {msg} from '../intl/store'; import {updateFormField, login} from '../auth/action...
!function(e,a){void 0===mejs.plugins&&(mejs.plugins={},mejs.plugins.silverlight=[],mejs.plugins.silverlight.push({types:[]})),mejs.HtmlMediaElementShim=mejs.HtmlMediaElementShim||{getTypeFromFile:mejs.Utils.getTypeFromFile},void 0===mejs.MediaFeatures&&(mejs.MediaFeatures=mejs.Features),void 0===mejs.Utility&&(mejs.Uti...
export {default} from './GameBoardContainer';
import axios from 'axios'; const getBasePath = () => { return 'http://localhost:5000'; } export const getOrdersStates = async () => { return await axios.get( `${getBasePath()}/status` ).then(function (response) { return response.data; }).catch(function (error) { return error.resp...
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],{ /***/ "./node_modules/cropperjs/dist/cropper.js": /*!************************************************!*\ !*** ./node_modules/cropperjs/dist/cropper.js ***! \************************************************/ /*! no static exports found */ /***/ (fu...
/** * Copyright IBM Corp. 2019, 2020 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. * * Code generated by @carbon/icon-build-helpers. DO NOT EDIT. */ 'use strict'; function _interopDefault (ex) { return (ex && (typeof ex === '...
module.exports = (array) => { let i = 0; while (i < array.length) { if (Array.isArray(array[i])) { array.splice(...[i, 1].concat(array[i])); } else { i += 1; } } return array; };
import React, {Component} from 'react'; import {PropTypes} from 'prop-types'; import {connect} from 'react-redux'; import {bindActionCreators} from 'redux'; import * as actionCreators from '../../actions/lottery'; import ProgressButton from 'react-progress-button'; import './ticket-page.css'; import 'progress_css'; @c...
import React from 'react'; import PropTypes from 'prop-types'; import { Box } from '@strapi/design-system/Box'; import Cross from '@strapi/icons/Cross'; import { Tag } from '@strapi/design-system/Tag'; import { useIntl } from 'react-intl'; const AttributeTag = ({ attribute, filter, onClick, operator, value }) => { c...
'use strict'; /* jshint ignore:start */ /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ /* jshint ignore:end */ var Q = require('q'); /* jshint ignore:line */ var _ = require('lodash'); /* jshint ignore:line */ var util = require('util'); /* jshin...