text
stringlengths
3
1.05M
FROM python:2 RUN pip install thumbor RUN pip install thumbor_hbase MAINTAINER Edu Herraiz <ghark@gmail.com> VOLUME /logs VOLUME /data # Things required for a python/pip environment COPY system-requirements.txt /usr/src/app/system-requirements.txt RUN \ apt-get update && \ apt-get -y upgrade && \ apt-get...
name = "CrowdNav-Gauss" execution_strategy = { "ignore_first_n_results": 10000, "sample_size": 10000, "type": "self_optimizer", "optimizer_method": "gauss", "optimizer_iterations": 50, "optimizer_random_starts": 10, "knobs": { "route_random_sigma": (0.0, 1.0) } } def primary_d...
import argparse import logging import sys def logged_class(cls): """ Class Decorator to add a class level logger to the class with module and name. """ cls.logger = logging.getLogger( "{0}.{1}".format(cls.__module__, cls.__name__)) return cls class CustomArgumentParser(argparse.Ar...
from helper import greeting def main(): greeting("Hi, there!") if __name__ == "__main__": main()
package de.gold.holiday.models; import de.gold.holiday.database.tables.EMPLOYEE; import de.gold.holiday.database.tables.HOLIDAY_ENTITLEMENT; import de.jollyday.HolidayManager; import javafx.beans.property.SimpleStringProperty; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import ...
#include "linuxffbdevice.h" #include "linuxffbeffectfactory.h" #include <QtWidgets/QMessageBox> #include <QDebug> #include <fcntl.h> #include <unistd.h> #include <linux/input.h> #include <sys/stat.h> #define CHECK_EFFECT_IDX(idx) if (idx < 0 || idx > c_maxEffectCount) return false const quint8 LinuxFFBDevice::BITS_PE...
[![Build Status](https://github.com/lrhn/charcode/workflows/Dart%20CI/badge.svg)](https://github.com/lrhn/charcode/actions?query=workflow%3A"Dart+CI") [![Pub](https://img.shields.io/pub/v/charcode.svg)](https://pub.dev/packages/charcode) [![package publisher](https://img.shields.io/pub/publisher/charcode.svg)](https://...
#pragma once #include "IHeatSource.h" #include <memory> #include <random> #include <functional> class RandomHeatSource : public virtual IHeatSource { public: void generate(float* ptr, const Extent2& ext, const int num_sources) { const size_t num_elems = ext.get_number_of_elems(); // set all...
using ApplicationForTests.Algorithme; using GalaSoft.MvvmLight; using GalaSoft.MvvmLight.Command; using System.Collections.Generic; namespace ApplicationForTests.ViewModel { public class MainViewModel : ViewModelBase { private AbstractRandomEngine randomEngine; public MainViewModel(AbstractRan...
file(REMOVE_RECURSE "CMakeFiles/install-LLVMOrcJIT" ) # Per-language clean rules from dependency scanning. foreach(lang ) include(CMakeFiles/install-LLVMOrcJIT.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach()
from pandac.PandaModules import * from direct.interval.IntervalGlobal import * from BattleBase import * from direct.actor import Actor from toontown.suit import SuitDNA from direct.directnotify import DirectNotifyGlobal import DistributedBattleBase from toontown.toon import TTEmote from otp.avatar import Emote from too...
package util.weblogic; import java.io.IOException; import java.text.DateFormat; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.Hashtable; import java.util.List; import javax.management.AttributeNotFoundException; import javax.mana...
package bar; import android.app.Activity; import android.view.View; import butterknife.InjectView; import foo.BaseThing; public class TestTwo extends BaseThing { }
<?php namespace AppBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\HttpFoundation\File\File; use Vich\UploaderBundle\Mapping\Annotation as Vich; /** * Maschine * * @ORM\Table() * @ORM\Entity(repositoryClass="AppBundle\Entity\MaschineRepository") * @Vich\Uploadable */ class Maschine { ...
package com.github.dactiv.orm.core.hibernate.restriction; import org.apache.commons.lang3.StringUtils; import com.github.dactiv.common.utils.ConvertUtils; import com.github.dactiv.orm.core.PropertyFilter; import org.hibernate.criterion.Criterion; import org.hibernate.criterion.Disjunction; import org.hibernat...
package org.agorava.xing.jackson; import java.util.List; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; import org.agorava.xing.model.ContactRequest; @JsonIgnoreProperties(ignoreUnknown = true) a...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
sudo apt-get install llvm-dev clang libclang-dev libgmp-dev libmpfr-dev libpcre3-dev libpcre++-dev libreadline-dev autoconf automake flex bison mercurial libltdl-dev # the following are necessary in order to build Pure 0.64, # the upmost version 3.6 makes a change in a header file # that break Pure compilation. sud...
import abc import datetime import debugging import stream as pstream class BadEvent(Exception): pass class CursorState(object): def __init__(self): self.offset = 0 class DBDriver(object): __metaclass__ = abc.ABCMeta def __init__(self, trigger_defs): self.trigger_defs = trigger_de...
""" Grafeas API An API to insert and retrieve annotations on cloud artifacts. # noqa: E501 OpenAPI spec version: v1alpha1 Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import unittest import grafeas from grafeas.models.api_source ...
var app = require('./../../app'), http = require('http'), request = require('supertest'), should = require('should'); describe("GET /", function(){ it("should respond successfully", function(){ request(app) .get("/otc/") .set("host", "pay-register-birth-abroad.test.gov.uk") .expect(...
<?php namespace My\AnimalsBundle\Tests\Controller; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class DefaultControllerTest extends WebTestCase { public function testIndex() { $client = static::createClient(); $crawler = $client->request('GET', '/hello/Fabien'); $this->asser...
namespace Watts.Azure.Common.Interfaces.Batch { using System.Collections.Generic; using Common.Batch.Objects; using Common.Storage.Objects; using Microsoft.Azure.Batch; using Microsoft.Azure.Batch.Auth; /// <summary> /// Settings for an Azure Batch execution. /// </summary> public i...
/************************************************************************* * * INFIVERVE TECHNOLOGIES PTE LIMITED CONFIDENTIAL * __________________ * * (C) INFIVERVE TECHNOLOGIES PTE LIMITED, SINGAPORE * All Rights Reserved. * Product / Project: Flint IT Automation Platform * NOTICE: All information containe...
import json import scrapy from scrapy.selector import Selector from models import utils from ..items import Ad from ..utils import FIELDS class Urbanhome(scrapy.Spider): name = "urbanhome" @staticmethod def get_clean_url(url): """Returns clean ad url for storing in database """ ...
/* @flow */ /** * Created by linyong on 9/23/16. */ declare function isLeapYear(year: string): bool; declare class Counter { val: number; incr(): void; }
script_name=${BASH_SOURCE[0]} script_path="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" export setup_ok=false #set -o errexit set -o errtrace set -o nounset if [[ -v WON_GIT_REPO ]] then echo "WON_GIT_REPO: ${WON_GIT_REPO}" else WON_GIT_REPO="${script_path}/../../../.." WON_GIT_REPO="$( cd...
using UnityEngine; using System.Collections; using Lockstep.Data; namespace Lockstep { public class Team { public Vector2d BasePos {get; private set;} public Team (Vector2d basePos) { BasePos = basePos; } public int ID {get; private set;} public AgentController MainController {get; private set;} p...
<component name="libraryTable"> <library name="Maven: org.springframework.boot:spring-boot-starter:1.5.8.RELEASE"> <CLASSES> <root url="jar://C:/apache-maven-3.5.0-bin/apache-maven-3.5.0/repository/org/springframework/boot/spring-boot-starter/1.5.8.RELEASE/spring-boot-starter-1.5.8.RELEASE.jar!/" /> </C...
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> ...
use std::str::FromStr; use std::collections::HashSet; use syntax::ast::*; use syntax::ext::base::{ExtCtxt, Annotatable}; use syntax::codemap::{Span, Spanned, dummy_spanned}; use utils::{span, MetaItemExt, SpanExt, is_valid_ident}; use super::{Function, ParamIter}; use super::keyvalue::KVSpanned; use rocket::http::{Me...
using System; using System.Collections.Generic; using System.ComponentModel.Composition; using System.Linq; using System.Text; using System.Threading.Tasks; using SassyStudio.Compiler.Parsing; namespace SassyStudio.Editor.Intellisense { //[Export(typeof(ICompletionContextProvider))] class StringValueProvider ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>bertrand: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.cs...
package com.cloudera.sqoop; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.sql.Connection; import java.sql.PreparedStatement; import jav...
A finite element library for deformable body simulation. Dependencies ------------ Library requires the latest version of [Threading Building Blocks](https://www.threadingbuildingblocks.org). Copyright and License --------------------- Copyright &copy; 2008, Department of Computer Science, University of Copenhagen.<b...
package net.uniscala.json import org.scalatest.FunSuite object JsonObjectSpec { import Json._ object TestData { val user1 = Json( "type" -> "user", "profiles" -> Json( "mybook" -> Json( "key" -> "AGW45HWH", "secret" -> "g4juh43ui9g92" ), ...
package mimir.statistics import mimir.Database import mimir.algebra._ import mimir.ctables._ import mimir.parser._ import mimir.sql._ import mimir.util._ import org.joda.time.{DateTime, Seconds, Days, Period, Duration} import scala.collection.mutable.ArrayBuffer import scala.collection._ import org.apache.spark.sql.e...
/* USB charging control module for Chrome EC */ #include "builtin/assert.h" #include "chipset.h" #include "common.h" #include "console.h" #include "gpio.h" #include "hooks.h" #include "host_command.h" #include "system.h" #include "usb_charge.h" #include "util.h" #define CPUTS(outstr) cputs(CC_USBCHARGE, outstr) #de...
title: Engine Reference: Value Mapper SPI --- ## Value Mapper SPI The value mapper is used while evaluating expressions and unary tests to * transform a variable into a FEEL data type (e.g. when it is referenced in an expression `x + 1`) * transform the result of the expression or unary tests from a FEEL data type in...
// $Id: Rename.java,v 1.2 2003/10/07 21:45:54 idgay Exp $ package net.tinyos.matchbox.tools; import net.tinyos.matchbox.*; import java.io.*; class Rename { Comm comm; Rename() { comm = new Comm(); comm.start(); } public static void main(String[] argv) { if (argv.length != 2) { System.err.p...
class Model(object): def __init__(self, model_name): self.model_name = model_name self.func = lambda: None def __init__(self, func, model_name): self.model_name = model_name self.func = func def fit(self, data): return self.func() def __str__(self): re...
package com.jhuster.ndktemplate; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setCo...
package edu.kuacm.expo2014.fragments; import edu.kuacm.expo2014.R; import edu.kuacm.expo2014.activities.EventDetailsActivity; import edu.kuacm.expo2014.adapters.EventsAdapter; import edu.kuacm.expo2014.db.DatabaseManager; import edu.kuacm.expo2014.loaders.SimpleCursorLoader; import edu.kuacm.expo2014.model.Event; impo...
/* * DO NOT EDIT THIS CODE BY HAND! It has been generated with jsvcgen. */ package com.solidfire.element.api; import com.solidfire.gson.Gson; import com.solidfire.core.client.Attributes; import com.solidfire.gson.annotations.SerializedName; import com.solidfire.core.annotation.Since; import com.solidfire.core.javau...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using Microsoft.Azure.Search.Models; using Socres.Azure.Search.Attributes; namespace Socres.Azure.Search.Factories { public class IndexFactory : IIndexFactory { private readonly IField...
namespace zconnect.SignProperties { public enum Season { Unknown = 0, Winter } }
This application makes use of the following third party libraries: ## PKHUD The MIT License (MIT) Copyright (c) 2014 Philip Kluz (Philip.Kluz@gmail.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 in the S...
module Crowbar module Client module App # # A Thor based CLI wrapper for installer commands # class Installer < Base desc "status", "Show current installer status" long_desc <<-LONGDESC `status` will print out information about the current status ...
from __future__ import unicode_literals, print_function from django.db import migrations def forwards_func(apps, schema_editor): LanguageListOrder = apps.get_model("lexicon", "LanguageListOrder") Language = apps.get_model("lexicon", "Language") unwanted = LanguageListOrder.objects.values_list('language_i...
body.toplevel_page_sucuriscan, body.sucuri-security_page_sucuriscan_settings, body.sucuri-security_page_sucuriscan_firewall, body.sucuri-security_page_sucuriscan_hardening { background: #f8f8f8; } .sucuriscan-container { margin: 0; margin-left: 9px; margin-right: 28px; margin-top: 10px; } .sucurisca...
ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name Butinia capnoides Decne. ### Remarks null
package nz.co.senanque.locking; import java.util.concurrent.TimeUnit; import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Wraps a lock so we can modify the behaviour slightly without changing the interface. * Specifica...
""" Regroup spectra by healpix """ from __future__ import absolute_import, division, print_function import os, sys, time import numpy as np import argparse from astropy.table import Table from desiutil.log import get_logger from .. import io from ..io.meta import shorten_filename from ..io.util import checkgzip fro...
import contextlib import inflection import itertools import os import pathlib import random import subprocess import sys import tempfile from . import color_utils from . import problem def generate_tests(prob: problem.Problem, executable_path: pathlib.Path, prefix: str, ...
Workspace for Python for Network Engineers Course
using System; namespace Exam_Service.Areas.HelpPage { /// <summary> /// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. /// </summary> public class TextSample { public TextSample(string text) { ...
ACCEPTED #### According to The Catalogue of Life, 3rd January 2011 #### Published in Bot. Mater. Otd. Sporov. Rast. Bot. Inst. Komarova Akad. Nauk S. S. S. R. 8: (1952) #### Original name Amphisphaerellula fagi Gucevic, 1952 ### Remarks null
\hypertarget{dir_4fef79e7177ba769987a8da36c892c5f}{}\section{build Directory Reference} \label{dir_4fef79e7177ba769987a8da36c892c5f}\index{build Directory Reference@{build Directory Reference}} \subsection*{Directories} \begin{DoxyCompactItemize} \end{DoxyCompactItemize} \subsection*{Files} \begin{DoxyCompactItemize} \...
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Task</title> </head> <body> <h3>You can see the result on the console. Press F12! Input values in js file</h3> <script src="minMaxNumbers.js"></script> </body> </html>
layout: sample title: Static SOAP response sample sample: sample-soap-static-response description: Shows how to setup a static response generating SOAP web service server component categories: [samples] permalink: /samples/soap-static-response/ --- Usually incoming requests on server components are handled by a Citrus...
module I18nGenerator ## # Represents a text item for translation # Instantiated with a hash of parameters # Validates required parameters are present on creation # Creates class variables and accessors for supplied parameters class Label def initialize(params_hash) validate_params(params_hash) ...
<?xml version="1.0" encoding="UTF-8" ?> <Page> <DatePicker day="15" month="5" year="2015" verticalAlignment="center" horizontalAlignment="center"/> </Page>
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ProjectModuleManager"> <modules> <module fileurl="file://$PROJECT_DIR$/.idea/EcmaScript6-Modal.iml" filepath="$PROJECT_DIR$/.idea/EcmaScript6-Modal.iml" /> </modules> </component> </project>
<?php require_once 'pdo.php'; /*function exception_error_handler($errno, $errstr, $errfile, $errline ) { throw new ErrorException($errstr, 0, $errno, $errfile, $errline); } set_error_handler("exception_error_handler"); */ class ServiceLocator { protected static $instance; protected function __construct() {}...
dm-tool lock
class GURL; class SkBitmap; namespace base { class FilePath; class SingleThreadTaskRunner; } namespace blink { class WebAppBannerClient; class WebAudioDevice; class WebClipboard; class WebFrame; class WebLocalFrame; class WebMIDIAccessor; class WebMIDIAccessorClient; class WebMediaStreamCenter; class WebMediaStreamCe...
A family tree visualized in a circle. The inner circle contains the root person. Going on level further there is a circle split in two parts: one part for the mother, one for the father. This splitting continues for 7 levels. Hence the outside circle contains 128 parts. Very basic example with only a few layers: http...
<?php namespace s9e\TextFormatter; use DOMDocument; use DOMXPath; abstract class Utils { public static function getAttributeValues($xml, $tagName, $attrName) { $values = array(); if (\strpos($xml, '<' . $tagName) !== \false) { $regexp = '(<' . \preg_quote($tagName) . '(?= )[^>]*? ' . \preg_quote($attrName)...
#ifndef _VRAM_H_ #define _VRAM_H_ #include <inttypes.h> #include <stdbool.h> #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define VRAM_ADDR_4MBIT(x, y) (0x25E00000 + (((x) & 0x03) << 17) + (y)) #define VRAM_ADDR_8MBIT(x, y) (0x25E00000 + (((x) & 0x03) << 18) + (y)) struct vram_ctl { #define VRAM_C...
/* * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1.21.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not...
from .models import Setting def create_or_update_setting(key, value): try: s = Setting.objects.get(key__exact=key) except Setting.DoesNotExist: s = Setting(key=key, value=b'') s.save() s.set(value) def get_setting(key): try: s = Setting.objects.get(key__exact=key) ...
var expect = require("chai").expect; module.exports = function (helpers) { var component = helpers.mount(require.resolve("./index"), { name: "Frank" }); var buttonComponent = component.getComponent("button"); expect(buttonComponent.el.innerHTML).to.contain("Frank"); expect(buttonComponent.el.className)....
import datetime from ...place import Place from ...spec import Spec from .city import City from .village import Village from .structure import Structure from .restaurant import Restaurant class Province(Place): """Provinces exist within territories, and can contain cities, villages, and structures Attributes allo...
3.0.5 - 2013-01-28 ================== * Better job timeout error logging * psych support for delayed_job_data_mapper deserialization * User can configure the worker to raise a SignalException on TERM and/or INT * Add the ability to run all available jobs and exit when complete 3.0.4 - 2012-11-09 ================== * A...
package org.vorthmann.zome.ui; import java.awt.BorderLayout; import java.awt.Container; import java.awt.Dimension; import java.awt.FileDialog; import java.awt.Graphics; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JCheckBox; import javax.swing...
""" This library is a wrapper of ftplib or pysftp. It is convenient to move data from/to (S)FTP servers. There is an example on how to use it (example/ftp_experiment_outputs.py) You can also find unittest for each class. Be aware that normal ftp does not provide secure communication. """ import datetime import ftpl...
import { ThemeType } from "./index"; import warning from "../_util/warning"; // These props make sure that the SVG behaviours like general text. // Reference: https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4 export const svgBaseProps = { width: "1em", height: "1em", fi...
package expression import ( "fmt" "math" "strconv" "strings" "time" "github.com/pingcap/errors" "github.com/pingcap/parser/mysql" "github.com/pingcap/parser/terror" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/store/tikv/oracle" "github.com/pingcap/tidb/types" "github.com/pingcap...
Ever wanted to know how many digits of pi you can type into a Python terminal? - As the author, I can recite pi up to the Feynman point
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} require "#{File.dirname(__FILE__)}/../lib/gh_repo_stats" RSpec.configure do |config| config.mock_with :rspec config.expect_with :rspec do |c| c.syntax = :expect end end
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "alert.h" #include "checkpoints.h" #include "db.h" #include "txdb.h" #inc...
<!-- Generated by pkgdown: do not edit by hand --> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>summary_LLIGE — summary_LLIGE • ccfa</title> <!-- jquery --> <script src="http...
#import <objc/runtime.h> #import "TiProxy.h" #import "TiHost.h" #import "KrollCallback.h" #import "KrollContext.h" #import "KrollBridge.h" #import "TiModule.h" #import "ListenerEntry.h" #import "TiComplexValue.h" #import "TiViewProxy.h" #include <libkern/OSAtomic.h> //Common exceptions to throw when the function c...
FROM blacklabelops/jobber MAINTAINER Steffen Bleul <sbl@blacklabelops.com> # Image Build Date By Buildsystem ARG BUILD_DATE=undefined USER root ENV DOCKER_VERSION=17.09.0-ce ENV DOCKER_MACHINE_VERSION=v0.13.0 RUN apk add --update \ gpgme \ curl \ py-pip && \ pip install --upgrade pip && \ ...
<?php /** * * * @package PHPUnit * @author Sebastian Bergmann <sebastian@phpunit.de> * @copyright 2001-2014 Sebastian Bergmann <sebastian@phpunit.de> * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License * @link http://www.phpunit.de/ * @since Class availab...
--- id: contributing title: How to Contribute layout: docs category: Contributing permalink: docs/contributing.html next: maintainers previous: upgrading --- React Native is one of Facebook's first open source projects that is both under very active development and is also being used to ship code to everybody using Fa...
<metadata> <idinfo> <citation> <citeinfo> <origin>CDPH San Bernardino District</origin> <pubdate>20020318</pubdate> <title>DWSAP Assessment for 3610110-004: ARROWBEAR PARK CWD / WELL 04</title> <edition /> <geoform /> <pubinfo> <pubplace>Sacramento, CA</pubplace> <publish>California Department of Public Health</publis...
package synitex.backup.dao.impl; import org.jooq.DSLContext; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import synitex.backup.dao.IBackupDao; import synitex.backup.db.tables.records.Backu...
<!DOCTYPE html> <html> <head> <style> body{background:wheat;} </style> </head> <body> <iframe src="margin_sub(Q).html" scrolling="no" marginheight="a" marginwidth="a" style="background:#FF0000; border:#000000 1px solid;width:200px;"></iframe> </body> </html>
package org.drip.service.sample; /* * Credit Product import */ import org.drip.analytics.date.JulianDate; import org.drip.analytics.daycount.Convention; import org.drip.analytics.definition.*; import org.drip.analytics.period.*; import org.drip.param.definition.*; import org.drip.param.pricer.PricerPar...
import copy import confu.schema import vaping import vaping.config import vaping.io from vaping.plugins import PluginConfigSchema try: import vodka import vodka.data except ImportError: pass try: import graphsrv import graphsrv.group except ImportError: graphsrv = None def probe_to_graphsr...
ACCEPTED #### According to World Register of Marine Species #### Published in Revta esp. Micropaleont. 2: 238. #### Original name null ### Remarks null
''' Created by auto_sdk on 2015.11.04 ''' from top.api.base import RestApi class LogisticsConsignOrderCreateandsendRequest(RestApi): def __init__(self,domain='gw.api.taobao.com',port=80): RestApi.__init__(self,domain, port) self.company_id = None self.item_json_string = None self.logis_type = None ...
<?xml version="1.0" encoding="UTF-8" ?> <!-- The MIT License Copyright (c) 2011 Kuali Mobility Team 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, includ...
module ChatbotHelper module Telegram # The inline_query resource which represents a Telegram bot API inline_query class InlineQuery < ChatbotHelper::Telegram::BaseResource class << self def required_fields %w[id query offset] end def required_objects [ ...
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="20dp" android:background="@color/livetickerBackground" > <...
package DTExpansion; import java.io.*; import java.util.*; /** * Created by krayush on 08-07-2015. */ public class GetDTTopWordsPolarityHindiTwitter { String rootDirectory; GetDTTopWordsPolarityHindiTwitter()throws IOException { rootDirectory = System.getProperty("user.dir"); ...
Simple Flask app for managing network resources simply # Docker Image published on docker hub - https://hub.docker.com/r/mrsixw/net_rm/ run with `docker run -d -p 5000:5000 mrsixw/net_rm` ## Dependencies * Flask * Flask-Bootstrap
import React, { createElement } from "react" import { computed, isObservable, observable, reaction, transaction, IReactionDisposer, makeObservable } from "mobx" import { observer } from "../src" import _ from "lodash" import { act, render } from "@testing-library/react" let topRenderCount =...
<?php session_start();?> <!DOCTYPE html> <html lang="en"> <head> <?php include 'vars.php'; ?> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title><?= $sitename; ?> Dashboard</title> <link href="css/bootstr...