text
stringlengths
3
1.05M
<?php namespace Tuk\ModelBundle\Entity; use Doctrine\ORM\EntityRepository; /** * UserRepository * * This class was generated by the Doctrine ORM. Add your own custom * repository methods below. */ class UserRepository extends EntityRepository { }
<?php declare(strict_types = 1); namespace ZenifyCodingStandard\Sniffs\WhiteSpace; use PHP_CodeSniffer_File; use PHP_CodeSniffer_Sniff; /** * Rules: * - Not operator (!) should be surrounded by spaces. */ final class ExclamationMarkSniff implements PHP_CodeSniffer_Sniff { /** * @var string */ const NAM...
/* Includes ------------------------------------------------------------------*/ #include "stm32f7xx_hal.h" /** @addtogroup STM32F7xx_HAL_Driver * @{ */ /** @defgroup FLASH FLASH * @brief FLASH HAL module driver * @{ */ #ifdef HAL_FLASH_MODULE_ENABLED /* Private typedef ----------------...
class PendantsController < ApplicationController def show @pendant = GlassArtPiece.wearable.where(collection_id: params[:collection_id]).find(params[:id]) end end
/* tags: advanced <p>Metaball rendering demo. Many ideas and code taken from <a href="https://www.clicktorelease.com/code/bumpy-metaballs">here</a></p> */ const regl = require('../regl')() const surfaceNets = require('surface-nets') const ndarray = require('ndarray') const normals = require('angle-normals') con...
<?php interface IDataBase { // If exists return the user object public function login($email, $password); // List the user's room public function listRoons(); // Save the element in the data base public function saveElement($element); // Retrieve the element from data base ...
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2017 Rachel030219 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...
<?php /** * Model to send emails to customer & administrator. * * @author Andrii Biriev <a@konservs.com> * @copytight (c) Brilliant IT, http://it.brilliant.ua */ defined('_JEXEC') or die('No direct access!'); jimport('joomla.application.component.modelitem'); class CalculatorModelCalculator extends JModelItem{ ...
<div class="track {{ nextDate ? 'date-start' }}" data-track="{{ track.TrackID }}"> <span class="location has-input"> <select name="location"> <option value="Office">Office</option> <option value="Home">Home</option> </select> </span> <span class="date has-input"> <input type="text" name="date" va...
package online.pizzacrust.lukkitplus.api; import org.bukkit.Bukkit; import org.bukkit.Location; import org.luaj.vm2.LuaValue; import org.luaj.vm2.Varargs; import online.pizzacrust.lukkitplus.environment.FunctionController; import online.pizzacrust.lukkitplus.environment.LuaLibrary; public class TypePoint extends Lua...
SYNONYM #### According to Interim Register of Marine and Nonmarine Genera #### Published in null #### Original name null ### Remarks null
template < class Iter > std::string list_to_string( Iter first, Iter last ) { if( first == last ) return std::string(""); std::ostringstream oss; oss << *first; while( ++first != last ) { oss << ":" << *first; } return oss.str(); } #endif // LIST_TO_STRING_HPP_
import datetime import re import sys from decimal import Decimal from .decoder import InlineTableDict if sys.version_info >= (3,): unicode = str def dump(o, f, encoder=None): """Writes out dict as toml to a file Args: o: Object to dump into toml f: File descriptor where the toml should ...
package org.jpublish.page.servletcontext; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.jpublish.JPublishRuntimeException; import org.jpublish.util.PathUtilities; import java.util.Iterator; /** Iterator which iterates through the Page objects known to th...
package net.skycrown.cuteassistant.network.gson; import com.google.gson.Gson; import com.google.gson.TypeAdapter; import com.google.gson.reflect.TypeToken; import java.lang.annotation.Annotation; import java.lang.reflect.Type; import okhttp3.RequestBody; import okhttp3.ResponseBody; import retrofit2.Converter; impo...
// -*- C++ -*- //========================================================================== /** * @file Remote_Name_Space.h * * $Id: Remote_Name_Space.h 93359 2011-02-11 11:33:12Z mcorino $ * * @author Prashant Jain */ //========================================================================== #ifndef A...
Cordova BlackBerry WebWorks ============================ [Cordova framework](http://incubator.apache.org/cordova/) for __BlackBerry Tablet OS, Smartphones and BlackBerry 10 devices__. The framework is implemented using the [BlackBerry WebWorks SDK](http://us.blackberry.com/developers/tablet/webworks.jsp). Directory S...
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: AssemblyTitle("_0...
/** * Sample React Native App * https://github.com/facebook/react-native */ 'use strict'; var React = require('react-native'); var { AppRegistry, StyleSheet, Text, Image, TextInput, PanResponder, TouchableOpacity, View, } = React; var createReactIOSNativeComponentClass = require('createReactIOSNati...
<span class="badge" ng-if="!resource.directory">{{resource.size | bytesToSize}}</span> <div style="text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"> <span class="glyphicon glyphicon-folder-close" ng-if="resource.directory"> </span> <span class="glyphicon glyphicon-file" ng-if="!resource.directory"> <...
ACCEPTED #### According to International Plant Names Index #### Published in null #### Original name null ### Remarks null
from HTMLParser import HTMLParser import re import tangelo # create a subclass and override the handler methods class MyHTMLParser(HTMLParser): def __init__(self): HTMLParser.__init__(self) self.result_tag = False self.results = [] self.result_count = "" self.link_tag = Fal...
<!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 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class io.permazen.parse.func.VersionFunction (Permazen 4.1.6 AP...
package com.jakewharton.rxbinding.view; import android.content.Context; import android.support.annotation.NonNull; import android.view.MenuItem; /** * A target menu item on which an event occurred (e.g., click). * <p> * <strong>Warning:</strong> Instances keep a strong reference to the menu item. Operators that *...
import * as React from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faTrash } from "@fortawesome/free-solid-svg-icons"; import type { GlobalState } from "../../../../globalState"; import { ColorGradient, Color3Gradient } from "core/Misc/gradients"; import type { LockObject } ...
class Photo < ActiveRecord::Base module Sequence def has_previous? !!previous_record end def has_next? !!next_record end def previous_record @previous_record ||= self.class.sorted.published.where("position > :position", position: position).last end def next_record ...
Decimal128: [basx021] conform to rules and exponent will be in permitted range). --DESCRIPTION-- Generated by scripts/convert-bson-corpus-tests.php DO NOT EDIT THIS FILE --FILE-- <?php require_once __DIR__ . '/../utils/tools.php'; $canonicalBson = hex2bin('18000000136400010000000000000000000000000040B000'); $canonic...
#ifndef _WEBP_CODEC_H_ #define _WEBP_CODEC_H_ #include <memory> #include <jni.h> #include "decoded_image.h" namespace facebook { namespace imagepipeline { namespace webp { /** * Decodes webp image from given input stream. * * @param env * @param is * @param pixel_format */ std::unique_ptr<DecodedImage> dec...
class UpdateIndexForCoverageFuzzingTelemetry < ActiveRecord::Migration[6.0] include Gitlab::Database::MigrationHelpers DOWNTIME = false disable_ddl_transaction! OLD_INDEX_NAME = 'index_security_ci_builds_on_name_and_id' NEW_INDEX_NAME = 'index_security_ci_builds_on_name_and_id_parser_features' OLD_CLAUSE...
<?php namespace Qcm\QcmBundle\DependencyInjection; use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; /** * This is the class that validates and merges configuration from your app/config files * * To learn more see {@link http://symfony.com...
<!DOCTYPE html> <!--[if IE 9]><html class="lt-ie9" lang="fr"><![endif]--> <!--[if !IE]><!--><html lang="fr"><!--<![endif]--> <head> <title>Pocoyoo - SensCritique</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="Cette s...
import { singularize, pluralize, camelize, dasherize } from '../utils/inflector'; import Association from './associations/association'; import Collection from './collection'; import _isArray from 'lodash/lang/isArray'; import _forIn from 'lodash/object/forIn'; import _includes from 'lodash/collection/includes'; import ...
 using System; using System.Collections.Generic; using System.Text; using System.Linq; using XenAPI; using System.Windows.Forms; using XenAdmin.Actions; using XenAdmin.Core; using XenAdmin.Commands.Controls; using XenAdmin.Dialogs; namespace XenAdmin.Commands { class DeleteVirtualDiskCommand : C...
<!-- Copyright (c) 2015 The Khronos Group Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or associated documentation files (the "Materials"), to deal in the Materials without restriction, including without limitation the rights to use, copy, modify, merge, publi...
<?php if( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) exit(); require "wordpress-file-monitor-plus.php"; sc_WordPressFileMonitorPlusSettings::uninstall();
title: ays3 type: products image: /img/Screen Shot 2017-05-09 at 11.56.54 AM.png heading: s3 description: lksadjf lkasdjf lksajdf lksdaj flksadj flksa fdj main: heading: Foo Bar BAz description: |- ***This is i a thing***kjh hjk kj # Blah Blah ## Blah![undefined](undefined) ### Baah image1: a...
@interface UIFont (GermaniaOne) + (instancetype)germaniaOneRegularFontOfSize:(CGFloat)size; @end
alias gradle=./gradlew
package com.mgmtp.perfload.loadprofiles.ui.util; import com.google.common.base.Function; import com.mgmtp.perfload.loadprofiles.ui.model.LoadProfileEntity; import com.mgmtp.perfload.loadprofiles.ui.model.OneTime; /** * @author rnaegele */ public class LoadProfileEntityToOneTimeFunction implements Function<LoadProf...
import { Item } from '../../shared/item'; export interface MerchantOrderPayer { id?: number | undefined; email?: string | undefined; nickname?: string | undefined; } export interface MerchantOrderItem extends Item { /** Id do anúncio. */ id?: number | undefined; /** Identificador da moeda utilizada no pre...
package androidx.work; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.greaterThan; import android.support.test.filters.SmallTest; import android.support.test.runner.AndroidJUnit4; import androidx.work.worker.InfiniteTestWorker; ...
[![Travis CI](https://travis-ci.org/suda/tool-bar.svg?branch=master)](https://travis-ci.org/suda/tool-bar) [![Circle CI](https://circleci.com/gh/suda/tool-bar/tree/master.svg?style=shield)](https://circleci.com/gh/suda/tool-bar/tree/master) [![AppVeyor](https://ci.appveyor.com/api/projects/status/xtm6u3sn3oil50da?svg=t...
module ImportCausesImportCycle where import CausesImportCycle
from data_collection.management.commands import BaseXpressDemocracyClubCsvImporter class Command(BaseXpressDemocracyClubCsvImporter): council_id = 'E06000015' addresses_name = 'parl.2017-06-08/Version 1/Democracy_Club__08June2017 Derby City.TSV' stations_name = 'parl.2017-06-08/Version 1/Democracy_Club__08...
package gnu.classpath.tools.jarsigner; import gnu.classpath.Configuration; import gnu.java.security.hash.Sha160; import gnu.java.security.util.Base64; import gnu.java.util.jar.JarUtils; import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingExc...
var express = require('express'); var path = require('path'); // var favicon = require('serve-favicon'); var logger = require('morgan'); var cookieParser = require('cookie-parser'); var bodyParser = require('body-parser'); var aws = require('aws-lib'); var Ebay = require('ebay'); var session = require('cookie-sessi...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>smpl: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" r...
package com.box.platform.search; import akka.actor.UntypedActor; import akka.event.Logging; import akka.event.LoggingAdapter; import com.eclipsesource.json.Json; import com.eclipsesource.json.JsonObject; import com.typesafe.config.Config; import org.apache.http.HttpEntity; import org.apache.http.HttpHost; import org.a...
require 'spec_helper' require 'http_streaming_client' require 'timeout' require 'stream_consumer/updater/console_stats_updater' require 'stream_consumer/producer/console_data_producer' describe StreamConsumer::Consumer do describe "single consumer thread, single producer thread, console producer, console updater" ...
package tangocard import ( "bytes" "encoding/json" "fmt" "io/ioutil" "net/http" "time" ) var ( defaultIntegrationHost = "https://integration-api.tangocard.com/raas/v2" productionAPIHost = "https://integration-api.tangocard.com/raas/v2" ) // GetOrdersRequest represents the request to get a list of all or...
package de.biomedical_imaging.ij.trajectory_classifier; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; import com.opencsv.CSVReader; import com.opencsv.CSVWriter; import de.biomedical_imaging.traJ.Trajectory; public class ExportImportTools { public...
<?xml version="1.0" encoding="UTF-8"?> <ApexPage xmlns="http://soap.sforce.com/2006/04/metadata"> <apiVersion>40.0</apiVersion> <availableInTouch>false</availableInTouch> <confirmationTokenRequired>false</confirmationTokenRequired> <label>NewAndEditVRS</label> </ApexPage>
package com.example.android.background; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.preference.PreferenceManager; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.ImageView; import android.widget.Text...
using System; using Windows.UI.Xaml; using Microsoft.Xaml.Interactivity; namespace Audiotica.Windows.Interactions { /// <summary> /// An action that switches the current visual to the specified <see cref="T:Windows.UI.Xaml.Controls.Page" />. /// </summary> public sealed class NavigateToPageAction ...
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World!</string> <string name="app_name">Twitter Search App</string> <string name="intro">Enter your Twitter search term</string> <string name="hint">Enter search query</string> <string name="search_label">Search</strin...
// Copyright 2011 Splunk, 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 i...
Public Key Cryptography ================================= Public key cryptography (also called asymmetric cryptography) is a collection of techniques allowing for encryption, signatures, and key agreement. Key Objects ---------------------------------------- Public and private keys are represented by classes ``Publi...
import { Component, OnInit } from '@angular/core'; import { GroupService } from '../shared/services/group.service'; @Component({ selector: 'my-home', templateUrl: './home.component.html', styleUrls: ['./home.component.scss'] }) export class HomeComponent implements OnInit { private groupCount: number; constr...
import errno import random import re import signal import socket import subprocess import sys import time import os import tornado.simple_httpclient from tornado.httpclient import HTTPRequest, HTTPClient, HTTPError from testify import * num_re = re.compile(r'\d+$') stat_re = re.compile(r'^(?P<pid>\d+) \((?P<exename>...
@import UIKit; @interface VTTagsTableViewController : UITableViewController @end
<?php namespace Application\Console\Lib; class ComponentsUI extends ComponentsAPI{ public function Create() { // Get Component name from user $this->componentName = $this->readUser('Enter name of the component you want to build (Unique): '); if($this->CreateComponent()) { ...
const express = require('express'), router = express.Router(), passport = require('passport'), User = require('../models/user'); // user show page router.get('/:username', function(req, res, next) { User.findOne({username: req.params.username}).then(function(user) { res.render('users/show', {us...
/* Add to Homescreen v3.1.1 ~ (c) 2014 Matteo Spinelli ~ @license: http://cubiq.org/license */ (function (window, document) { /* _ _ _____ _____ ___ _| |_| |_ _|___| | |___ _____ ___ ___ ___ ___ ___ ___ ___ | .'| . | . | | | | . | | . | | -_|_ -| _| _| -_| -_| | |__,|___|___| |_| |___|__|_...
<?php namespace Moulis\MainBundle\DependencyInjection; use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; /** * This is the class that validates and merges configuration from your app/config files * * To learn more see {@link http://symfony...
package com.playfab; import java.util.HashMap; import java.util.Date; public class LoginResult { /// <summary> /// a unique token authorizing the user and game at the server level, for the current session /// </summary> public String SessionTicket; /// <summary> /// player's unique PlayFabId /// </sum...
<?php namespace Services; /** * Description of Workshop * * @author MihaelDesk */ class Workshop implements \Services\IDaoService { private function __construct() { } /** * * @param \Models\Workshop $w * @return \Models\User */ public static function getOwner(\Model...
This script attempts to download the signature file `SHA256SUMS.asc` from SourceForge. It first checks if the signature passes, and then downloads the files specified in the file, and checks if the hashes of these files match those that are specified in the signature file. The script returns 0 if everything passes th...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="search...
using System.Collections.Generic; using System.Collections.Immutable; using Microsoft.Extensions.Logging; namespace OmniSharp.MSBuild { internal static class Extensions { public static void AddPropertyOverride( this Dictionary<string, string> properties, string propertyName, ...
package ru.job4j.sql.magnit.storexml; import javax.xml.bind.JAXBException; import java.io.File; import java.util.ArrayList; public class StoreXMLTest { public static void main(String[] args) throws JAXBException { File target = new File("C:\\entryFile.xml"); StoreXML storeXML = new StoreXML(target...
@implementation OTPersonalDataConfig - (id) init { self = [super init]; if (self) { self.needToSave = YES; } return self; } - (OTFieldConfig *) getFieldConfigWithKey:(NSString *) key { for (OTFieldConfig *config in self.fields) { if ([config.key isEqualToString:key]) { ...
package com.stewhouse.tweety; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { su...
""" __graph_GenericNode_UMLRT2Kiltera_MM.py___________________________________________________________ Automatically generated graphical appearance ---> MODIFY DIRECTLY WITH CAUTION _________________________________________________________________________________________ """ import tkFont from graphEntity import ...
<?php namespace WikiRenderer\Generator; interface GeneratorInterface { public function __construct(\WikiRenderer\Generator\Config $config); /** * says if it has no content. */ public function isEmpty(); /** * @return string */ public function generate(); }
<?php require_once 'Crud.php'; class departamento extends Crud { protected $table = 'departamento'; private $id; private $nome; private $cnpj; private $lider; private $gerente; private $idEnderecoFK; function getId() { return $this -> id; } ...
#ifndef LFS_DO_NOT_USE_LARGE_FILE #ifndef _WIN32 #ifndef _AIX #define _FILE_OFFSET_BITS 64 /* Linux, Solaris and HP-UX */ #else #define _LARGE_FILES 1 /* AIX */ #endif #endif #endif #ifndef LFS_DO_NOT_USE_LARGE_FILE #define _LARGEFILE64_SOURCE #endif #include <errno.h> #include <stdio.h> #include <string.h> #includ...
package org.cloud.dao; import java.util.List; import org.cloud.entity.Sms; import org.hibernate.LockMode; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.orm.hibernate3.support.HibernateDaoSupport; /** * A data access object ...
package org.elasticsearch.indices; import org.apache.lucene.util.automaton.Automata; import org.apache.lucene.util.automaton.Automaton; import org.apache.lucene.util.automaton.CharacterRunAutomaton; import org.apache.lucene.util.automaton.MinimizationOperations; import org.apache.lucene.util.automaton.Operations; im...
0.4.2 ===== * Remove a routing optimization that breaks the WSME pecan plugin. 0.4.1 ===== * Moved the project to `StackForge infrastructure <http://ci.openstack.org/stackforge.html>`_, including Gerrit code review, Jenkins continuous integration, and GitHub mirroring. * Added a pecan plugin for the popular `uwsgi...
FOUNDATION_EXPORT double SimpleNetworkVersionNumber; //! Project version string for SimpleNetwork. FOUNDATION_EXPORT const unsigned char SimpleNetworkVersionString[];
using System.Reflection; using Untech.SharePoint.Common.Data; using Untech.SharePoint.Common.MetaModels; namespace Untech.SharePoint.Common.Mappings.Annotation { internal sealed class AnnotatedMappingSource<TContext> : MappingSource<TContext> where TContext : ISpContext { private readonly AnnotatedContextMappin...
![icon](/images/ide.svg) Eta REPL command reference
(function () { 'use strict'; angular .module('aMarket', [ 'ngRoute' ]) .config(config) .controller('DashboardCtrl', DashboardCtrl) .controller('AutoMarketCtrl', AutoMarketCtrl); config.inject = ['$routeProvider']; function config($routeProvider) { $routeProvider ...
import "reflect-metadata" import { closeTestingConnections, createTestingConnections, reloadTestingDatabases, } from "../../../utils/test-utils" import { Any, Between, DataSource, Equal, ILike, In, IsNull, LessThan, LessThanOrEqual, Like, MoreThan, MoreThanOrE...
// Namespace for forms Pd.Forms = {}; // Namespace for templates Pd.Forms.Templates = {}; Pd.Forms.RequiredScripts = { 'TextInput' : ['Control.js', 'TextInput.js'], 'TextArea' : ['Control.js', 'TextArea.js'], 'ButtonSubmit' : ['Control.js', 'ButtonSubmit.js'], 'CheckBox' : ['Control.js', 'CheckBox.js'], '...
require 'spec_helper' describe "SMTP Delivery Method" do before(:each) do # Reset all defaults back to an original state Mail.defaults do delivery_method :smtp, { :address => "localhost", :port => 25, :domain ...
/** sprite: simulation-images-sprite; sprite-image: url('../../images/sprites/simulation-images-sprite.png'); sprite-layout: vertical */ /* * ******************************************************************************************************************** * Before editing this file, see /jbpm-designer-utilities...
package jat.test.SolSyspropagator; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; im...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>JField (Java Class Library API)</title> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript...
SYNONYM #### According to The Catalogue of Life, 3rd January 2011 #### Published in null #### Original name null ### Remarks null
using mojo::Application; namespace dart { DartApp::DartApp(mojo::InterfaceRequest<Application> application_request, const base::FilePath& application_dir, bool strict) : application_request_(application_request.Pass()), application_dir_(application_dir) { base::FilePath p...
<?php /** * This file is part of Metayogi. * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Metayogi\Components\Optional\Trash; use Metayogi\Event\ApplicationEvent; /** * Handles redirect events * * @package Metayogi * @author Dou...
#ifndef NFC_NDEF_RECORD_PARSER_H__ #define NFC_NDEF_RECORD_PARSER_H__ #include <stdint.h> #include "sdk_errors.h" #include "nfc_ndef_record.h" #ifdef __cplusplus extern "C" { #endif /**@file * * @defgroup nfc_ndef_record_parser Parser for NDEF records * @{ * @ingroup nfc_ndef_parser * * @brief Parser for...
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="last-modified" content="2019-02-26 00:57:37 -0500"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- meta "search-domain" ...
class NodeType(object): Base = 'base' Model = 'model' Analysis = 'analysis' Test = 'test' Archive = 'archive' Macro = 'macro' Operation = 'operation' Seed = 'seed' Documentation = 'documentation' @classmethod def executable(cls): return [ cls.Model, ...
package influx_upstream import ( "errors" "fmt" "io" "strings" "time" "github.com/influxdata/line-protocol/v2/lineprotocol" "github.com/influxdata/telegraf" "github.com/influxdata/telegraf/metric" ) const ( maxErrorBufferSize = 1024 ) var ( ErrNoMetric = errors.New("no metric in line") ErrEOF = erro...
require 'simplecov' SimpleCov.start do add_filter 'spec' end shared_examples 'humr_handler' do |name,handler_class| it "is registered as :#{name}" do expect(Humr::Handler[name]).to be(handler_class) end describe '#name' do it "is :#{name}" do expect(subject.name).to be(name) end end end ...
package org.niso.schemas.counter; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso...
using namespace easyunit; extern "C" int PRIM_API sum7(int a, int b, int c, int d, int e, int f, int g) { return (a) + (b) + (c) + (d) + (e) + (f) + (g); } extern "C" int PRIM_API returnFirst7(int a, int b, int c, int d, int e, int f, int g) { return a; } extern "C" int PRIM_API returnFirstPointer7(i...
package it.uniroma3.grafica.states; import java.awt.Color; import java.awt.Font; import java.awt.FontFormatException; import java.awt.Graphics; import java.io.IOException; import java.util.ArrayList; import java.util.List; import it.uniroma3.diadia.ambienti.Stanza; import it.uniroma3.grafica.Bag; import i...