text stringlengths 2 1.04M |
|---|
import keymaster from 'keymaster';
import PropTypes from 'prop-types';
import Layout from 'antd/lib/layout';
import React from 'react';
import SplitPane from 'react-split-pane';
import { connect } from 'unistore/react';
import { actions } from '../stores/unistoreStore';
import QueryEditorResult from './QueryEditorResul... |
import React, { Component } from 'react';
import ColumnHeaderSF from '../../../imports/components/ColumnHeaderSF';
import ColumnHeader2S from '../../../imports/components/ColumnHeader2S';
import ColumnHeaderS from '../../../imports/components/ColumnHeaderS';
import ColumnHeader from '../../../imports/components/Column... |
/**
* Copyright 2012-2022, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
module.exports = {
eventDataKeys: ['binNumber']
}; |
/*!
* Bootstrap-select v1.13.1 (https://developer.snapappointments.com/bootstrap-select)
*
* Copyright 2012-2018 SnapAppointments, LLC
* Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
... |
var WFCustomProcessEditViewController = WFCustomProcessEditViewControllerBase.extend({}); |
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
// This icon file is generated by build/generate.ts
// tslint:disable
/** @type {?} */
export var FrownFill = {
name: 'frown',
theme: 'fill',
icon: '... |
/**
* 合集,课程列表
*/
import React, { Component } from 'react'
import buy from '../buy/buy.less'
import {wxSdkPay} from '@/utils/global.js'
class OrderPrice extends Component {
constructor(props) {
super(props)
this.state = {
one: '33',
huabei: false,
huabeiIndex: 0
}
}
chooseOne(a){... |
const path = require(`path`)
const fetch = require('node-fetch')
const webpack = require('webpack')
const _ = require('lodash')
const { createFilePath } = require('gatsby-source-filesystem')
const controlledBlogTags = require('./src/page-content/content-blog.json').tags
// unfortunately not possible because JS/TS
// ... |
const indexedDB =
window.indexedDB ||
window.mozIndexedDB ||
window.webkitIndexedDB ||
window.msIndexedDB ||
window.shimIndexedDB;
let db;
const request = indexedDB.open("budget", 1);
request.onupgradeneeded = ({ target }) => {
let db = target.result;
db.createObjectStore("pending", { autoIncrement: tru... |
const CoinFlip = artifacts.require("coinFlip");
const Ownable = artifacts.require("Ownable");
module.exports = function(deployer, accounts) {
deployer.deploy(CoinFlip);
}; |
// @ts-nocheck
"use strict";
// Reserved Postgres words
import { reservedMap } from "./reserved.js";
// TODO: Is Deno.Buffer the correct way to handle buffers?
const { Buffer } = Deno;
const fmtPattern = {
ident: "I",
literal: "L",
string: "s",
};
/**
* Convert to Postgres default ISO 8601 format
* @param {... |
/**
* Webpack Production Config
*/
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var CleanWebpackPlugin = require('clean-webpack-plugin');
var config = {
publicPath: 'http://127.0.0.1:3000/'
};
module.exp... |
/**
* Make a map and return a function for checking if a key
* is in that map.
* IMPORTANT: all calls of this function must be prefixed with
* \/\*#\_\_PURE\_\_\*\/
* So that rollup can tree-shake them if necessary.
*/
function makeMap(str, expectsLowerCase) {
const map = Object.create(null);
const list =... |
import { Link } from 'gatsby'
import React from 'react'
import '../styles/components/header.scss'
const Header = ({ children, location }) => (
<header>
<div className="container">
<div className="inner-header">
<div className="logo">
<Link to="/"></Link>
</div>
<div classN... |
/*!
* @3imed-jaberi/deepfreeze
* Copyright(c) 2021 Imed Jaberi
* MIT Licensed
*/
'use strict'
/**
* Module dependencies.
*/
const cloneDeep = require('lodash.clonedeep')
/**
* Expose `deepFreeze()`.
*/
module.exports = deepFreeze
/**
* @api public
* @function deepFreeze
* @description - Function to deep... |
var foo = 1;
var bar = 2;
var foo_1 = 'a';
var bar_1 = 'b';
var input = {
foo: foo_1,
bar: bar_1
};
export default input;
export { input as __moduleExports };
export { foo_1 as foo };
export { bar_1 as bar }; |
var callbackArguments = [];
var argument1 = function (length, delta) {
callbackArguments.push(arguments)
return length + delta.getLength();
};
var argument2 = true;
var argument3 = function (p, sub) {
callbackArguments.push(arguments)
return p.then(function () {
reporter.log('Submodule: ' + sub.na... |
let arrayDiv = new Array();
function createDivs () {
let rowsAndColumns = prompt("How many rows/columns? (<=100)", "");
if ((rowsAndColumns % 1 === 0) && (rowsAndColumns > 0 && rowsAndColumns < 101)) {
for (i = 0; i < (rowsAndColumns * rowsAndColumns); i++) {
let container = document.quer... |
var callbackArguments = [];
var argument1 = true;
var argument2 = {"82":1.7055241312972207e+308,"1.7976931348623157e+308":"","2.7071903524160595e+307":1.714508587422269e+308,"ha":82,"1.606468573303944e+308":"AP","1.2341701347659202e+308":"=#L","":1.1644251580175262e+307,"U_":1.5332880299252223e+308,"I":1.00300073224557... |
//https://www.youtube.com/watch?v=KnAsYNhI_CY
//javascript part to fill in the table
var QID = 0;
var tbody = document.getElementById('tbody1');
function AddItemToTable(english, foreign) {
let trow = document.createElement("tr");
let td1 = document.createElement... |
import React, { useEffect, useState, useRef } from 'react'
import propTypes from 'prop-types'
import ItalyMap from '../../components/ItalyMap'
import DataTable from '../../components/DataTable'
import ChartTrending from '../../containers/ChartTrending'
import './DashboardView.scss'
const ResponsiveDiv = ({ className,... |
/* eslint-disable */
require('babel-register');
var webpack = require('../webpack.config.babel.js');
module.exports = function(config) {
config.set({
basePath: '../',
frameworks: ['mocha', 'chai-sinon'],
reporters: ['mocha'],
browsers: ['PhantomJS'],
files: [
'test/browser/**/*.js'
],
preprocessor... |
import { __rest } from "tslib";
import * as React from 'react';
import { useOUIAProps } from '@patternfly/react-core';
import styles from '@patternfly/react-styles/css/components/Table/table';
import inlineStyles from '@patternfly/react-styles/css/components/InlineEdit/inline-edit';
import { css } from '@patternfly/rea... |
exports.up = (knex) => {
return knex.schema.createTable('service_units', function (tbl) {
tbl.increments('service_unit_id').primary();
tbl.string('service_unit_name', 255).notNullable();
tbl.text('service_unit_description', 255);
});
};
exports.down = (knex) => {
return knex.schema.dropTableIfExists(... |
// Copyright (c) 2017 Uber Technologies, Inc.
//
// 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... |
/**
* Content script for measuring exposure to videos from known channels on youtube
* @module WebScience.Measurements.SocialMediaAccountExposure
*/
(
async function () {
/** time when the document is loaded */
let initialLoadTime = Date.now();
let privateWindowResults = await browser.s... |
const router = require('express').Router();
const dashboardRoutes = require('./dashboard-routes');
const homeRoutes = require('./home-routes');
const apiRoutes = require("./api");
router.use('/', homeRoutes);
router.use('/dashboard', dashboardRoutes);
router.use('/api', apiRoutes);
module.exports = router; |
import React, { useCallback, useState, Children, useMemo } from 'react';
import PropTypes from 'prop-types';
import Tab from './Tab';
import Item from './Item';
import Content from './Content';
const eachChildFactory = ({ onClickTab, currentTab, defaultTab, tab }) => (
result,
child,
index,
) => {
const { tit... |
import authAxios from '@/axios-auth.js';
export default {
name:'AuthMixin',
data(){
return {
}
},
methods:{
loginUser(payload){
authAxios
.post(
'/accounts:signInWithPassword',
payload
)
.then((res)=>{
// console.log(re... |
import OpeningSomeDays from "../pages/opening-days-some";
import { shallow, mount } from "enzyme";
import { I18nextProvider } from "react-i18next";
import i18n from "../i18nForTests";
const testValidatorErrors = {
example: "test error"
};
const testCumulativeAnswers = {
example: "test answer"
};
const testSwitch... |
'use strict';
/**
* Module dependencies.
*/
var mongoose = require('mongoose'),
Schema = mongoose.Schema,
crypto = require('crypto');
/**
* A Validation function for local strategy properties
*/
var validateLocalStrategyProperty = function(property) {
return ((this.provider !== 'local' && !this.updated) || pro... |
/*
Template: Payyed HTML Template
Written by: Harnish Design - (http://www.harnishdesign.net)
*/
(function ($) {
"use strict";
// Preloader
$(window).on('load', function () {
$('[data-loader="circle-side"]').fadeOut(); // will first fade out the loading animation
$('#preloader').delay(333).fadeOut('slow'); // ... |
// Set the variable 'MongoClient' to the property MongoClient
// of the object returned by the require() function
const MongoClient = require("mongodb").MongoClient;
// Connect to the system using the username and password as a URL
const URL = "mongodb+srv://jennifergardner:QULf3PmJOHlpJg4e@cluster0-tc9sb.mongodb.net/... |
import { shallow } from 'enzyme';
import StockContent from './StockContent';
const stockData = [
[
'20/06/2021',
'B3SA3',
'C',
37,
16.31,
603.53,
'Easynvesting',
'123527'
],
[
'20/06/2021',
'VILG11',
'V',
30,
115.47,
3460.78,
'Easynvesting',
'123527... |
// @flow
import * as React from "react";
import { shallow } from "enzyme";
import Badge from "../index";
import Sightseeing from "../../icons/Sightseeing";
import defaultTheme from "../../defaultTheme";
describe("Badge", () => {
const content = "badge";
const type = "info";
const dataTest = "test";
const ico... |
/**
* isMobile.js v0.4.1
*
* A simple library to detect Apple phones and tablets,
* Android phones and tablets, other mobile devices (like blackberry, mini-opera and windows phone),
* and any kind of seven inch device, via user agent sniffing.
*
* @author: Kai Mallea (kmallea@gmail.com)
*
* @license: http://cr... |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || fals... |
import {
GraphQLSchema,
GraphQLObjectType,
GraphQLInterfaceType,
GraphQLEnumType,
GraphQLList,
GraphQLNonNull,
GraphQLString
} from 'graphql';
import { makeExecutableSchema } from 'graphql-tools';
import { PubSub, SubscriptionManager, withFilter } from 'graphql-subscriptions';
const pubsub = new PubSub... |
console.log("Paste buton pressed.");
try {
var storedLegal = chrome.storage.local.get('newStorage', function (items) {
console.log(items);
document.getElementById("enterAddressFullName").value = items.newStorage.src_name;
document.getElementById("enterAddressAddressLine1").value = items.new... |
// Import dependencies
const express = require("express");
const path = require("path");
const mongoose = require("mongoose");
const routes = require("./routes");
// Configure environmental variables
require("dotenv").config();
// Config PORT variable
const PORT = process.env.PORT || 3001;
// Init Express
const app ... |
module.exports = {
types: [
{ value: 'feat', name: 'feat: A new feature' },
{ value: 'fix', name: 'fix: A bug fix' },
{ value: 'docs', name: 'docs: Documentation only changes' },
{
value: 'style',
name: 'style: Changes that do not affect the meaning of the code\n ... |
/* Copyright 2002-2021, OpenNebula Project, OpenNebula Systems */
/* */
/* 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 ... |
function getRandomIntRange (min, max) {
return Math.round(Math.random() * (max - min) + min);
}
module.exports = getRandomIntRange; |
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Helmet } from 'react-helmet';
import { StaticQuery, graphql } from 'gatsby';
import 'bootstrap/dist/css/bootstrap.min.css'
import Header from './header'
//import '../assets/sass/main.scss';
import Footer from './Footer';
import Side... |
const mix = require("laravel-mix");
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel appli... |
define(
function (require) {
var TTFReader = require('ttf/ttfreader');
var ttf2eot = require('ttf/ttf2eot');
var eot2ttf = require('ttf/eot2ttf');
describe('eot 转 ttf', function () {
var eotBuffer = ttf2eot(require('data/baiduHealth-hinting.ttf'))
var ttf =... |
import React from 'react';
import { graphql } from 'gatsby';
import Layout from '../components/Layout';
import SEO from '../components/SEO';
const Basic = ({ data }) => {
const { title } = data.markdownRemark.frontmatter;
const { html, excerpt } = data.markdownRemark;
return (
<Layout bodyClass='pa... |
import React, { Component } from "react"
import { View, Text, Button, Image, Platform, StyleSheet } from 'react-native';
import ContactStyles from "./contactStyles"
export default class Contact extends Component {
constructor(props) {
super(props);
}
render() {
return <View style={ContactS... |
/* detects if a page is readerable, and tells the main process if it is */
function pageIsReaderable () {
var paragraphMap = new Map()
var paragraphs = document.querySelectorAll('p')
var totalLength = 0
if (!paragraphs) {
return false
}
for (var i = 0; i < paragraphs.length; i++) {
var pLength =... |
// @flow strict
import React from 'react';
import Helmet from 'react-helmet';
import { withPrefix } from 'gatsby';
import type { Node as ReactNode } from 'react';
import { useSiteMetadata } from '../../hooks';
import styles from './Layout.module.scss';
type Props = {
children: ReactNode,
title: string,
descripti... |
"use strict";
/*
* The MIT License (MIT)
*
* Copyright (c) 2017 NEM
*
* 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 strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _createIcon = _interopRequireDefault(require("./util/createIcon"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
var _default = (0, _createIcon["defaul... |
import Vue from 'vue'
import 'normalize.css/normalize.css' // A modern alternative to CSS resets
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import locale from 'element-ui/lib/locale/lang/zh-CN' // lang i18n
import '@/styles/index.scss' // global css
import VXETable from 'vxe-ta... |
export const GET_ALL_PROMOTIONS = "GET_ALL_PROMOTIONS";
export const GET_ALL_PROMOTIONS_SUCCESS = "GET_ALL_PROMOTIONS_SUCCESS";
export const GET_ALL_PROMOTIONS_FAILED = "GET_ALL_PROMOTIONS_FAILED";
export const GET_PROMOTION = "GET_PROMOTION";
export const GET_PROMOTION_SUCCESS = "GET_PROMOTION_SUCCESS";
export const ... |
/*
* Copyright 2005-2019 The Kuali Foundation
*
* Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
*
* Unless required by ap... |
import styled from "styled-components";
import { NavLink as Link } from "react-router-dom";
import { FaBars } from "react-icons/fa";
export const Nav = styled.nav`
background: #0000;
height: 80px;
display: flex;
justify-content: space-between;
z-index: 10;
`;
export const NavLink = styled(Link)`
color: #0... |
// This file was auto generated from the url
// https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-PDS-PersonNameType-1
const BaseCodeSystem = require('../BaseClasses/CareConnect-BaseCodeSystem')
let csJsn = { 'status': 'draft', 'concept': [{ 'display': 'Usual (current) name', 'code': 'L' }, { 'display': 'Alias name',... |
const express = require('express')
const app = express()
app.use('/site', express.static('docs'))
app.listen(3000, () => {
console.log('listening on port 3000')
}) |
// 0. Get clientKey
getClientKey().then(clientKey => {
getPaymentMethods().then(paymentMethodsResponse => {
// 1. Create an instance of AdyenCheckout
const checkout = new AdyenCheckout({
environment: 'test',
clientKey: clientKey, // Mandatory. clientKey from Customer Area
... |
import _get from 'lodash/get';
const isJSXText = (node) => {
if (!node) {
return false;
}
return node.type === 'JSXText';
};
const isNumericLiteral = (node) => {
if (!node) {
return false;
}
return node.type === 'Literal' && typeof node.value === 'number';
};
const isStringL... |
/*
* The MIT License (MIT)
*
* Copyright (c) 2014 Broad Institute
*
* 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 u... |
'use strict';
var React = require('react'),
createClass = require('create-react-class'),
DOM = require('react-dom-factories'),
onClickOutside = require('react-onclickoutside')
;
var DateTimePickerMonths = onClickOutside( createClass({
render: function() {
return DOM.div({ className: 'rdtMonths' }, [
DOM.tabl... |
import test from 'ava'
import ask from '../api/core-ask'
test('Volkswagen', t => {
const query = ask.query
t.truthy(query instanceof Function)
}) |
var callbackArguments = [];
var base_0 = [627,5e-324,126,618,627]
var r_0= undefined
try {
r_0 = base_0.map()
}
catch(e) {
r_0= "Error"
}
function serialize(array){
return array.map(function(a){
if (a === null || a == undefined) return a;
var name = a.constructor.name;
if (name==='Object' || name=='Boolean'|| name=='Ar... |
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Route | modelleditor', function(hooks) {
setupTest(hooks);
test('it exists', function(assert) {
let route = this.owner.lookup('route:modelleditor');
assert.ok(route);
});
}); |
describe("L.ToolbarAction", function() {
var map,
container,
ul,
toolbar,
Action;
beforeEach(function() {
map = new L.Map(L.DomUtil.create('div')).setView([41.7896,-87.5996], 15);
container = L.DomUtil.create('div', 'leaflet-toolbar-0', document.body);
ul = L.DomUtil.create('ul');
Action = L.Toolbar... |
'use strict';
angular.module('BaubleApp')
.controller('RootCtrl', ['$scope', '$location', '$state', 'Alert', 'User', 'overlay',
function ($scope, $location, $state, Alert, User, overlay) {
$scope.$on('$stateChangeSuccess', function() {
// controls the user menu
$scope.user = User... |
var args = arguments[0] || {};
var options = {
msgPull: L('ptrPull', 'Pull to refresh...'),
msgRelease: L('ptrRelease', 'Release to refresh...'),
msgUpdating: L('ptrUpating', 'Updating...'),
top: 0
};
var height = 50,
attached = false,
hidden = true,
pulling = false,
pulled = false,
loading = false,
offset ... |
/**
* Given a singly linked list of integers l and an integer k,
* remove all elements from list l that have a value equal to k.
*
* @param {List} l
* @param {Number} k
* @return {List}
*
* @example
* For l = [3, 1, 2, 3, 4, 5] and k = 3,
* the output should be [1, 2, 4, 5]
*
* Singly - linked lists are alr... |
import Immutable from 'immutable'
import { SET_SSH_KEY, SET_UNLOADED } from './constants'
export function reducer (state, action) {
state = state || Immutable.fromJS({ sshKey: null, sshId: undefined, loaded: false })
switch (action.type) {
case SET_SSH_KEY:
return state.set('sshKey', action.payload.key)... |
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define("iview/locale", [], factory);
else if(typeof exports === 'object')
exports["iview/locale"] = factory()... |
/**
* @fileoverview added by tsickle
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
/// <reference types="rxjs" />
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license th... |
const sources = require("./sources.json");
exports.create = {
Source: sources
}; |
// COPYRIGHT © 2021 Esri
//
// All rights reserved under the copyright laws of the United States
// and applicable international laws, treaties, and conventions.
//
// This material is licensed for use under the Esri Master License
// Agreement (MLA), and is bound by the terms of that agreement.
// You may redistribute... |
`),code:n.code.toString(),tags:p,relatedInformation:this._convertRelatedInformation(e,n.relatedInformation)}},r.prototype._convertRelatedInformation=function(e,n){var o=this;if(!n)return[];var i=[];return n.forEach(function(a){var c=e;if(a.file&&(c=o._libFiles.getOrCreateModel(a.file.fileName)),!!c){var l=a.start||0,s=... |
export default function reducer(state = {
isSignedIn: false,
isGeoStored: false,
isConversationStored:false,
isUserPostStored:false,
isMapView: false,
isSearchOn: false,
data: [],
userInfo:{},
geoInfo:{},
conversation:[],
userPost:[],
error: null,
}, action) {
swi... |
import React from 'react';
import Routes from './routes'
import './global.css';
function App() {
return (
<Routes />
);
}
export default App; |
var firebase = require('./firebase');
var async = require('async');
var fs = require('fs');
var games_brunch = '/games_new';
module.exports = {
loadIndexPageData: function (year, response) {
loadLastGameId(year, function (lastGameId) {
async.series({
lastGame: function (callba... |
import React, { useState } from "react"
export default function ThingOne() {
const [number, setNumber] = useState(1)
const [fizz, setFizz] = useState("Fizz")
const [buzz, setBuzz] = useState("Buzz")
const [fizzBuzz, setFizzBuzz] = useState("FizzBuzz")
const handleIncreaseButton = () => {
se... |
"use strict";
var parser = require ('./ex2.js').parser;
try {
parser.parse(' 2+3*4; ');
}
catch (e) {
console.log(e.message);
} |
import React from 'react';
import { FluxMixin, StoreWatchMixin } from './../flux'
var reactMixin = require('react-mixin');
import autobind from "../utils/autobind"
class Application extends React.Component {
constructor(props) {
super(props);
}
getStateFromFlux() {
var flux = this.getFlux();
return {... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=insights.service.story.response.js.map |
import { ensureTransaction } from './data';
/**
* Transitions
*
* These strings must sync with values defined in Flex API,
* since transaction objects given by API contain info about last transitions.
* All the actions in API side happen in transitions,
* so we need to understand what those strings mean.
*/
//... |
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Refl... |
const sentryID = 'https://<key>@sentry.io/<project>'
const is_debug = false
const push_default_centerURL = 'https://example.com/push_server'
const push_default_serverKey = 'exampleexample' |
var dir_4925855765ca04c19c8cf061d2b5bf76 =
[
[ "brickTest.cc", "df/d56/brickTest_8cc.html", "df/d56/brickTest_8cc" ],
[ "FinalStateHadrons.cc", "db/d35/FinalStateHadrons_8cc.html", "db/d35/FinalStateHadrons_8cc" ],
[ "FinalStatePartons.cc", "df/d23/FinalStatePartons_8cc.html", "df/d23/FinalStatePartons_8cc"... |
// @flow
export const ApiData = [
{
title: "Functions",
items: [
{
title: "Persistent changes",
items: [
{
name: "set",
definition: "set(key: string|number, value: any) => (collection) =>... |
import React from 'react'
import {Link} from 'react-router-dom'
export default class NavItem extends React.Component{
render(){
return(
<Link className="menu" to={this.props.url}><span className={this.props.icon}></span>{this.props.name}</Link>
)
}
} |
'use strict';
module.exports = function zip(array) {
let values = array;
if (values instanceof this.constructor) {
values = values.all();
}
const collection = this.items.map((item, index) => new this.constructor([item, values[index]]));
return new this.constructor(collection);
}; |
module.exports = {
someSidebar: {
Documentation: [
'v2/index',
{
type: 'category',
label: 'Getting started',
items: [
'v2/started/get_started',
'v2/started/development',
'v2/started/installation',
'v2/started/integration',
'v2/s... |
// source: cs3/sharing/ocm/v1beta1/resources.proto
/**
* @fileoverview
* @enhanceable
* @suppress {messageConventions} JS Compiler reports an error if a variable or
* field starts with 'MSG_' and isn't a translatable message.
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
var jspb = require('google-protobuf'... |
'use strict'
const opentracing = require('opentracing')
const now = require('performance-now')
const Span = opentracing.Span
const SpanContext = require('./span_context')
const constants = require('../constants')
const id = require('../id')
const tagger = require('../tagger')
const log = require('../log')
const SAMPL... |
// Copyright 2018-2020 Polyaxon, 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 agre... |
/* generated by Svelte vX.Y.Z */
import {
SvelteComponent,
append,
attr,
detach,
element,
init,
insert,
listen,
noop,
run_all,
safe_not_equal,
set_input_value,
space
} from "svelte/internal";
function create_fragment(ctx) {
let form;
let input;
let t0;
let button;
let dispose;
return {
c() {
f... |
var enable_button = document.getElementById('btnToggleRedirects')
enable_button.addEventListener('click', toggleRedirects);
var enable_zoom_button = document.getElementById('btnToggleZoom')
enable_zoom_button.addEventListener('click', toggleZoom);
var perferred_quality_selector = document.getElementById('qualityOptio... |
/*
* Human Cell Atlas
* https://www.humancellatlas.org/
*
* HCA Data Portal announcement component, displayed under header.
*/
// Core dependencies
import React from "react";
// Styles
import compStyles from "./announcement.module.css";
import fontStyles from "../../styles/fontsize.module.css";
let classNames =... |
/**
* @license Apache-2.0
*
* Copyright (c) 2018 The Stdlib Authors.
*
* 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 a... |
import atRuleBlacklist from "./at-rule-blacklist"
import atRuleEmptyLineBefore from "./at-rule-empty-line-before"
import atRuleNameCase from "./at-rule-name-case"
import atRuleNameNewlineAfter from "./at-rule-name-newline-after"
import atRuleNameSpaceAfter from "./at-rule-name-space-after"
import atRuleNoUnknown from "... |
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
// This test verifies the behavior of the tls setSecureContext() method.
// It also verifies that existing connections are not disrupted when the
// secure context is changed.
const assert = require('assert');
... |
/*! jQuery UI - v1.11.4 - 2016-01-14
* http://jqueryui.com
* Includes: core.js, widget.js, mouse.js, position.js, autocomplete.js, menu.js
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.