text stringlengths 3 1.05M |
|---|
using System;
using System.ComponentModel;
using System.Collections.Generic;
using Newtonsoft.Json;
using System.Linq;
using STEP;
namespace IFC
{
/// <summary>
/// <see href="http://www.buildingsmart-tech.org/ifc/IFC4/final/html/link/ifcoffsetcurve2d.htm"/>
/// </summary>
public partial class IfcOffsetCurve2D :... |
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_he... |
struct tib_response
{
long mtype;
key_t key;
uint64_t length;
int success;
};
#define TIB_RESPONSE_SIZE (sizeof(struct tib_response) - sizeof(long))
#endif
|
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
describe "BlandAltman" do
before :each do
@x = [1.0,2.0,3.0]
@x2 = [1.0,2.0,3.0]
@params = {"title" => "Bland"}
@plot = BlandAltman.new @x,@x2,@params
end
describe "#new" do
it "takes three parameters and returns a BlandAltman obj... |
[](https://gitter.im/laszlokorte/reform-swift?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

What is Reform?
---------------
... |
//-----------------------------------------------------------------------
// <copyright file="CustomConfig.cs" company="Rare Crowds Inc">
// Copyright 2012-2013 Rare Crowds, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License... |
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Class: Journeta... |
<?php
namespace libphpvin\Format\Iso3779\EuUsa;
/**
* @package libphp-vin
* @subpackage Format\Iso3779\EuUsa
* @copyright Copyright (c) 2010 Chris Smith (http://www.cs278.org/)
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
class ModelYear extends \libphpvin\Vin\Component\Base
{
... |
<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst name="responseHeader">
<int name="status">0</int>
<int name="QTime">0</int>
</lst>
<result name="response" numFound="0" start="0">
</result>
<lst name="debug">
<str name="rawquerystring">{!frange incl=false l=2000-01-01T00:00:00.002Z}foo_dt</str>
<str name... |
USING_NS_CC;
using namespace CocosDenshion;
AppDelegate::AppDelegate()
{
}
AppDelegate::~AppDelegate()
{
// end simple audio engine here, or it may crashed on win32
SimpleAudioEngine::sharedEngine()->end();
//CCScriptEngineManager::purgeSharedManager();
CC_SAFE_DELETE(m_pLuaEngine);
}
bool AppDelegat... |
Date: Mon, 02 Dec 1996 15:03:21 GMT
Server: NCSA/1.4.2
Content-type: text/html
<head>
<title>CSE 500/490B: Computers and Society -- Syllabus</title>
</head>
<body>
<h1>CSE 500/490B: Computers and Society -- Syllabus</h1>
Instructor: Alan Borning <br>
Class times: Tues Thurs 12:00-1:20, Sieg 225.
<P>
This winter C... |
Left grip
@class IKLeftGrip
]=]
local require = require(script.Parent.loader).load(script)
local IKGripBase = require("IKGripBase")
local IKLeftGrip = setmetatable({}, IKGripBase)
IKLeftGrip.ClassName = "IKLeftGrip"
IKLeftGrip.__index = IKLeftGrip
function IKLeftGrip.new(objectValue, serviceBag)
local self = set... |
export { default } from './Audio.jsx'
|
zooniverse-live
===============
Rebuilt Zooniverse Live using the new Event Stream
### prerequisites
Follow the instructions [here](https://github.com/technomancy/leiningen#installation) to install Java and Leiningen
### development
Zooniverse-live uses [lein-figwheel](https://github.com/bhauman/lein-figwheel) fo... |
This is an example project where Bridge connects an Polymer front end with a Todo Service
back end.
## Try in Dartium
```shell
> git clone https://github.com/dart-bridge/samples
...
> cd samples/polymer_todo
> pub get
...
> cp .env.production .env
> dart bridge start
Server started on http://localhost:1337
=
```
Open... |
package cmput301w15t07.TravelTracker.activity;
import java.util.ArrayList;
import java.util.Collection;
import java.util.UUID;
import cmput301w15t07.TravelTracker.R;
import cmput301w15t07.TravelTracker.model.Claim;
import cmput301w15t07.TravelTracker.model.DataSource;
import cmput301w15t07.TravelTracker.model.Item;... |
require "chef/knife"
require "chef/knife/core/status_presenter"
require "chef/knife/core/node_presenter"
class Chef
class Knife
class Status < Knife
include Knife::Core::NodeFormattingOptions
deps do
require "chef/search/query"
end
banner "knife status QUERY (options)"
op... |
velocidade = float(input("Digite a velocidade do seu carro:"))
if velocidade > 80:
multa = (velocidade - 80) * 5
print("Você foi multado em R$ %7.2f!" % multa)
if velocidade <=80:
print("Sua velocidade está ok, boa viagem!")
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>basic_stream_socket::non_blocking</title>
<link rel="stylesheet" href="../../../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="../../../index.html" title=... |
package com.edu.uj.sk.btcg.generation.processors;
import java.util.Iterator;
import org.activiti.bpmn.model.BpmnModel;
import org.apache.commons.lang3.tuple.Pair;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito... |
<?php
namespace Rcm\Plugin;
use Zend\EventManager\EventInterface as Event;
use Zend\Stdlib\RequestInterface;
use Zend\Stdlib\ResponseInterface;
/**
* Plugin Controller Interface
*
* Is the contract for plugin controllers
*
* PHP version 5.3
*
* LICENSE: BSD
*
* @category Reliv
* @package Rcm
* @author... |
This is an example how to implement a simple domain-specific heuristic for the
graph coloring problem.
## Example Calls
clingo encoding-py.lp instance.lp
clingo encoding-lua.lp instance.lp
|
Copyright (c) 2010 Dumbwaiter Design
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, publish, distribute, ... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
using System;
using Bridge.Test.NUnit;
namespace Bridge.ClientTest.Batch3.BridgeIssues
{
[Category(Constants.MODULE_ISSUES)]
[TestFixture(TestNameFormat = "#2056 - {0}")]
public class Bridge2056
{
private class A
{
}
private class B : A
{
}
publ... |
An NSQ client written in pure Swift
|
package com.intel.analytics.bigdl.ppml.crypto
import com.intel.analytics.bigdl.dllib.utils.File
import com.intel.analytics.bigdl.ppml.crypto.dataframe.DataFrameHelper
import org.apache.hadoop.fs.Path
import java.io.FileWriter
import java.nio.file.{Files, Paths}
import scala.io.Source
class EncryptSpec extends Data... |
package release
|
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... |
module WiotSdk
module Config
module ParserJson
def parser(path)
return '', '', ''
end
end
end
end |
% ---
% Inserir errata
% ---
\begin{errata}
Elemento opcional da \citeonline[4.2.1.2]{NBR14724:2011}. Exemplo:
\vspace{\onelineskip}
FERRIGNO, C. R. A. \textbf{Tratamento de neoplasias ósseas apendiculares com
reimplantação de enxerto ósseo autólogo autoclavado associado ao plasma
rico em plaquetas}: estudo... |
namespace windows_stream_handle_compile {
void write_some_handler(const boost::system::error_code&, std::size_t)
{
}
void read_some_handler(const boost::system::error_code&, std::size_t)
{
}
void test()
{
#if defined(BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE)
using namespace boost::asio;
namespace win = boost::asio::... |
require 'hidemyass/proxy/base'
module HideMyAss
module Proxy
# Represent one proxy instance from https://hidester.com/proxylist
class Hidester < Base
# The IP of the proxy server.
#
# @return [ String ]
def ip
@row['IP']
end
# The port for the proxy.
#
... |
Browse local changes |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OKHOSTING.ERP.Customers
{
public class SaleMail: InvoiceMail
{
}
}
|
using System;
using System.Text;
using System.Security.Permissions;
using System.Runtime.Serialization;
using OpenADK.Library;
using OpenADK.Library.Global;
using OpenADK.Library.us.Common;
namespace OpenADK.Library.us.Instr{
/// <summary>Field for non-numeric types of grading and evaluation such as "narrative."</sum... |
import os
from manage import _set_source_root_parent, _set_source_root
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
_set_source_root_parent('submodules')
_set_source_root(os.path.join('corehq', 'ex-submodules'))
_set_source_root(os.path.join('custom', '_legacy'))
# patch gevent
from restkit.session im... |
@interface ADTestSearchDatabase : XCTestCase
@end
@interface ZLSearchResult (Test)
@property (nonatomic, strong, readonly) NSString *imageUri;
@property (nonatomic, strong, readonly) NSString *entityId;
@property (nonatomic, strong, readonly) NSString *moduleId;
@end
@interface ZLSearchDatabase (Test)
@property (... |
require 'mechanize/test_case'
class TestMechanizeUtil < Mechanize::TestCase
INPUTTED_VALUE = "テスト" # "test" in Japanese UTF-8 encoding
CONTENT_ENCODING = 'Shift_JIS' # one of Japanese encoding
ENCODED_VALUE = "\x83\x65\x83\x58\x83\x67".force_encoding(::Encoding::SHIFT_JIS) # "test" in Japanese Shift_JIS encodin... |
package mariuszbaleczny.compass;
import android.content.Context;
import android.content.pm.PackageManager;
import android.location.LocationManager;
import android.util.Log;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
public class Utils {
public static boolean isCoordinateInRange... |
layout: piece
title: where does that leave us
author: Adam Zachary
date: 2017-04-17 10:00:00
category: april2017
bio: "Adam Zachary (1993–present) is an artist and writer in Toronto."
---

1 from a se... |
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.advert.delivery.item.apply response.
*
* @author auto create
* @since 1.0, 2018-03-02 10:02:06
*/
public class KoubeiAdvertDeliveryItemApplyResponse extends AlipayRes... |
using Microsoft.AspNet.Identity;
using MongoDB.Bson;
using MongoDB.Bson.Serialization;
using MongoDB.Bson.Serialization.Conventions;
using MongoDB.Bson.Serialization.Serializers;
using MongoDB.Driver;
using System;
using System.Collections;
using System.Collections.Generic;
namespace AspNet.Identity3.MongoDB
{
pu... |
"""
Example to build a full spiking IaF network
through libNeuroML, save it as XML and validate it
"""
from neuroml import NeuroMLDocument
from neuroml import IafCell
from neuroml import Network
from neuroml import ExpOneSynapse
from neuroml import Population
from neuroml import GapJunction
from neuroml import Inpu... |
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="tomcat"/>
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="manager-jmx"/>
<role rolename="admin"/>
<user username="admin" password="admin" roles="tomcat, manager-gui, manager-script, manager-jmx"/>
<user ... |
class TestNaClIRTStackAlignment : public TestCase {
public:
explicit TestNaClIRTStackAlignment(TestingInstance* instance)
: TestCase(instance) {}
private:
// TestCase implementation.
virtual bool Init();
virtual void RunTests(const std::string& filter);
std::string TestMisalignedCallVarAddRef();
... |
NS_ASSUME_NONNULL_BEGIN
// Simple logger that just uses NSAssert to break when there are errors
@interface LUIAssertionLogger : NSObject <LUILogger>
@end
NS_ASSUME_NONNULL_END
|
<?xml version="1.0" encoding="utf-8"?>
<!--
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/menu_view_otr"
android:title="@string/menu_otr_start"
android:icon="@drawable/ic_menu_encrypt" />
<item android:id="@+id/menu_switch_chats"
android... |
execute 'timedatectl' do
command "timedatectl set-timezone #{node[:tz]}"
not_if "timedatectl | grep Timezone | grep #{node[:tz]}"
end
|
platform: ubuntu
device: dell edge gateway 5000 series
language: c
---
Run a simple C sample on Dell Edge Gateway 5000 Series device running Ubuntu
===
---
# Table of Contents
- [Introduction](#Introduction)
- [Step 1: Prerequisites](#Prerequisites)
- [Step 2: Prepare your Device](#PrepareDevice)
- [Step 3: ... |
SYNONYM
#### According to
Index Fungorum
#### Published in
null
#### Original name
Helmisporium flexuosum Corda
### Remarks
null |
/*
* @Author: jjj201200@gmail.com
* @Date: 2017-08-13 14:21:02
* @Last Modified by: jjj201200@gmail.com
* @Last Modified time: 2017-08-20 01:28:48
*/
import { WebGLRenderer, CanvasRenderer, PCFSoftShadowMap, Scene, PerspectiveCamera, Vector3, Raycaster } from 'three';
import $ from 'jquery';
import { OrbitContr... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
function criarSocket($address, $service_port)
{
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if ($socket === false) {
$dados['status'] = "Falha ao enviar a mensagem :(";
$dados['resposta'] = "Não foi possível criar o socket:<br>".s... |
/**
@file string.h
@brief substitutes for ::std::string.
@author HRYKY
@version $Id: string.h 373 2014-07-27 04:20:16Z hryky.private@gmail.com $
*/
#ifndef STRING_H_20120419000213668
#define STRING_H_20120419000213668
#include "hryky/allocator/allocator_mempool.h"
#include "hryky/com... |
layout: archive
title: "News"
author_profile: false
---
{% include base_path %}
{% capture written_year %}'None'{% endcapture %}
{% capture written_month %}'None'{% endcapture %}
{% for post in site.posts %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture month %}{{ post.date | date: '%M'... |
// Copyright © 2017 Chocolatey Software, Inc
// Copyright © 2011 - 2017 RealDimensions Software, LLC
//
// 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.apach... |
package jenkins.tasks.filters.impl;
import edu.umd.cs.findbugs.annotations.NonNull;
import hudson.EnvVars;
import hudson.Extension;
import hudson.model.Job;
import hudson.model.Run;
import hudson.util.FormValidation;
import jenkins.tasks.filters.EnvVarsFilterRuleContext;
import jenkins.tasks.filters.EnvVarsFilterLoca... |
<?php
namespace Brasa\GeneralBundle\Controller\Base;
use Brasa\GeneralBundle\MisClases\Mensajes;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Request;
use Brasa\GeneralBundle\Form\Type\GenAsesorType;
class... |
using BindingsRx.Bindings;
using UnityEngine;
using UnityEngine.UI;
namespace Examples.InputBindings
{
/// <summary>
/// A simple binding to bind the text of an input field to a text field
/// </summary>
public class SetupTextBinding : MonoBehaviour
{
public InputField InputElement;
... |
module Bio
class Gex
module Adapter
ROUTES = {:cufflinks_quantification=>"Cufflinks::Quantification",
:rtpcr_custom_tab=>"Rtpcr::CustomMultiSet"}
class << self
# read method must be implemented for each sub modules
def read(path, source)
if valid?(path)
... |
// ReSharper disable UnusedMember.Local
// ReSharper disable UnusedParameter.Local
namespace Apache.Ignite.Core.Tests.Binary.Serializable
{
using System;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading;
using Apache.Ignite.... |
require 'openssl'
require 'json'
require 'ostruct'
require 'erubis'
require 'analytics-ruby'
require 'analytics/helpers'
require 'analytics/renderer'
require 'analytics/patches'
module Analytics
extend Analytics::Helpers
def self.url
if options[:secret]
"//d2dq2ahtl5zl1z.cloudfront.net/analytics.js/v1/#... |
'use strict';
const WPMerge = require('webpack-merge')
const WebpackDashboard = require('webpack-dashboard/plugin')
const path = require('path')
const webpack = require('webpack')
const base = require('./webpack.js')
const src = path.resolve('src')
const main = path.join(src, 'main')
module.exports = env => WPMerge(
... |
@interface JxCalendarWeekHeader : UICollectionReusableView
@property (strong, nonatomic) IBOutlet UILabel *titleLabel;
@property (strong, nonatomic) IBOutlet UIButton *button;
@property (strong, nonatomic) IBOutlet UIView *eventMarker;
@end
|
<!doctype html>
<!--
@license
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of... |
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports System.Threading
Imports Microsoft.CodeAnalysis.CodeActions
Imports Microsoft.CodeAnalysis.CodeRefactorings
Im... |
@echo off
set "softsurface=@isOneOf(surface, unpaved, gravel, ground, dirt, grass, sand, compacted, fine_gravel, earth, mud)"
set "hardsurface=@isOneOf(surface, paved, asphalt, concrete)"
call :createpython >../../package/rules/pythonhelpers.py
call :sub >../../package/rules/mtbmap-nextgeneration.mrules
exit /b
:creat... |
/*///////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
Plik: Special.h
Autor: Real_Noname (real_noname@wp.pl)
(C): CODE RULERS (Real_Noname)
WWW: www.coderulers.prv.pl
Opis: Zawiera definicje klas odpowiedzialnych za efekty specjalne
typu wybuchy, promienie... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.containerservice.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fa... |
function getOriginalStyle_ex05_01(fApr) {
fApr.showTitleBar = true;
fApr.showCloseButton = true;
fApr.titleBarCaptionFontSize = '12px';
fApr.titleBarCaptionFontWeight = 'normal';
fApr.titleBarCaptionLeftMargin = '10px';
fApr.titleBarCaptionColorDefault = '#4d494d';
fApr.titleBarCaptionC... |
namespace google_calendar_api {
using namespace googleapis;
// Object factory method (static).
Event::EventCreator* Event::EventCreator::New() {
return new client::JsonCppCapsule<EventCreator>;
}
// Standard immutable constructor.
Event::EventCreator::EventCreator(const Json::Value& storage)
: client::JsonCppDa... |
package org.apache.bcel.classfile;
import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;
import org.apache.bcel.Const;
/**
* This class is derived from the abstract {@link Constant} and represents a reference to a method type.
*
* @see Constant
* @since 6.0
*/
public final clas... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_17) on Mon Dec 02 20:33:05 CET 2013 -->
<title>Uses of Class org.lwjgl.opengles.NVPlatformBinary (LWJGL API)</title>
<meta name="... |
_Released 08/06/2015_
**Summary:**
- Cypress is now able to run all the tests, run in the terminal, and includes
support for Linux and CI. Additionally, most of the functionality of he GUI
Desktop App can now be accessed through command line arguments.
- Because each operating system requires a specific build of ... |
exports.up = async knex => {
await Promise.all([
knex.raw('ALTER TABLE articles ADD FULLTEXT(title)'),
knex.raw('ALTER TABLE articles ADD FULLTEXT(markdown)'),
]);
// Using a raw query above since knex does not support fulltext indexing
};
exports.down = async knex => {
await Promise.all([
knex.raw... |
package se.jbee.inject.defaults;
import static se.jbee.inject.Name.named;
import static se.jbee.inject.Scope.container;
import static se.jbee.inject.ScopePermanence.singleton;
import static se.jbee.inject.ScopePermanence.unstable;
import static se.jbee.inject.scope.DiskScope.SYNC_INTERVAL;
import static se.jbee.inject... |
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="ivy-report.xsl"?>
<ivy-report version="1.0">
<info
organisation="saddle"
module="saddle$sources_javadoc_2.9.3"
revision="0.1.0"
conf="pom"
confs="compile, runtime, test, provided, optional, compile-internal, runtime-internal, test-... |
package at.ac.tuwien.ifs.tita.ui.evaluation.timecontroller;
import java.net.MalformedURLException;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.PersistenceException;
import javax.servlet.ServletContext;
import javax.swing.ListSelectionModel;
import net.sf.jasperreports.engine.JRExcept... |
#include "textlinedata.h"
#include "edbee/models/changes/linedatalistchange.h"
#include "edbee/models/textlinedata.h"
#include "edbee/debug.h"
namespace edbee {
//-------
/// construct the text line data item
TextLineDataList::TextLineDataList()
: lineDataList_(0)
{
}
TextLineDataList::~TextLineDataList()
{... |
using System.Web;
using System.Web.Optimization;
namespace TestEmpty
{
public class BundleConfig
{
// 有关绑定的详细信息,请访问 http://go.microsoft.com/fwlink/?LinkId=301862
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").... |
package martin.mogrid.globus.service.dispatcher;
import org.apache.log4j.Logger;
import org.globus.gram.GramException;
import org.globus.gram.GramJob;
import org.globus.gram.GramJobListener;
import org.ietf.jgss.GSSException;
public final class JobRequestControler extends JobRequestConfiguration implements Runnable ... |
package com.pratiksejpal.service;
/**
*
*
*
* @author Saurabh Sejpal
* @version 1.0
*/
public class UserRoleService {
}
|
import _getIterator from "@babel/runtime-corejs3/core-js/get-iterator";
import _Array$isArray from "@babel/runtime-corejs3/core-js/array/is-array";
import _getIteratorMethod from "@babel/runtime-corejs3/core-js/get-iterator-method";
import _Symbol from "@babel/runtime-corejs3/core-js/symbol";
import unsupportedIterable... |
import os
import pickle
import re
import pytest
from cameo import api, load_model
from cameo import models, config
from cameo.api.hosts import Host
from cameo.api.products import Compound
MODELS = os.path.dirname(models.__file__)
UNIVERSALMODEL = load_model(os.path.join(MODELS, 'json/iJO1366.json'))
UNIVERSALMODEL.... |
import React, { PropTypes } from 'react'
import ReactDOM from 'react-dom'
import classnames from 'classnames'
import Button from 'components/common/Button'
import ErrorMessage from 'components/common/ErrorMessage'
import TextField from 'components/common/TextField'
import { mountDialog, unmountDialog, innerDialogID } f... |
using System;
using System.Collections.Generic;
using SharpKit.Html;
using SharpKit.JavaScript;
namespace qx.util
{
/// <summary>
/// <para>Generic escaping and unescaping of DOM strings.</para>
/// <para><see cref="qx.bom.String"/> for (un)escaping of HTML strings.
/// <see cref="qx.xml.String"/> for (un)escap... |
'''
Created on October 27, 2020
This file is subject to the terms and conditions defined in the
file 'LICENSE.txt', which is part of this source code package.
@author: David Moss
'''
from devices.vibration.vibration import VibrationDevice
class DevelcoVibrationDevice(VibrationDevice):
"""
Develco Vibration ... |
<?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">
<View
android:layout_width="fill_parent"
android:layout_height="@dimen/ten... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
// Copyright 2012 Cloudera Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in wr... |
// This script contains a badly-organised collection of miscellaneous
// functions that really better homes.
function classCreate() {
return function() {
this.initialize.apply(this, arguments);
}
}
function objectExtend(destination, source) {
for (var property in source) {
destination[property] ... |
/**
* PlayerAnimator.cs
* Author: Alexandra Winters
*/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerAnimator : MonoBehaviour
{
Animator anim;
int walk = Animator.StringToHash("Walk");
int idle = Animator.StringToHash("Idle");
// Use this for in... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ipc: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="... |
<?php
namespace App\Policies;
use App\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class UserPolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can ban users in the application.
*
* @param User $user The database instance from the authenticated user
* @p... |
<?php
namespace app\modules\admin\controllers;
use Yii;
use app\controllers\ControllerTrait;
use app\modules\admin\models\forms\SettingsForm;
class SettingsController extends \yii\web\Controller
{
use ControllerTrait;
public function actionIndex()
{
$model = new SettingsForm();
if (Yii... |
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="divider">#E0E0E0</color>
<color name="edit_text_background">#0D0D0D</color>
</resources> |
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple... |
// -*- C++ -*-
//=============================================================================
/**
* @file TTY_IO.h
*
* $Id: TTY_IO.h 95212 2011-12-05 12:29:55Z johnnyw $
*
* @author Douglas C. Schmidt <schmidt@uci.edu>
*/
//=============================================================================
#if... |
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="64dd9d8e-7959-4405-99e9-7db311ae0b2a" name="Default" comment="">
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/sources/__init__.py" />
<change type="DELETED" beforePat... |