text stringlengths 2 1.04M |
|---|
import StadiumsController from './controller';
import * as express from 'express';
class StadiumsRoutes {
constructor() {
this._router = express.Router();
this._ec = new StadiumsController();
}
init() {
this._router.post('/sparql', this._ec.sparql);
this._router.get('/ballparks', this._ec.ballpa... |
/* eslint-disable */
import {Formik, Field, Form} from 'formik';
import {useForm} from 'react-hook-form';
import React, {useState, useRef} from 'react';
import {useTranslation} from 'react-i18next';
import {toast} from 'react-toastify';
import axios from 'axios';
import Input from '@app/../node_modules/reactstrap/es/In... |
/*
* File: jquery.dataTables.columnFilter.js
* Version: 1.5.6.
* Author: Jovan Popovic
*
* Copyright 2011-2014 Jovan Popovic, all rights reserved.
*
* This source file is free software, under either the GPL v2 license or a
* BSD style license, as supplied with this software.
*
* This source file is d... |
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var TZ_DIFF = getTimeZoneDiff();
/*
* Originally, the t... |
/**
* Kinow API
* Client API for Kinow back-office
*
* OpenAPI spec version: 1.3.19
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
*
* Swagger Codegen version:
*
* Do not edit the class manually.
*
*/
(function(root, fact... |
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
import React, { useContext, useState } from "react";
import PropTypes from "prop-types";
import { InstancesContext } from "../../contexts/InstancesContext";
import "./instance-retrieve... |
import Route from '@ember/routing/route';
import { inject as service } from '@ember/service';
export default class IndexRoute extends Route {
@service router;
beforeModel() {
this.router.transitionTo('inbox');
}
} |
const { FilterHandler } = require('../src/filter-handler')
describe('@livy/filter-handler', () => {
it('should always return "true" for "isHandling"', () => {
const wrappedHandler = new MockHandler()
const handler = new FilterHandler(wrappedHandler, () => false)
expect(handler.isHandling('debug')).toBeT... |
(function () {
'use strict';
/**
* Calculates the length of a vec3
*
* @param {vec3} a vector to calculate length of
* @returns {Number} length of a
*/
function length(a) {
let x = a[0];
let y = a[1];
let z = a[2];
return Math.sqrt(x * x + y * y + z * z);
... |
export const GET_ERRORS = "GET_ERRORS"
export const SET_CURRENT_USER = "SET_CURRENT_USER";
export const SET_USER_PROFILE = "SET_PROFILE"
export const GET_CURRENT_PROFILE = "GET_CURRENT_PROFILE"
export const LOAD_PROFILE = "LOAD_PROFILE"
export const CREATE_EVENT = "CREATE_EVENT"
export const GET_EVENT_DETAILS = "GET_EV... |
import * as React from "react";
function IconSignature({
size = 24,
color = "currentColor",
stroke = 2,
...props
}) {
return <svg className="icon icon-tabler icon-tabler-signature" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinej... |
var _contextMenuEntries = [
//{
//text: 'Show coordinates',
//callback: showCoordinates
//},
{
text: 'Center map here',
callback: centerMap,
},
// '-', {
// text: 'Zoom in',
// icon: 'images/zoom-in.png',
// callback: zoomIn
//}, {
// text: 'Zoom out',
// icon: '... |
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const ObjectId = Schema.Types.ObjectId;
const blogSchema = new Schema({
title: {
type: String,
required: true
},
content: [
{
type: String
}
],
tags: [
{
type: Obje... |
const _GOMORI_Scene_OmoriTitleScreen_createVersionText = Scene_OmoriTitleScreen.prototype.createVersionText;
Scene_OmoriTitleScreen.prototype.createVersionText = function() {
_GOMORI_Scene_OmoriTitleScreen_createVersionText.call(this);
this._modVersion = new Sprite(new Bitmap(Math.ceil(Graphics.boxWidth / 4), 32));
... |
Clazz.declarePackage ("J.adapter.readers.quantum");
Clazz.load (["J.adapter.readers.quantum.MOReader", "java.util.Hashtable", "J.util.JmolList"], "J.adapter.readers.quantum.PsiReader", ["java.lang.Float", "J.api.JmolAdapter", "J.util.ArrayUtil", "$.Logger", "$.Parser"], function () {
c$ = Clazz.decorateAsClass (functio... |
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("va... |
angular.module('pay.tx', [ 'pay.tx.controllers' ]); |
"use strict";
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
var __importDefault = (t... |
Ext.define('Spriter.view.Tab', {
extend: 'Ext.tab.Panel',
title: 'Css Sprite生成器 v1.0',
width: 600,
height: 300,
region: 'north',
alias: 'widget.spritetab',
items: [
{xtype: 'spritetype1'},
{xtype: 'spritetype2'}
]
}); |
const autoprefixer = require('autoprefixer');
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
mode: 'development',
entry:[
'./src/app.js',
'./src/app.scss'
],
devtool: 'inline-source-map',
devServer: {
contentBase: './dist',
},
... |
var Q = require('q');
var fb = require('fb');
/**
* Facebook class
* @param {Object} options Config with userId and accessToken properties
* @constructor
*/
function Facebook(options) {
if (!(options || options.userId || options.accessToken)) {
throw new Error('You must provide userId and accessKey');
}
... |
export default {
history: 'hash',
plugins: [
[
'../../../../../umi-plugin-react/lib/index.js',
{
// mobile
hd: true,
fastClick: true,
// dev boost
dll: false,
// performace
pwa: {},
dynamicImport: {
webpackChunkName: true,
... |
import PropTypes from "prop-types";
import React from "react";
import Header from "./header";
import Footer from "./footer";
function Layout({ children }) {
return (
<div className="flex flex-col min-h-screen font-sans text-gray-900">
<Header />
<main className="flex-1 w-full mx-auto ">
{ch... |
const mongoose = require("mongoose");
const { Schema } = require("mongoose");
const MonthlySongPlaybackSchema = Schema(
{
metadata: {
type: {
date: {
type: Date,
default: Date.now,
},
song: {
type: Schema.Types.ObjectId,
ref: "song",
}... |
(window.webpackJsonp=window.webpackJsonp||[]).push([[16],{66:function(e){e.exports=JSON.parse('{"release":{"allTagsPath":"/wave/blog/tags","slug":"release","name":"release","count":4,"permalink":"/wave/blog/tags/release"}}')}}]); |
const config = {
source: {
path: ['./testcode/', './fff/'],
include: "\\.(ts)$", // 文件匹配正则
exclude: "\\.(test.ts)$", // 不包括的文件的正则
},
output: './extern.js',
api: {
namespace: 'Fruit',
include: {
access: ["public", "protected", "default"],
co... |
class Weapon {
constructor(projectiles, game) {
this.damages = 0;
this.projectiles = projectiles;
this.game = game;
}
fire() {}
} |
import Ember from 'ember';
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
export default Ember.Route.extend(AuthenticatedRouteMixin, {
i18n: Ember.inject.service(),
model() {
const i18n = this.get('i18n');
return Ember.RSVP.hash({
records: this.get('store'... |
var BatchReport = require('./components/batching/batch-report');
var _ = require('lodash');
// Assumes that there is a global called BatchData
var dataElement = document.getElementById('batch-data');
var data = dataElement.innerHTML;
var batchData = JSON.parse(_.unescape(data));
BatchReport(batchData); |
import React from 'react';
import styles from '../../TalentInput.css';
import { Button } from 'react-bootstrap';
class PerformerSelect extends React.Component {
constructor(props) {
super(props);
this.state = {
type: '',
option: 'comedian'
};
this.handleChange = this.handleChange.bind(thi... |
window.xml2js = require('xml2js'); |
"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... |
import React, { Component } from 'react'
// @REF: https://ant.design/components/tooltip/
import { Tooltip as AntTooltip } from 'antd'
import './tooltip.view.styl'
export class Tooltip extends Component {
static propTypes = {
...AntTooltip.propTypes
}
static defaultProps = {
...AntTooltip.defaultProps... |
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.1.1 (2019-10-28)
*/
!function(){"use strict";var e=tinym... |
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
return cooked;
};
import { Animated } from "react-native";
import Styled, { css } from "styled-components/nat... |
$('.loading').hide();
$('.again').hide();
$('.result').hide();
$('.info-doc').hide();
$('.cameras').hide();
$('.api-call').hide();
var documentData = {
'national identification number': '',
'document number': '',
'name': '',
'family name': '',
'gender': '',
'nationality': '',
'date of birth... |
'use strict';
const exec = require('cp-sugar').exec;
const confirm = require('../utils/inquires').confirm;
module.exports = {
option: 'gitTag',
statusText: 'Validating git tag',
defaultParam: true,
configurator(currentVal) {
return confirm(
'Would you like to verify that published... |
const spicedPg = require("spiced-pg");
let db;
if (process.env.DATABASE_URL) {
db = spicedPg(process.env.DATABASE_URL);
} else {
const {
DB_USERNAME,
DB_PASSWORD
} = require("/mnt/c/Users/kimsk/Documents/spice/coriander-finalproject/config/secrets.json");
db = spicedPg(
`postgres... |
'use strict';
var util$940 = require('../../../misc/util.js');
var Thresholds$941 = require('./dry/thresholds.js');
var CheckStyle$943 = function (upper$956, obj$957) {
this.upper = upper$956;
this.obj = obj$957;
};
CheckStyle$943.prototype.up = function () {
return this.upper;
};
CheckStyle$943.prototype.a... |
const createRoutes = require('next-routes');
const escapeRegExp = require('lodash/escapeRegExp');
// @ts-ignore Types are broken
const routes = createRoutes();
// We override findAndGetUrls to support the Next.js's setting assetPrefix
// See: https://github.com/fridays/next-routes/issues/30
const oldFindAndGetUrls = ... |
const login = require('./login');
const users = require('./users');
module.exports = (router) => {
login(router),
users(router)
return router;
}; |
const router = require('express').Router();
const sequelize = require('../config/connection');
const { Blog, User, Comment } = require('../models');
const withAuth = require('../utils/auth');
router.get('/', withAuth, async (req, res) => {
try {
const userData = await User.findByPk(req.session.user_id, {
... |
// export const baseUrl = 'http://api.yuxicloud.test'
export const baseUrl = 'https://api.halian.net' |
function tabuada() {
let num = document.getElementById('txtn')
let tab = document.getElementById('seltab')
if (num.value.length == 0) {
window.alert('Por favor, digite um número')
} else {
let n = Number(num.value)
let c = 1
tab.innerHTML = ''
while (c <= 10) {
... |
/**
* @license Highcharts JS v10.0.0 (2022-03-07)
* @module highcharts/modules/variable-pie
* @requires highcharts
*
* Variable Pie module for Highcharts
*
* (c) 2010-2021 Grzegorz Blachliński
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/VariablePie/VariablePieSeries.js'; |
'use strict'
const { threatMap } = require('../class-test-data/threat-map')
const messageData = {
links: [
{
urlDomainKey: threatMap.SOCIAL_ENGINEERING.url,
cacheDuration: '',
inCache: true
},
{
urlDomainKey: threatMap.SOCIAL_ENGINEERING.url,
cacheDuration: '',
inCach... |
/* Copyright 2016 Mozilla Foundation
*
* 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... |
var path = require('path')
var webpack = require('webpack')
module.exports = {
entry: {
'demo': './src/main.js',
'pic-tune.min': './src/picTune/index.js'
},
output: {
path: path.resolve(__dirname, './dist'),
publicPath: 'dist/',
filename: '[name].js',
library: 'picTune',
libraryTarget... |
$(document).ready(function() {
var drag = function() {
$('.calendar-event').each(function() {
// store data so the calendar knows to render an event upon drop
$(this).data('event', {
title: $.trim($(this).text()), // use the element's text as the event title
st... |
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import classNames from 'classnames';
import { findDOMNode } from 'react-dom';
import React, { useContext } from 'react';
import BaseDropdownMenu from 'react-ove... |
const Model = require('./model');
const {promisePool} = require('../db');
const retrieveSql = 'SELECT * from voip_carriers vc WHERE vc.account_sid = ?';
const retrieveSqlForSP = 'SELECT * from voip_carriers vc WHERE vc.service_provider_sid = ?';
class VoipCarrier extends Model {
constructor() {
super();
}
s... |
/**
* conjoon
* extjs-app-webmail
* Copyright (C) 2017-2021 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-app-webmail
*
* 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 witho... |
import React from "react"
import store from "../models/CanvasStore"
import colorStore from "../models/ColorStore"
import { observer } from "mobx-react"
import { colorBlend } from "../utils/colorConversion"
const Cell = observer(props => {
const [
layer1,
layer2,
layer3,
layer4
] = props.cell
if(layer1[0] =... |
import React from "react";
import AuthStore from "#SRC/js/stores/AuthStore";
import UserAccountDropdown from "#SRC/js/components/UserAccountDropdown";
import UserAccountDropdownTrigger from "#SRC/js/components/UserAccountDropdownTrigger";
export default class AuthenticatedUserAccountDropdown extends UserAccountDropdo... |
/*! elementor-pro - v3.0.10 - 20-01-2021 */ |
import _ from 'lodash';
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import YTSearch from 'youtube-api-search';
import SearchBar from './components/search_bar';
import VideoList from './components/video_list';
import VideoDetail from './components/video_detail';
const API_KEY = 'AIzaSyAUf... |
function ExtendableBuiltin(cls) {
function ExtendableBuiltin() {
cls.apply(this, arguments);
}
ExtendableBuiltin.prototype = Object.create(cls.prototype);
Object.setPrototypeOf(ExtendableBuiltin, cls);
return ExtendableBuiltin;
}
//自定义请求异常错误
export class ResError extends ExtendableBuiltin(... |
module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 7546,
network_id: "*",
},
},
compilers: {
solc: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
}; |
/* GENERATED FILE DO NOT EDIT */ |
import { Box, Container, Tab, Tabs } from "@mui/material";
import React, { useState } from "react";
import ExclusiveInternshipOffers from "./ExclusiveInternshipOffers";
import InternshipOfferValidation from "./InternshipOfferValidation";
import SemesterSelect from "./SemesterSelect";
const InternshipManagerOfferViews ... |
/**
* The type of (redux) action which signals that server authentication has
* becoming available or unavailable or logged in user has changed.
*
* {
* type: AUTH_STATUS_CHANGED,
* authEnabled: boolean,
* authLogin: string
* }
*/
export const AUTH_STATUS_CHANGED = 'AUTH_STATUS_CHANGED';
/**
* Th... |
import React, { Component } from 'react'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
import { Button } from '../components/Button'
import { InputVinCode } from '../components/VinCode'
import * as VinActions from '../actions/vin'
import vin from '../models/vin'
const formStyle = {
... |
import React from 'react';
import { render, cleanup } from 'react-testing-library';
import RadioButton from './radio-button.component';
import 'jest-dom/extend-expect';
afterAll(cleanup);
describe('Provider Login Container', () => {
const { container } = render(<RadioButton />);
it('shoud renders without crashin... |
import defaultValue from "../Core/defaultValue.js";
import defined from "../Core/defined.js";
import WebGLConstants from "../Core/WebGLConstants.js";
import webGLConstantToGlslType from "../Core/webGLConstantToGlslType.js";
import addToArray from "./GltfPipeline/addToArray.js";
import ForEach from "./GltfPipeline/ForEa... |
/**
* Broadcast updates to client when the model changes
*/
'use strict';
var Biblesvc = require('./biblesvc.model');
var io=null;
exports.register = function(socket) {
Biblesvc.schema.post('save', function (doc) {
onSave(socket, doc);
});
Biblesvc.schema.post('remove', function (doc) {
onRemove(socke... |
import React from 'react';
import PropTypes from 'prop-types';
import {FacebookShareButton, WhatsappShareButton,} from 'react-share';
import { faFacebookF , faWhatsapp } from '@fortawesome/free-brands-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
const Share = ({ socialConfig }) => {
//... |
import { useTranslation } from 'react-i18next';
import { useCallback } from 'react';
import { getNetworkFriendlyName } from '../helpers/getNetworkData';
// const translate = (data, key, t) => t(key, data);
// const translateAppendTitle = (data, key, t) => appendTitle(translate(data, key, t));
const SLEEPEARN_TITLE = ... |
import { useWindowSize, useHealthcheck, useFeaturesMeta } from 'components/hook'
import { layout, breakpoints, transition, colors, borders } from 'theme'
import React, { useMemo, useEffect, useState } from 'react'
import { fadeIn } from 'components/keyframes'
import isUrl from 'is-url-http/lightweight'
import { getApiU... |
/**
* 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.
*
*
*/
import { printError } from './printError';
import { getLocation } from '../language/location';
/**
* A GraphQLError describes a... |
import React from 'react';
import clsx from 'clsx';
import PropTypes from 'prop-types';
import WaffleChart from './d3/WaffleChart';
import {
Box,
Button,
Card,
CardContent,
CardHeader,
Divider,
useTheme,
makeStyles,
colors
} from '@material-ui/core';
import ArrowDropDownIcon from '@m... |
const {
GraphQLNonNull,
GraphQLEnumType,
GraphQLList,
GraphQLUnionType,
GraphQLString,
GraphQLBoolean,
GraphQLObjectType,
} = require('graphql');
const IdScalar = require('../scalars/id.scalar.js');
const UriScalar = require('../scalars/uri.scalar.js');
const CodeScalar = require('../scalars/code.scalar.js');
co... |
const router = require("express").Router();
const { getSiswa, addSiswa, getDetailSiswa, updateSiswa, deleteSiswa } = require("../controller/siswaController.js");
router.get("/", getSiswa);
router.post("/", addSiswa);
router.get("/:nis", getDetailSiswa);
router.put("/:nisin", updateSiswa);
router.delete("/:nis", delet... |
import React, { Component } from 'react';
class Footer extends Component {
render() {
if(this.props.data){
var networks= this.props.data.social.map(function(network){
return <li key={network.name}><a href={network.url}><i className={network.className}></i></a></li>
})
}
return (
... |
'use strict';
var mocha = require('mocha');
var assert = require('../lib/assert');
var tokens = require('../lib/tokens');
mocha.suite('tokens', function () {
mocha.test('tokens.isToken', function () {
var examples = [
['()', false],
['', false],
['1', false],
... |
/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.js, widget.js, mouse.js, position.js, accordion.js, autocomplete.js, button.js, datepicker.js, dialog.js, draggable.js, droppable.js, effect.js, effect-blind.js, effect-bounce.js, effect-clip.js, effect-drop.js, effect-explode.js, effect-fade.j... |
// Copyright 2014 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.
// Scripts for the message handler.
goog.provide('__crWeb.message');
goog.require('__crWeb.common');
/**
* Namespace for this module.
*/
__gCrWeb.mes... |
import Vue from 'vue'
import VueRouter from 'vue-router'
import Main from '@/front/components/Main/index.vue'
Vue.use(VueRouter)
const routes = [
{
path: '/',
name: 'Main',
component: Main
},
{
path: '/host',
name: 'host',
// route level code-splitting
// this generates a separate ch... |
let data = {
"body": "<path d=\"M864 170h-60c-4.4 0-8 3.6-8 8v518H310v-73c0-6.7-7.8-10.5-13-6.3l-141.9 112a8 8 0 0 0 0 12.6l141.9 112c5.3 4.2 13 .4 13-6.3v-75h498c35.3 0 64-28.7 64-64V178c0-4.4-3.6-8-8-8z\" fill=\"currentColor\"/>",
"width": 1024,
"height": 1024
};
export default data; |
const postCssPresetEnv = require(`postcss-preset-env`)
const postCSSNested = require('postcss-nested')
const postCSSUrl = require('postcss-url')
const postCSSImports = require('postcss-import')
const cssnano = require('cssnano')
const postCSSMixins = require('postcss-mixins')
module.exports = {
siteMetadata: {
t... |
import dagre from 'dagre'
import 'MindPalace-sigma.js/plugins/sigma.layouts.dagre/sigma.layout.dagre.js'
window.dagre = dagre |
/*!
* filename: ej.kanban.min.js
* version : 19.1.0.63
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted u... |
import React from "react";
import Dictionary from "../../../dictionary.json";
export default class Search extends React.Component {
constructor() {
super();
this.state = {
showResult: false,
showError: false
};
/**
* Stores a successful search resu... |
module.exports = {
parser: "@babel/eslint-parser",
extends: [
"bunchtogether",
"plugin:jasmine/recommended"
],
plugins: [
"jasmine",
"import"
],
env: {
jest: true,
browser: true,
jasmine: true
},
rules: {
"import/extensions": ["error", { "ignore": ["p-queue", "observed-re... |
export default {
src: 'packages',
dest: '/docs',
base: '/MDXP',
title: 'MDXP',
description: 'Web Slides Made Easy',
files: '**/*.doc.mdx',
menu: [
'Introduction',
'Getting Started',
'Syntax',
'Components',
'Theming',
'Present',
'Examples',
'@mdxp/core',
{name: '@mdxp/co... |
var searchData=
[
['last',['Last',['../structwl__ListHeader.html#a7452617990bf968e3175211ca0339cec',1,'wl_ListHeader']]],
['last_5fgarbage_5ftime',['last_garbage_time',['../memory_8c.html#a5b0a37d12ba80edc87cbd6cdb74acc4d',1,'memory.c']]],
['lc',['lc',['../structwl__parse__block.html#aa5f21ec89d0a7943ecfdba40fd9e... |
//CHANGELOG
//1-rc1c: 12/12/21
//hotfix to fix divergence due to leaving in bonuses and tertiary equation rendering
//1-rc1b: 11/12/21
//hotfix to fix tertiary eqn render error on open and swap value models to be corect
// also set rho dots as big numbers
//1-rc1a: 11/12/21
//hotfix to fix parse error on open and docu... |
/* This file is automatically rebuilt by the Cesium build process. */
define(['./when-e6985d2a', './Cartesian2-eb270219', './Transforms-ee5c1729', './ComponentDatatype-cb08e294', './Check-24cae389', './GeometryAttribute-0599418c', './GeometryAttributes-d6ea8c2b', './IndexDatatype-21fdd02b', './Math-ae27e6c0', './Vertex... |
<import resource="classpath:alfresco/module/behavior-tutorial-platform-jar/scripts/rating.js">
if (args.id == null || args.id.length == 0) {
logger.log("ID arg not set");
status.code = 400;
status.message = "Node ID has not been provided";
status.redirect = true;
} else {
logger.log("Getting current node");
var ... |
// Get the registration <form> element from the DOM.
const form = document.getElementById("registration-form");
const submitButton = form.querySelector("button");
// Get the <input> elements from the DOM.
const passwordInput = document.getElementById("password");
const confirmPasswordInput = document.getElementById("c... |
'use strict'
const readline = require('readline')
const path = require('path')
const glob = require('glob')
const mm = require('minimatch')
const exec = require('child_process').exec
const helper = require('./helper')
const logger = require('./logger')
const log = logger.create('init')
const logQueue = require('./in... |
'use strict';
/* global document */
var $ = require('jquery');
var tables = require('../modules/tables');
var helpers = require('../modules/helpers');
var columns = require('../modules/columns');
var committeesTemplate = require('../templates/committees.hbs');
$(document).ready(function() {
var $table = $('#resu... |
// Use ES6 supported by Node v6.10 only!
const path = require('path')
const dev = false //process.env.NODE_ENV === 'development'
module.exports = {
tmp: path.join(__dirname, '..', 'tmp-build'),
MAX_WORKERS: require('os').cpus().length,
MAX_FAILURE_CACHE_ENTRIES: 600,
WORKER_TIMEOUT: 600 * 1000, //ms,
DE... |
import { isBlock, isVoid, hasVoid, isMeaningfulWhenBlank, hasMeaningfulWhenBlank } from './utilities'
export default function Node (node) {
node.isBlock = isBlock(node)
node.isCode =
node.nodeName.toLowerCase() === 'code' ||
node.nodeName.toLowerCase() === "pre" ||
node.parentNode.isCode
node.isBlank... |
import { mount, config as testConfig } from '@vue/test-utils'
import { wait } from '../../../utils'
import Carousel from '@/components/Carousel'
testConfig.stubs.transition = false
testConfig.stubs['transition-group'] = false
let items = [
{
src:
'http://ecmb.bdimg.com/public01/one-design/2b77cc4a4c5c9069... |
new Promise(resolve => {
var readyState = document.readyState;
if (readyState === 'complete' ||
readyState === 'loaded' ||
readyState === 'interactive') {
resolve();
} else {
document.addEventListener('DOMContentLoaded', () => resolve());
}
}).then(() => {
var CYCIMG_ATTRIBUTE_NAME = 'cyc... |
Testrails.module('Model', function (Model, App, Backbone, Marionette, $, _) {
Model.addInitializer(function () {
Model.systemActivities = new Model.Definition.SystemActivityList();
Model.sensorReadingSequences = new Model.Definition.SensorReadingSequenceList();
});
}); |
(function ($) {
"use strict";
var defaultOptions = {
tagClass: function(item) {
return 'badge badge-info';
},
itemValue: function(item) {
return item ? item.toString() : item;
},
itemText: function(item) {
return this.itemValue(item);
},
itemTitle: function(item) {
... |
import $ from 'dom7';
import Utils from '../../utils/utils';
import History from '../../utils/history';
function tabLoad(tabRoute, loadOptions = {}) {
const router = this;
const options = Utils.extend({
animate: router.params.animate,
pushState: true,
history: true,
on: {},
}, loadOptions);
if... |
const CONTRACT_NAME = process.env.VUE_APP_CONTRACT_NAME ||'NCD-GroupA-Demo'
function getConfig(env) {
switch (env) {
case 'production':
case 'mainnet':
return {
networkId: 'mainnet',
nodeUrl: 'https://rpc.mainnet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https... |
import Vue from 'vue';
import stageColumnComponent from '~/pipelines/components/graph/stage_column_component.vue';
describe('stage column component', () => {
let component;
const mockJob = {
id: 4250,
name: 'test',
status: {
icon: 'icon_status_success',
text: 'passed',
label: 'passed'... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.