text
stringlengths
3
1.05M
window.__NUXT__=(function(a,b,c,d,e){return {staticAssetsBase:"https:\u002F\u002Fwww.baca-quran.id\u002Fstatic\u002F1627814429",layout:"default",error:b,state:{notification:{show:a,title:c,message:c},isShowSidebar:a,isSupportWebShare:a,headerTitle:"Baca Qur'an",page:"home",lastReadVerse:b,settingActiveTheme:{name:"dark...
export {default as formatDefaultLocale, format, formatPrefix} from "./defaultLocale"; export {default as formatLocale} from "./locale"; export {default as formatSpecifier} from "./formatSpecifier"; export {default as precisionFixed} from "./precisionFixed"; export {default as precisionPrefix} from "./precisionPrefix"; ...
from ._dynamics import DynamicalModel class Linear(DynamicalModel): def initialize(self, *args, **kwargs): pass def integrate_samples(self, v, x): return v def integrate_distribution(self, v_dist, x): return v_dist
export {default} from 'ember-appointment-slots-pickers/components/scroll-anchor/component';
""" _ _ _ _ (_) | | (_) | ___ _ _ __ ___ _ __ | | ___ _ __ ___ __ _ _| | / __| | '_ ` _ \| '_ \| |/ _ \ | '_ ` _ \ / _` | | | \__ \ | | | | | | |_) | | __/ | | | | | | (_| | | | |___/_|_| |_| |_| .__/|_|\___| |_| |_| |_|\__,_|_|_...
const upload = document.querySelector(".upload"); const cancel = document.querySelector(".cancel"); const uploadContainer = document.querySelector(".uploadImage"); upload.addEventListener("click",function(){ uploadContainer.style = "visibility:visible;"; }); cancel.addEventListener("click",function(){ uploadC...
/* global window */ import ko from "knockout"; import flatten from "lodash/array/flatten"; import sum from "lodash/collection/sum"; import uniq from "lodash/array/uniq"; import $ from "jquery"; import api from "../api"; import Document from "./document"; import store from "../store"; export default class Cart { con...
var expect = require('chai').expect, zcl = require('../lib/components/zcl'); describe('APIs Arguments Check for Throwing Error', function() { describe('#.frame', function() { var frameCntl = {frameType:1, manufSpec: 0, direction: 0, disDefaultRsp: 1}; it('should be a function', function () { ...
import React from 'react'; import { notification } from 'antd'; const openNotificationWithIcon = type => { notification[type]({ message: 'Notification Title', description: 'This is the content of the notification. This is the content of the notification. This is the content of the notification.', });...
# coding: utf-8 """ Control-M Services Provides access to BMC Control-M Services # noqa: E501 OpenAPI spec version: 9.20.220 Contact: customer_support@bmc.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import unittest import con...
import os import tempfile from unittest import TestCase import numpy as np from keras_radam.backend import keras from keras_radam import RAdam class TestRAdam(TestCase): @staticmethod def gen_linear_model(optimizer) -> keras.models.Model: model = keras.models.Sequential() model.add(keras.la...
'use strict'; // The script requires gulp to be loaded let gulp = require('gulp'); let server = require('gulp-express'); let ts = require('gulp-typescript'); let sass = require('gulp-sass'); // Define the "default" task > run it via: $ gulp gulp.task('default', () => { console.log('Hello, from your first gulp tas...
/* * 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 cause incorrect behavior and will be lost if the code is * regenerated. */ '...
(function(t){function a(a){for(var e,o,n=a[0],r=a[1],d=a[2],m=0,u=[];m<n.length;m++)o=n[m],i[o]&&u.push(i[o][0]),i[o]=0;for(e in r)Object.prototype.hasOwnProperty.call(r,e)&&(t[e]=r[e]);c&&c(a);while(u.length)u.shift()();return l.push.apply(l,d||[]),s()}function s(){for(var t,a=0;a<l.length;a++){for(var s=l[a],e=!0,n=1...
// NOTE: jsx-slack uses Babel only for testing. const babelPresets = (development) => [ ['@babel/preset-env', { targets: { node: true } }], ['@babel/preset-react', { development, runtime: 'automatic' }], ] module.exports = { presets: babelPresets(true), overrides: [ { test: './src/**/*', preset...
'use strict';var vf;var wf=chrome.i18n.getMessage("545449835455981095");v("mr.IssueSeverity",{zt:"fatal",qy:"warning",Cv:"notification"});v("mr.IssueAction",{mt:"dismiss",Ku:"learn_more"}); var xf=function(a,b){this.sinkId=this.routeId=null;this.severity=b;this.isBlocking="fatal"==this.severity?!0:!1;this.title=a;this....
# Copyright 2016 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 required by applicable law or ag...
const MONGOOSE = require('mongoose'); MONGOOSE.Promise = global.Promise; module.exports = (config) => { MONGOOSE.connect(config.connectionString); let db = MONGOOSE.connection; db.once('open', (err) => { if (err) { console.log(err); throw err; } console.lo...
from multiprocessing import Process, Queue from werkzeug.wrappers import Request def make_server(port, handler): from wsgiref.simple_server import make_server, WSGIRequestHandler class QuietHandler(WSGIRequestHandler): def log_request(*args, **kw): pass options = {'handler_class': QuietHandler} return make...
const assert = require('assert'); import { _testUCDSHandler, sleep } from "./../helper.js"; import EventEmitter from 'events'; describe('UCDS BTC', () => { describe('test setup BTC', function () { this.timeout(10000); beforeEach(() => { _testUCDSHandler.setup("BTC", { protocol: "http", ...
# Generated by Django 2.2.4 on 2019-08-20 11:55 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('main_hub', '0022_projet_order'), ] operations = [ migrations.AlterField( model_name='projet', name='order', ...
export { default as DefaultTheme } from './DefaultTheme'; //# sourceMappingURL=index.js.map
// Images import backgroundImage from "assets/images/sidenav/sidenav-card-background.png"; function card(theme, ownerState) { const { borders, functions, transitions, breakpoints } = theme; const { miniSidenav } = ownerState; const { borderRadius } = borders; const { pxToRem } = functions; return { min...
import Vue from 'vue' import Router from 'vue-router' import Index from '@/components/Index' import Login from '@/components/Login' import Register from '@/components/Register' import Movies from '@/components/Movies' import Settings from '@/components/Settings' import Profile from '@/components/Profile' Vue.use(Router...
import configparser class ConfigReader: def __init__(self): self.filename = 'config.ini' def read_config(self): self.config = configparser.ConfigParser() self.config.read(self.filename) self.configuration = self.config['DEFAULT'] return self.configuration
/** * @name exports * @summary Slot Class */ module.exports = class Slot { constructor(opts) { // Create an object to store all props Object.defineProperty(this, '__data', { value: {} }); // Define getters and setters as enumerable Object.defineProperty(this, '_id', { enumerable: true, ...
global.$ = { path: { app: { root: './app', assets: './app/assets' }, dest: { root: './build', assets: './build/assets' }, tmp: `./tmp`, gulp: { tasks: require('./gulp') } }, watchs: [], gulp: require('gulp'), notify: require('gulp-noti...
name = input("Hello human, what is your name?: ") print(f"Hello {name}, nice to meet you!")
/* */ define(['exports', 'aurelia-pal'], function (exports, _aureliaPal) { 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports._DOM = exports._FEATURE = exports._PLATFORM = undefined; exports.initialize = initialize; var _typeof = typeof Symbol === "function" && typeo...
import React, {Component} from 'react' import {connect} from 'react-redux' import {withRouter, Route, Switch} from 'react-router-dom' import PropTypes from 'prop-types' import { AllProductDisplay, CartDisplay, Login, Signup, UserHome } from './components' import {me} from './store' import {fetchProducts} from...
# -*- coding: utf-8 -*- """ :copyright: Copyright 2016-2021 Sphinx Confluence Builder Contributors (AUTHORS) :license: BSD-2-Clause (LICENSE) """ from tests.lib import build_sphinx from tests.lib import parse from tests.lib import prepare_conf import os import unittest class TestConfluenceRstAdmonitions(unittest.Tes...
import csv import sys import fiona from itertools import chain, islice from typing import Dict, Iterable, Any from geomet import wkt csv.field_size_limit(sys.maxsize) def grouper(n, iterable): """https://stackoverflow.com/a/8991553/4453925""" it = iter(iterable) while True: chunk = tuple(islice...
// Karma configuration file, see link for more information // https://karma-runner.github.io/1.0/config/configuration-file.html module.exports = function (config) { config.set({ basePath: '', frameworks: ['jasmine', '@angular-devkit/build-angular'], plugins: [ require('karma-jasmine'), requir...
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = exports.CHANNEL = void 0; var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _propT...
// ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. // ---------------------------------------------------------------------------- /// <reference path="../../../ZumoE2ETestAppJs/ZumoE2ETestAppJs/js/MobileServices.js" /> /// <ref...
var structCatch_1_1Matchers_1_1Impl_1_1MatcherMethod = [ [ "match", "structCatch_1_1Matchers_1_1Impl_1_1MatcherMethod.html#ae0920ff9e817acf08e1bb0cbcb044e30", null ] ];
import styled from 'styled-components' const Section = styled.section` display: flex; flex-direction: column; align-items: center; h1 { margin: 0; } ` const Container = styled.div` position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); justify-content: ce...
/* * * Catalogue reducer * */ import produce from 'immer'; import { FEATURED_ITEMS, FEATURED_ITEMS_SUCCESS, FEATURED_ITEMS_ERROR, CATEGORIES, CATEGORIES_SUCCESS, CATEGORIES_ERROR, CATEGORY_ITEM, CATEGORY_ITEM_SUCCESS, CATEGORY_ITEM_ERROR, } from './constants'; export const initialState = { feat...
import input_data import conv_network import LRmodel import numpy as np from tensorflow.python import keras import os num_classes = 10 img_rows, img_cols = 28, 28 def prep_data(data, train_size): ''' :param data: data with both features and labels :param train_size: no. of examples in training data :...
import React, { Component, Fragment } from "react"; import { connect } from "react-redux"; import { bindActionCreators } from "redux"; import * as postActions from "store/modules/post"; import Post from "components/Post"; import { withRouter } from 'react-router-dom'; class PostContainer extends Component { getPost...
# coding: utf-8 from __future__ import absolute_import from datetime import date, datetime # noqa: F401 from typing import List, Dict # noqa: F401 from swagger_server.models.base_model_ import Model from swagger_server.models.person import Person # noqa: F401,E501 from swagger_server.models.status200_ok_paginated...
import React, { Component } from 'react'; import { Button, Spin, message } from 'antd'; import { connect } from 'umi'; import _ from 'lodash'; import PageHeaderWrapper from '@/components/PageHeaderWrapper'; // import configSettings from '../../../configSettings'; import styles from './detail.less'; import AttackChain f...
__Widget.prototype.__class__ = "Widget"; function Widget() { return new __Widget(); } function __Widget() { this.attached = false; } __Widget.prototype.setParent = function(parent) { this.parent = parent; if ((parent == null)) { this.onDetach(); } else if (parent.attached) { this.onAttac...
// Dummy logging calls (ie, if tests are run in IE) window.console = window.console || {}; window.console.log = window.console.log || function () { }; window.console.debug = window.console.debug || function () { }; window.console.info = window.console.info || function () { }; window.console.warn = window.console.warn |...
import { Vec3 } from '../../math/Vec3'; /** * The class holds details of the contact point. * @author saharan */ export class ManifoldPoint { // Whether this manifold point is persisting or not. warmStarted = false; // The position of this manifold point. position = new Vec3(); // The position in the first ...
"""Test for the forgiver strategies.""" import axelrod from .test_player import TestPlayer C, D = axelrod.Actions.C, axelrod.Actions.D class TestForgiver(TestPlayer): name = "Forgiver" player = axelrod.Forgiver expected_classifier = { 'memory_depth': float('inf'), 'stochastic': False, ...
"""Implementation of the Presentation service.""" from collections import namedtuple import logging from pydicom.uid import UID from pynetdicom._globals import DEFAULT_TRANSFER_SYNTAXES from pynetdicom.sop_class import ( _APPLICATION_EVENT_CLASSES, _BASIC_WORKLIST_CLASSES, _COLOR_PALETTE_CLASSES, _DEF...
__author__ = 'Tom Schaul, tom@idsia.ch' from pybrain.optimization.optimizer import BlackBoxOptimizer, TopologyOptimizer from pybrain.optimization.hillclimber import HillClimber from pybrain.structure.evolvables.maskedparameters import MaskedParameters class MemeticSearch(HillClimber, TopologyOptimizer): """ Inte...
/*! * __ __ _ ____ _ _ ___ _______ __ * | \/ | / \ / ___| \ | |_ _| ___\ \ / / * | |\/| | / _ \| | _| \| || || |_ \ V / * | | | |/ ___ \ |_| | |\ || || _| | | * |_| |_/_/ \_\____|_| \_|___|_| |_| * * jquery.magnify - v1.6.2 * A jQuery plugin to view images just like in windows ...
(function(){"use strict";BX.namespace("BX.Landing.UI.Card");var t=BX.Landing.Utils.getFileExtension;function e(t){return BX.util.add_url_param(t,{utm_source:"bitrix",utm_medium:"referral",utm_campaign:"api-credit"})}function i(t,i){return{image:t.urls.small,credit:{name:t.user.name,link:e(t.user.links.html)},onClick:i....
import scrapy from selenium import webdriver from selenium.webdriver.common.keys import Keys import time class RedditSpider(scrapy.Spider): # spider name name = "redditbot" start_urls = ["https://www.reddit.com/r/gameofthrones/"] def __init__(self): browser = webdriver.Chrome( "/U...
from collections import defaultdict from operator import itemgetter import re from typing import Dict, Iterable, List, Match, NamedTuple, Optional, Tuple, Union from .errors import MarkupError from .style import Style from .text import Span, Text from ._emoji_replace import _emoji_replace re_tags = re.compile(r"(\[\...
const NProgress = require('nprogress'); require('nprogress/nprogress.css'); /** * Initializes module. */ if (!document.getElementById('nprogress')) { NProgress.start(); } // Hook to onDone event to bypass require new object creation. // This allows nProgress stopping from another module and stop it's inner loop....
// For an introduction to the Blank template, see the following documentation: // http://go.microsoft.com/fwlink/?LinkId=232509 (function () { "use strict"; var app = WinJS.Application; var activation = Windows.ApplicationModel.Activation; app.onactivated = function (args) { if (args.detail.k...
from models import ExtendedFlatPage def ext_flatpages(request): return {'ext_flatpages': ExtendedFlatPage.objects.all()}
/** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,uselessCode} checked by tsc */ import { Injectable } from '@angular/core'; import { Subject } from 'rxjs'; import * as i0 from "@angular/core"; var NgAlertService = /** @class */ (function () { function NgAlertService() { this._mes...
import React from 'react'; import PropTypes from 'prop-types'; import { withNamespaces } from 'react-i18next'; import * as shapes from '../../shapes'; import WipErr from '../../shared/WipErr/WipErr'; import UnitList from '../UnitList/Container'; import PageHeader from './Header'; const CollectionPage = ({ collection ...
#! /usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from numpy import array file_name = 'bin/data.dat' def get_col (col): column = [] with open(file_name) as f: next(f) for line in f: column.append(float(line.split('\t')[col-1])) ...
import React, { Fragment, useRef } from "react"; import { connect } from "react-redux"; import { searchLogs } from "../../actions/logActions"; function SearchBar({searchLogs}) { const text = useRef(""); const onChange = () => { searchLogs(text.current.value); }; return ( <Fragment> <nav style={{ ...
import { setTheme } from './theme'; export const AppActions = { setTheme }; export default AppActions;
/** * Module dependencies. */ const expressStatusMonitor = require('express-status-monitor'); const bodyParser = require('body-parser'); const cookieParser = require('cookie-parser'); const methodOverride = require('method-override'); const path = require('path'); const logger = require('morgan'); module.exports = f...
import os from shutil import copy from ..mark import Mark from ..targets.file_target import FileTarget, ContentType from ..test_utils import assert_marks, create_pane def test_finds_relative_file(change_test_dir: str): text = """ Banana man Stuff in ./app/controllers/orders_controller.rb rail Hello """ pa...
var postcss = require('postcss'); var expect = require('chai').expect; var plugin = require('../'); var test = function (input, output, opts, done) { postcss([ plugin(opts) ]).process(input).then(function (result) { expect(result.css).to.eql(output); expect(result.warnings()).to.be.empty; ...
MathJax.Extension["semantic-enrich"]={version:"1.2.3",config:MathJax.Hub.CombineConfig("semantic-enrich",{disabled:!1}),dependents:[],running:!1,mstyleLookup:{mi:["mathvariant"],mo:["mathvariant","accent","largeop","form","fence","separator","movablelimits"],mn:["mathvariant"],mtext:["mathvariant"],ms:["mathvariant"],m...
""" mbed SDK Copyright (c) 2011-2013 ARM Limited 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 wr...
from .client import Connection, Client from .exceptions import (RedisError, ConnectionError, ResponseError, InvalidResponse) from .connection import ConnectionPool
# -*- coding: utf-8 -*- """ Applies ResNet50 network to large images dynamically to make decisions about which objects are present. """ from threading import Thread from keras.preprocessing import image as image_utils from keras.applications.resnet50 import ResNet50, preprocess_input, decode_predictions from matplotlib...
import pytest import networkx as nx from networkx.utils import pairwise def validate_path(G, s, t, soln_len, path, weight="weight"): assert path[0] == s assert path[-1] == t if callable(weight): weight_f = weight else: if G.is_multigraph(): def weight_f(u, v, d): ...
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var shared = require('@vue/shared'); var sourceMap = require('source-map'); var parser = require('@babel/parser'); var estreeWalker = require('estree-walker'); const FRAGMENT = Symbol( `Fragment` ); const TELEPORT = Symbol( `Teleport` ); ...
/*! ========================================================= * Muse Ant Design Dashboard - v1.0.0 ========================================================= * Product Page: https://www.creative-tim.com/product/muse-ant-design-dashboard * Copyright 2021 Creative Tim (https://www.creative-tim.com) * Licensed ...
# -*- coding: utf-8 -*- """ /*************************************************************************** BandDialog This dialog handles the adaption of a band parameter. Therefore, reads the available bands from the backend and lets the user choose on them. On submission it returns the values back to the AdaptDialo...
//Import the mysql module var mysql = require('mysql'); //Create a connection object with the user details var con = mysql.createConnection({ host: "localhost", user: "daog", password: "123456", database: "mywebsite" }); //Connect to the database con.connect( //This function is called when the con...
const path = require('path'); const HtmlWebPackPlugin = require('html-webpack-plugin'); const webpack = require('webpack'); module.exports = { resolve: { alias: { components: path.resolve(__dirname, 'src/components'), stores: path.resolve(__dirname, 'src/stores') } }, module: { rules: [ ...
export const storeObjects = [ { id: 'Store', conditions: (module) => module && module.default && module.default.Chat && module.default.Msg ? module.default : null, }, { id: 'MediaCollection', conditions: (module) => module && module.default && module.default.proto...
webpackJsonp([6],{ /***/ 284: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ForgotpasswordPageModule", function() { return Forgotpas...
# Code for /obj/geo1 hou_node = hou.node("/obj/geo1") hou_parent = hou_node.parent() hou_node.setSelectableInViewport(True) hou_node.showOrigin(False) hou_node.useXray(False) hou_node.setDisplayFlag(True) hou_node.hide(False) hou_node.setSelected(False) hou_parm_template_group = hou.ParmTemplateGroup() # Code for para...
var class_cuboid = [ [ "Cuboid", "class_cuboid.html#a1abf60e93d024b7a01ee5b1a48f1f08a", null ], [ "Cuboid", "class_cuboid.html#aa3e097003f1f7d1f0550d53a0b95ed8f", null ], [ "ObjectType", "class_cuboid.html#af912d080cf6ff63534005d260a6415f1", null ], [ "Take", "class_cuboid.html#ad28db551ea5a877b451c33bd...
import React, { Component } from 'react'; import './App.css'; import './board.css'; import ClearButton from './components/clear_button'; import GameBoard from './components/game_board'; import PieceSelect from './components/piece_select'; class App extends Component { render() { return ( <div className="Ap...
/** * giraffy * * Copyright © 2016 joelbandi. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. */ 'use strict'; const fs = require('fs'); const del = require('del'); const rollup = require('rollup'); const bab...
import React, { useState } from "react"; import { NavLink } from "react-router-dom"; import { useDispatch } from "react-redux"; import { navigation } from "../../Addons/vars"; import { userSingUp } from "../../operations"; import { setErrorState } from "../../Redux/Slice"; import { storage } from "../../config"; impo...
# ---------------------------------------------------------------------------- # Copyright (c) 2016-2019, QIIME 2 development team. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file LICENSE, distributed with this software. # ------------------------------------------------...
import React from 'react'; import iconSvg from '../icons/normalized/wifi-strength-1.svg'; function IconRender(props) { const paths = /^\<svg [^>]+\>(.*)<\/svg>/ig.exec(iconSvg)[1] return ( <svg {...props} xmlns="http://www.w3.org/2000/svg" baseProfile="full" viewBox="0 0 24 24" cl...
ART.Widget.Trait.HasSlider = new Class({ options: { slider: { }, mode: 'horizontal' }, events: { parent: { resize: 'onParentResize' }, slider: { } }, onParentResize: function(current, old) { this.adaptSize(current, old); this.getSlider(true); ...
sap.ui.define([ "sap/ui/core/mvc/Controller", "sap/ui/model/json/JSONModel", "sap/ui/webc/main/Toast" ], function(Controller, JSONModel, Toast) { "use strict"; return Controller.extend("sap.ui.webc.main.sample.ColorPicker.C", { onInit: function() { var oModel = new JSONModel(sap.ui.require.toUrl("sap/ui/dem...
r""" .. _linear-temporal-model: Linear temporal model ======================= This model parametrises a linear time model. .. math:: F(t) = alpha + beta * (t - t_{ref}) """ # %% # Example plot # ------------ # Here is an example plot of the model: from astropy import units as u from astropy.time import Time impo...
// Open Source Initiative OSI - The MIT License (MIT):Licensing // // The MIT License (MIT) // Copyright (c) 2012 DotCloud Inc (opensource@dotcloud.com) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal ...
""" Aggregations. | Copyright 2017-2021, Voxel51, Inc. | `voxel51.com <https://voxel51.com/>`_ | """ from collections import OrderedDict from copy import deepcopy from datetime import date, datetime import numpy as np import eta.core.utils as etau import fiftyone.core.expressions as foe from fiftyone.core.expressio...
from flask_wtf import FlaskForm from wtforms import StringField, TextAreaField, BooleanField, SelectField,\ SubmitField from wtforms.validators import DataRequired, Length, Email, Regexp from wtforms import ValidationError from flask_pagedown.fields import PageDownField from ..models import Role, User class NameF...
/*! * sweetalert2 v9.10.8 * Released under the MIT License. */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global = global || self, global.Sweetalert2 = factory()); }(this,...
#### # A sequential version of stylegan that is perfectly compatible with # the pytorch port by https://github.com/rosinality/stylegan2-pytorch. # (this port by David Bau, with low level operations frrom rosinality). # # In this implementation, all non-leaf modules are subclasses of # nn.Sequential so that they can be ...
export const SAVE_COMMENT = 'SAVE_COMMENT'
$(function() { var $tree = $('#tree1'); $tree.tree({ data: ExampleData.example_data, dragAndDrop: true, autoOpen: true }); });
typeSearchIndex = [{"p":"com.github.vfro","l":"Monitor"},{"p":"com.github.vfro","l":"Sandbox"}]
describe('screen size', function(){ var mock = create_mock() beforeEach(function(){ mock.win = create_mock_window() mock.doc = create_mock_document() delete mock.win.innerWidth delete mock.win.innerHeight }) it('gets proper screen size', function(){ mock.win.screen.width = 670 mock.win.s...
// THIS FILE IS AUTO GENERATED import { GenIcon } from '../lib'; export function GiSpearfishing (props) { return GenIcon({"tag":"svg","attr":{"viewBox":"0 0 512 512"},"child":[{"tag":"path","attr":{"d":"M268.3 23.93c4 6.96 8.8 14.91 14.7 23.43 14.9 21.48 35.6 43.06 53 47.01l11.5 2.6-5.6 10.43c-14.8 27.9-35.5 50-58.8 ...
/* * Waltz - Enterprise Architecture * Copyright (C) 2016, 2017, 2018, 2019 Waltz open source project * See README.md for more information * * 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 ...
const config = { mode: "production", }; export default config;
import React, {useEffect, useState, useReducer} from 'react'; import ControlPanel from "./ControlPanel"; import ListBody from "./ListBody"; import ListInput from "./ListInput"; import {Context} from "./context"; import reducer from "./reducer"; const Priorities = { NONE: '../img/priority-none.png', LOW: '../im...
import React, {useEffect, useState} from "react"; import {useSelector, useDispatch} from 'react-redux'; import {Link, useLocation} from 'react-router-dom'; import {setGAInfos} from "../redux/actions"; import {Button, Result} from 'antd'; const IPFS = require('ipfs-mini'); const ipfs = new IPFS({ host: 'ipfs.infura.io'...
import Map from '../../../src/ol/Map.js'; import View from '../../../src/ol/View.js'; import Feature from '../../../src/ol/Feature.js'; import LineString from '../../../src/ol/geom/LineString.js'; import VectorLayer from '../../../src/ol/layer/Vector.js'; import VectorSource from '../../../src/ol/source/Vector.js'; imp...